Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Get rid of XP SP2 / SP 3 security center |
|
Author |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 12 May '08 10:03 Post subject: Get rid of XP SP2 / SP 3 security center |
|
|
Now with the XP SP 3 installation thesecurity center comes back with its anoing warnings.
there is a simple batch file to kill that, but not loosing security.
It will kill only the Center self it will not affect the XP-Firewall or IPsecurity-principles!
securitycenter.cmd
Code: |
@ECHO OFF
sc stop wscsvc>NUL
sc delete wscsvc>NUL
|
-----
next step kill the windows firewall if you have a better one or a hardware firewall like a router.
WARNING: Don't do this, if you don't know what this means. Maybe you will be unprotectet! Do this at your own risk
no_firewall.cmd
Code: |
@reg add "HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile" /v EnableFirewall /t REG_DWORD /d 00000000 /f>NUL
@reg add "HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile" /v DoNotAllowExceptions /t REG_DWORD /d 00000000 /f>NUL
@reg add "HKLM\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile" /v DisableNotifications /t REG_DWORD /d 00000001 /f>NUL
|
|
|
Back to top |
|
|
|
|
|
|