CMD
Posted: Sat Sep 02, 2006 7:43 pm
Hey,
Anyone know how to not make this .bat file exit out and not print the files.
Its runs then after the last reg add it just stops and exits.
Also anyone know how to hide the first 3 reg adds so users don't see them?
Anyone know how to not make this .bat file exit out and not print the files.
Code: Select all
COLOR 17
reg add "HKLM\SOFTWARE\Microsoft\Security Center" /v AntiVirusDisableNotify /t REG_DWORD
/d 0 /f
CLS
reg add "HKLM\SOFTWARE\Microsoft\Security Center" /v FirewallDisableNotify /t REG_DWORD /d
0 /f
CLS
reg add "HKLM\SOFTWARE\Microsoft\Security Center" /v UpdatesDisableNotify /t REG_DWORD /d
0 /f
CLS
ECHO
ECHO
ECHO Welcome %username%,
SLEEP 15Also anyone know how to hide the first 3 reg adds so users don't see them?