mirror of https://github.com/BOINC/boinc.git
Added some additional comments to disablelaunchboincatstartup()
svn path=/trunk/boinc/; revision=2801
This commit is contained in:
parent
07254ebcd8
commit
4a4f881cae
|
@ -482,9 +482,17 @@ function DisableLaunchBoincAtStartup()
|
||||||
szKSuffix = "\\Microsoft\\Windows\\CurrentVersion\\Run";
|
szKSuffix = "\\Microsoft\\Windows\\CurrentVersion\\Run";
|
||||||
|
|
||||||
// delete any Startup folder icons
|
// delete any Startup folder icons
|
||||||
|
// this is normally what controls autostart
|
||||||
nResult = DeleteFolderIcon( FOLDER_STARTUP, "BOINC" );
|
nResult = DeleteFolderIcon( FOLDER_STARTUP, "BOINC" );
|
||||||
|
|
||||||
// now, delete any startup info in the registry
|
// now, delete any startup info in the registry
|
||||||
|
// not sure what the "boincclient" value does. It is deleted
|
||||||
|
// as soon as boinc autostarts for the first time (either as
|
||||||
|
// a result of "Start Boinc Now" or the first autostart after
|
||||||
|
// a (re)boot.
|
||||||
|
// anyway, it should be removed if it exists, as doing so doesn't
|
||||||
|
// seem to hurt anything.
|
||||||
|
|
||||||
// NT registry key as defined by SetupRegistry()
|
// NT registry key as defined by SetupRegistry()
|
||||||
nResult = RegDBSetDefaultRoot (HKEY_CURRENT_USER);
|
nResult = RegDBSetDefaultRoot (HKEY_CURRENT_USER);
|
||||||
szKey = "Software" + szKSuffix;
|
szKey = "Software" + szKSuffix;
|
||||||
|
@ -814,5 +822,6 @@ function DialogShowSdSelectLanguage()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue