From 4a4f881cae20b8735d63c5d99bacacfa368b0324 Mon Sep 17 00:00:00 2001 From: Dan Werthimer Date: Tue, 16 Dec 2003 01:50:09 +0000 Subject: [PATCH] Added some additional comments to disablelaunchboincatstartup() svn path=/trunk/boinc/; revision=2801 --- win_build/installer/Script Files/setup.rul | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/win_build/installer/Script Files/setup.rul b/win_build/installer/Script Files/setup.rul index 4a9f454abb..12ee7d7137 100755 --- a/win_build/installer/Script Files/setup.rul +++ b/win_build/installer/Script Files/setup.rul @@ -482,9 +482,17 @@ function DisableLaunchBoincAtStartup() szKSuffix = "\\Microsoft\\Windows\\CurrentVersion\\Run"; // delete any Startup folder icons + // this is normally what controls autostart nResult = DeleteFolderIcon( FOLDER_STARTUP, "BOINC" ); // 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() nResult = RegDBSetDefaultRoot (HKEY_CURRENT_USER); szKey = "Software" + szKSuffix; @@ -814,5 +822,6 @@ function DialogShowSdSelectLanguage() +