mirror of https://github.com/BOINC/boinc.git
WINBUILD: Properly move the BOINC Master and BOINC Project account information back into the UI installer process.
This commit is contained in:
parent
d1b5abd0b4
commit
55e0d2c711
Binary file not shown.
|
@ -64,16 +64,22 @@ UINT CARestoreExecutionState::OnExecution()
|
|||
tstring strReturnRebootRequested;
|
||||
tstring strReturnValidateInstall;
|
||||
tstring strRebootPrompt;
|
||||
tstring strBOINCMasterAccountUsername;
|
||||
tstring strBOINCProjectAccountUsername;
|
||||
|
||||
GetRegistryValue( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
||||
GetRegistryValue( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
GetRegistryValue( _T("REBOOTPROMPT"), strRebootPrompt );
|
||||
GetRegistryValue( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
GetRegistryValue( _T("RETURN_VALIDATEINSTALL"), strReturnValidateInstall );
|
||||
GetRegistryValue( _T("RETURN_BOINC_MASTER_USERNAME"), strBOINCMasterAccountUsername );
|
||||
GetRegistryValue( _T("RETURN_BOINC_PROJECT_USERNAME"), strBOINCProjectAccountUsername );
|
||||
|
||||
SetProperty( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
||||
SetProperty( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
SetProperty( _T("REBOOTPROMPT"), strRebootPrompt );
|
||||
SetProperty( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
SetProperty( _T("RETURN_VALIDATEINSTALL"), strReturnValidateInstall );
|
||||
SetProperty( _T("BOINC_MASTER_USERNAME"), strBOINCMasterAccountUsername );
|
||||
SetProperty( _T("BOINC_PROJECT_USERNAME"), strBOINCProjectAccountUsername );
|
||||
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -64,16 +64,22 @@ UINT CASaveExecutionState::OnExecution()
|
|||
tstring strReturnRebootRequested;
|
||||
tstring strReturnValidateInstall;
|
||||
tstring strRebootPrompt;
|
||||
tstring strBOINCMasterAccountUsername;
|
||||
tstring strBOINCProjectAccountUsername;
|
||||
|
||||
GetProperty( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
||||
GetProperty( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
GetProperty( _T("REBOOTPROMPT"), strRebootPrompt );
|
||||
GetProperty( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
GetProperty( _T("RETURN_VALIDATEINSTALL"), strReturnValidateInstall );
|
||||
GetProperty( _T("BOINC_MASTER_USERNAME"), strBOINCMasterAccountUsername );
|
||||
GetProperty( _T("BOINC_PROJECT_USERNAME"), strBOINCProjectAccountUsername );
|
||||
|
||||
SetRegistryValue( _T("LAUNCHPROGRAM"), strLaunchProgram );
|
||||
SetRegistryValue( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
SetRegistryValue( _T("REBOOTPROMPT"), strRebootPrompt );
|
||||
SetRegistryValue( _T("RETURN_REBOOTREQUESTED"), strReturnRebootRequested );
|
||||
SetRegistryValue( _T("RETURN_VALIDATEINSTALL"), strReturnValidateInstall );
|
||||
SetRegistryValue( _T("RETURN_BOINC_MASTER_USERNAME"), strBOINCMasterAccountUsername );
|
||||
SetRegistryValue( _T("RETURN_BOINC_PROJECT_USERNAME"), strBOINCProjectAccountUsername );
|
||||
|
||||
// Disable the ability to launch BOINC Manager if either a reboot is
|
||||
// requested or validation of the installation executables fails.
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue