logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

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.
Post new topic   Forum Index -> How-to's & Documentation & Tips View previous topic :: View next topic
Reply to topic   Topic: Get rid of XP SP2 / SP 3 security center
Author
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Mon 12 May '08 10:03    Post subject: Get rid of XP SP2 / SP 3 security center Reply with quote

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


Reply to topic   Topic: Get rid of XP SP2 / SP 3 security center View previous topic :: View next topic
Post new topic   Forum Index -> How-to's & Documentation & Tips