rem Making modifications to .DEFAULT rem Disable Screen Saver at Logon/Welcome Screen reg ADD “HKU\.DEFAULT\Control Panel\Desktop” /v ScreenSaveActive /d “0” /f rem Set Wallpaper to blank at Logon/Welcome Screen reg ADD “HKU\.DEFAULT\Control Panel\Desktop” /v Wallpaper /d “ “ /f rem Disable Address space layout randomization reg ADD “HKLM\System\CurrentControlSet\Control\Session Manager\Memory Management” /v MoveImages /t REG_DWORD /d 0x0 /f rem Enable “Automatically Reboot” reg ADD “HKLM\SYSTEM\CurrentControlSet\Control\CrashControl” /v AutoReboot/t REG_DWORD /d 0x1 /f rem Disable “Write an event to the system log” reg ADD “HKLM\SYSTEM\CurrentControlSet\Control\CrashControl” /v LogEvent /t REG_DWORD /d 0x0 /f rem Disable “Send an alert” reg ADD “HKLM\SYSTEM\CurrentControlSet\Control\CrashControl” /v SendAlert /t REG_DWORD /d 0x0 /f rem Disable IPv6 reg Add “HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters” /v DisabledComponents /t REG_DWORD /d 0xffffffff /f rem