Windows version:
Other Platforms:
@ECHO OFF
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
TITLE Disable Auto-Start Initial Configuration Tasks for Windows Server 2008
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO Disabling Auto-Start Initial Configuration Tasks for Windows Server 2008...
ECHO.
:: Change "DoNotOpenInitialConfigurationTasksAtLogon" value to "1" to disable the Initial Configuration Tasks Auto-Start:
REG ADD "HKLM\SOFTWARE\Microsoft\ServerManager\Oobe" /v DoNotOpenInitialConfigurationTasksAtLogon /t REG_DWORD /d 1 /f
:: Uncomment "PAUSE" to view script results:
:: ECHO.
:: PAUSE
@ECHO OFF
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
TITLE Disable Auto-Start Manage Your Server for Windows Server 2003
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO Disabling Auto-Start Manage Your Server for Windows Server 2003...
ECHO.
:: Disable "Manage Your Server" Auto-Start for the current user:
REG DELETE "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Setup\Welcome" /v srvwiz /f
REG ADD "HKCU\Software\Microsoft\Windows NT\CurrentVersion\srvWiz" /v CYSMustRun /t REG_SZ /d 0 /f
:: Create policy to set "DisableShowAtLogon" value to "0" to disable "Manage Your Server" Auto-Start for subsequent logins:
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\MYS" /v DisableShowAtLogon /t REG_DWORD /d 0 /f
:: Uncomment "PAUSE" to view script results:
:: ECHO.
:: PAUSE
@ECHO OFF
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
TITLE Disable Network Location Wizard for Windows Vista-7-2008
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO Disable Network Location Wizard for Windows Vista-7-2008...
ECHO.
:: Create blank key "NewNetworkWindowOff" to disable Network Location Wizard for all users:
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff"
:: Uncomment "PAUSE" to view script results:
:: ECHO.
:: PAUSE