Retro Posted August 25, 2004 Posted August 25, 2004 I have a problem disabling the Internet Connection Wizard under my unattended Win2k Pro installationi have tried the following reg tweaks to remove it: [HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel] Connection Wizard [HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel] Connwiz Admin Lockthey have been set by a DWORD value of 1 i have tried using them at the same time and only 1 of the time, but the wizard still pops up the internet Explorer is Version 6if any off you has any suggestions please tell me so im all out of ideas now
Astalavista Posted August 27, 2004 Posted August 27, 2004 [HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel]"Connection Wizard"=dword:00000000[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel]"Connection Wizard"=dword:00000000reboot
Bilou_Gateux Posted September 1, 2004 Posted September 1, 2004 Removing Internet Connection Wizard from Windows 2000 Professional deployments :During the installation this value :"^SetupICWDesktop : REG_SZ : C:\Program Files\Internet Explorer\Connection Wizard\icwconn1.exe /desktop"is added in key :HKEY_USERS\%UserName%\Software\Microsoft\Windows\CurrentVersion\RunonceM$ KB 250380 : How to remove Internet connection Wizard Icons from the Desktop in Windows 2000Each time a new user log for the first time an "Internet Connection Wizard" desktop icon is created.To remove this annoying "Connect to the Internet.LNK" on desktop from the current profile :launch from cmdlines.txt (T12)".\icw.cmd"icw.cmdECHO OFFREG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v "^SetupICWDesktop" /t REG_SZ /d "||icwconn1.exe /restoredesktop" /fthis batch can't be launched at T12, there's is no LoggedOn %USERNAME% and %COMPUTERNAME% is not defined. Launch it from command line (not unattended) or through GuiRunOnce.ICWoff.cmd@ECHO OFF:: SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION:: ==========================================================================:: = Portions of accompanying executable files (C) Microsoft Corporation =:: = This includes: =:: = REG v2.0 Registry Console Tool For Windows 2000 =:: = Portions of accompanying executable files (C) Sysinternals =:: = http://www.sysinternals.com/ntw2k/freeware/pstools.shtml =:: = PsLoggedOn v1.31 Logon Session Displayer =:: = PsGetSid v1.41 Translates SIDs to names and vice versa =:: = EXEs should be copied onto your executable path ie %windir%\system32 =:: = =:: = =:: = Set Internet Connection Wizard to completed for the logged on user. =:: = =:: = Registry Key HKCU\Software\Microsoft\Internet Connection Wizard = :: = Completed binary value is changed from 00 to 01 = :: = DesktopChanged dword value is changed from 0 to 1 = :: = =:: ==========================================================================psloggedon -l %LOGONSERVER% | find /V "SMS" |find "\" >%TEMP%\%~n0.logon.tmpfor /F "tokens=1,2,3" %%k in (%TEMP%\%~n0.logon.tmp) do set mUser=%%mpsgetsid %mUser% | find "S-"> %TEMP%\%~n0.getsid.tmpfor /F %%k in (%TEMP%\%~n0.getsid.tmp) do set mSid=%%kset mKey="HKU\%mSid%\Software\Microsoft\Internet Connection Wizard"reg add %mKey% /v "Completed" /t REG_BINARY /d "01000000" /freg add %mKey% /v "Desktopchanged" /t REG_DWORD /d "1" /fGOTO EOF:EOFif exist %TEMP%\%~n0.*.tmp del %TEMP%\%~n0.*.tmpset mKey=set mUser=set mSid=
Astalavista Posted September 1, 2004 Posted September 1, 2004 oh man, i don't speak french please explain :blush:
Bilou_Gateux Posted September 1, 2004 Posted September 1, 2004 These batches has been checked on Windows 2000 Professional MUI (English installation + French Language Pack). You don't need to understand French bur my poor english the first one icw.cmd owerwrites the value in registry key "C:\Program Files\Internet Explorer\Connection Wizard\icwconn1.exe /desktop"by"||icwconn1.exe /restoredesktop"the original command do desktop iconthe new command remove desktop iconthe second one ICWoff.cmd is self documented :Set Internet Connection Wizard to completed for the logged on userThe first time you click on Internet Explorer icon after installation, you should normally have the Internet Connection wizard launched and have to answer to a few questions.When you run the second batch, when you click on Internet Explorer icon, IE is launched.To run the second batch you will need to :download 2 freeware tools :PsGetSid - display the SID of a computer or a userPsLoggedOn - see who's logged on locally and via resource sharingextract REG.EXE from support.cab file on your Windows 2000 source CDRegistry Console Tool For Windows 2000 - version 2.0put the 3 tools in %windir%\system32NOTE: You must have Administrative privileges or at least ability to have access to allow registry changes
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now