Jump to content

Sevices disabling


Recommended Posts

Hi guys.I have RegTweak.reg file with my own configuration, but after the installation nothing happened only with service's registry settings.Where could be the problem.I've read everything in the forum, but nothing helpful.Thank's.

Link to comment
Share on other sites


It's very probable that you're applying these regtweaks AFTER you've logged in, isn't it? B)

You have to apply them to the Default User, so ALL users will inherit those tweaks... To accomplish that, you have to apply your regtweaks using cmdlines.txt.

Just create a new file with notepad, add the following text and save it as cmdlines.txt:

[COMMANDS]
REGEDIT /S RegTweaks.reg

You can find more info in the guide. (there you'll find where to put cmdlines.txt)

Link to comment
Share on other sites

Here is what I have in Regtweaks.reg

I'am also looking to 'complete' this list, so please reply if you have others!

Windows Registry Editor Version 5.00
;=======================================================================
;  Services
;=======================================================================


;Alerter
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Alerter]
"Start"=dword:00000004

;Automatic Updates
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]
"Start"=dword:00000004

;Background Intelligent Transfer Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BITS]
;"Start"=dword:00000004

;ClipBook
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ClipSrv]
"Start"=dword:00000004

;Help and Support Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]
;"Start"=dword:00000004

;ICF/ICS
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess]
;"Start"=dword:00000004

;IMAPI CD-Burning Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ImapiService]
;"Start"=dword:00000004

;Indexing Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CiSvc]
"Start"=dword:00000004

;IPSEC
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent]
;"Start"=dword:00000003

;Media Center Receiver Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ehRecvr]
"Start"=dword:00000004

;Media Center Scheduler Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ehSched]
"Start"=dword:00000004

;Messenger Service (to stop spam. Does not affect MSN or Windows Messenger)
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Messenger]
"Start"=dword:00000004

;NVIDIA Helper Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NVSvc]
;"Start"=dword:00000004

;Performance Logs & Alerts
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysmonLog]
;"Start"=dword:00000004

;Remote Desktop Help Session Manager
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RDSessMgr]
;"Start"=dword:00000004

;Remote Registry Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]
;"Start"=dword:00000004

;Routing and Remote Access
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess]
;"Start"=dword:00000004

;Security Center
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc]
"Start"=dword:00000004

;SSDP Discovery Service (Universal Plug'n'Play)
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SSDPSRV]
;"Start"=dword:00000004

;System Restore
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\srservice]
"Start"=dword:00000004

;TCP/IP Helper
;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LmHosts]
;"Start"=dword:00000004

;Universal Plug'n'Play Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\upnphost]
;"Start"=dword:00000004

;UPS
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UPS]
;"Start"=dword:00000004

;Windows Time Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]
;"Start"=dword:00000004

;Wireless Zero Configuration
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WZCSVC]
;"Start"=dword:00000004

Link to comment
Share on other sites

try ServEdit

SERVEDIT [servicename][/start][/stop][/auto]

[/manual][/disabled]

[servicename]-----Specifies name of service to change

/start-------Start the service

/stop -------Stop the service

/auto -------Change service startup to Automatic

/manual ------Change service startup to Manual

/disabled --------Change service startup to disabled

Example:SERVEDIT RpcLocator /start

Result: RpcLocator service will start

NOTES: BOTH SERVICE NAME AND ACTION ARE REQUIRED

NO INFORMATION IS RETURNED ABOUT SUCCESS OR FAILURE

THIS UILITY IS FOR WINDOWS NT/2K/XP or higher

http://bartdart.com/downloads/servedit.zip

Link to comment
Share on other sites

@ DigeratiPrime

As soulin stated, you can use the built in sc command.

Here's an example using the XP Pro Safe Settings from Black Vipers site of a batch to do it:

services.cmd

@echo off
sc config Browser start= disabled
sc config TrkWks start= demand
sc config ERSvc start= disabled
sc config helpsvc start= demand
sc config cisvc start= disabled
sc config dmserver start= demand
sc config Netlogon start= disabled
sc config mnmsrvc start= disabled
sc config Nla start= disabled
sc config xmlprov start= disabled
sc config SysmonLog start= disabled
sc config WmdmPmSN start= disabled
sc config RSVP start= disabled
sc config RDSessMgr start= disabled
sc config RemoteRegistry start= disabled
sc config seclogon start= disabled
sc config wscsvc start= disabled
sc config lanmanserver start= disabled
sc config SCardSvr start= disabled
sc config SSDPSRV start= disabled
sc config srservice start= disabled
sc config LmHosts start= disabled
sc config UPS start= disabled
sc config upnphost start= disabled
sc config WebClient start= disabled
sc config W32Time start= disabled
sc config WZCSVC start= disabled
sc config WmiApSrv start= disabled
exit

As you can see they all have the same names as at the end of each of your Reg Keys.

Also in your example, with the semi-colons removed you will be disabling some services, which are either already disabled by default in SP2 and others which are necessary too!

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...