navjotjsingh
Wise Old Owl
Batch File to Stop and Start Services
Open My Computer
Go to Tools-Folder Options
Click on the View tab
Remove the tick mark from Hide extensions for known file types
Click on Start-Run
Type cmd
Type these commands. Whatever is in Italics should be typed. The other text is generated by the computer.
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Bharat>cd\
C:\>cd windows
C:\WINDOWS>net start > services.txt
C:\WINDOWS>exit
Go to My computer c:\Windows
Open services.txt
The file should look some what like this.
These Windows services are started:
Event Log
Network Connections
Network Location Awareness (NLA)
Plug and Play
Protected Storage
Remote Access Connection Manager
Remote Procedure Call (RPC)
Task Scheduler
Telephony
Windows Audio
Windows Management Instrumentation
The command completed successfully.
Edit this file so that it looks like this.
c:\windows\system32
@echo off
net stop "Network Connections�
net stop "Network Location Awareness (NLA)"
net stop "Protected Storage�
net stop "Remote Access Connection Manager�
net stop "Task Scheduler�
net stop "Telephony�
net stop "Windows Management Instrumentation�
pause
Save this file as servicestop.bat
Whenever you want to stop the services just run this batch file, especially before playing games. A lot resources is cleared.
To start the all again just replace stop with start.The file should look some what like this.
@echo off
cd c:\windows\system32
net start "Network Connections�
net start "Network Location Awareness (NLA)"
net start "Protected Storage�
net start "Remote Access Connection Manager�
net start "Task Scheduler�
net start "Telephony�
net start "Windows Management Instrumentation�
pause
Source: *explosive-hosting.com/forum/showthread.php?p=13679&posted=1#post13679
Open My Computer
Go to Tools-Folder Options
Click on the View tab
Remove the tick mark from Hide extensions for known file types
Click on Start-Run
Type cmd
Type these commands. Whatever is in Italics should be typed. The other text is generated by the computer.
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Bharat>cd\
C:\>cd windows
C:\WINDOWS>net start > services.txt
C:\WINDOWS>exit
Go to My computer c:\Windows
Open services.txt
The file should look some what like this.
These Windows services are started:
Event Log
Network Connections
Network Location Awareness (NLA)
Plug and Play
Protected Storage
Remote Access Connection Manager
Remote Procedure Call (RPC)
Task Scheduler
Telephony
Windows Audio
Windows Management Instrumentation
The command completed successfully.
Edit this file so that it looks like this.
c:\windows\system32
@echo off
net stop "Network Connections�
net stop "Network Location Awareness (NLA)"
net stop "Protected Storage�
net stop "Remote Access Connection Manager�
net stop "Task Scheduler�
net stop "Telephony�
net stop "Windows Management Instrumentation�
pause
Save this file as servicestop.bat
Whenever you want to stop the services just run this batch file, especially before playing games. A lot resources is cleared.
To start the all again just replace stop with start.The file should look some what like this.
@echo off
cd c:\windows\system32
net start "Network Connections�
net start "Network Location Awareness (NLA)"
net start "Protected Storage�
net start "Remote Access Connection Manager�
net start "Task Scheduler�
net start "Telephony�
net start "Windows Management Instrumentation�
pause
Source: *explosive-hosting.com/forum/showthread.php?p=13679&posted=1#post13679