Everytime I need to use wireless on my system, I have to manually disable or turn off the common NT services via Services.msc, so, I write a DOS batch file called offline.bat:
echo off
cls
net stop LanmanServer
net stop LanmanWorkstation
net stop W32Time
net stop WSearch
net stop stisvc
net stop Eventlog
net stop WebClient
This saves me lot of hassles and less error prone to many clicks doing this set of task. And, these services seem not in use for most of my development work. It has no harm of disabling them that would save up system resources. Safe and sound!
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment