Jump to content

heloo i wont remove the firewall and automatic upd


Recommended Posts


This should get you started

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]
"UpdatesDisableNotify"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update]
"AUOptions"=dword:00000001

For the auto-update, and

sc config sharedaccess start= disabled

at a command prompt for turning off the firewall (Warning, this totally kills it, and perminently, not just the regular part, but the service also, also I think this disables Internet Connection Shareing). Most likely the turn off the security center command is simmilar to the disable updates notification, but I havn't got the correct one (most likely "FirewallDisableNotify"=dword:000000001)

Link to comment
Share on other sites

In .cmd file format

@echo off

::Override Security Center Antivirus Monitoring (when yours is unsupported)
reg add "HKLM\Software\Microsoft\Security Center" /v AntiVirusOverride /t REG_DWORD /d 1 /f

::Override Security Center Firewall Handling (when yours is unsupported)
reg add "HKLM\Software\Microsoft\Security Center" /v FirewallOverride /t REG_DWORD /d 1 /f

::Stop Security Center nagging about Automatic Updates being turned off
reg add "HKLM\Software\Microsoft\Security Center" /v UpdatesDisableNotify /t REG_DWORD /d 1 /f

goto :eof

Link to comment
Share on other sites

for the three alert settings only

the key is

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]
values are
AntiVirusDisableNotify=1 for uncheck , 0 for check

FirewallDisableNotify=1 for uncheck , 0 for check

UpdatesDisableNotify=1 for uncheck , 0 for check

Link to comment
Share on other sites

Regarding oneless' reply,

I cannot see any benefit in simply disabling the notifications. The monitoring is of no use if you disable the notifications which result from the monitoring.

Both our responses should achieve your intended goal however, since if you override the monitoring process then there will be no notifications as a result.

Here is both, Yzöwl and oneless again in .reg format

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]"AntiVirusDisableNotify"=dword:00000001

"AntiVirusOverride"=dword:00000001

"FirewallDisableNotify"=dword:00000001

"FirewallOverride"=dword:00000001

"UpdatesDisableNotify"=dword:00000001

Use everything in green and delete either the blue stuff or the purple stuff according to your taste.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...