Elliot B. Posted February 26, 2006 Share Posted February 26, 2006 No idea which forum to put this post in so I'll post it in General Dicussion. Is there a program/.bat etc. that will close all unnecasarry services/processes etc. so I can free up RAM and CPU before playing games such as F.E.A.R.? I remember a .bat being posted a year or two back here on Neowin. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/ Share on other sites More sharing options...
fr33k Posted February 26, 2006 Share Posted February 26, 2006 try taskkill /? in the cmd prompt I havn't messed with that so I can't tell you anymore Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587245000 Share on other sites More sharing options...
Dodzey Posted February 26, 2006 Share Posted February 26, 2006 Google Is Your Friend :D :yes: http://www.tech-recipes.com/batch_file_pro...ng_tips235.html I haven't tested this, so no promises. ;) And for running processes, not sure, taskkill might do it... Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587245001 Share on other sites More sharing options...
fr33k Posted February 26, 2006 Share Posted February 26, 2006 ok I did a little more looking and you can use net in the cmd prompt like: net stop "print spooler" services with two words need the quotation marks "" to restart the service: net start "print spooler" to see the list of running services type net start Oops sorry I didn't look at the above link before this looks like net start and stop is the way to go for services Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587245026 Share on other sites More sharing options...
Hum Posted February 26, 2006 Share Posted February 26, 2006 :huh: You can use Start/Run/Services.msc to shut down unneeded services. Careful which you stop tho. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587245600 Share on other sites More sharing options...
gigapixels Veteran Posted February 26, 2006 Veteran Share Posted February 26, 2006 Since this is for gaming purposes, services.msc would not be an easy way to do it. Use taskkill (if you don't have it, find it on Google) for running processes and the net stop command for services. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587245616 Share on other sites More sharing options...
JiveMasterT Posted February 26, 2006 Share Posted February 26, 2006 here's my pregame killer .bat file. @ECHO OFF Echo JiveMasterT Pre-Game App Killer Script Echo. TASKKILL /F /IM rklauncher.exe TASKKILL /F /IM konfabulator.exe TASKKILL /F /IM 3r-1c.exe TASKKILL /F /IM hotsync.exe TASKKILL /F /IM gnotify.exe NET STOP "VNC Server" NET STOP "print spooler" NET STOP "bluetooth service" NET STOP "messenger" NET STOP "automatic updates" NET STOP "vmware authorization service" NET STOP "vmware dhcp service" NET STOP "vmware nat service" NET STOP "AntiVir PersonalEdition Classic Service" NET STOP "AntiVir Scheduler" Echo All apps have been closed. You can now start your game. @PAUSE and after a game, I have this one... @ECHO OFF Echo JiveMasterT Post-Game App Starter Script Echo. @START "" "C:\Program Files\RK Launcher\RKLauncher.exe" @START "" "C:\Program Files\Pixoria\Konfabulator\Konfabulator.exe" @START "" "C:\Program Files\pogrelz.com\3r-1c\3r-1c.exe" @START "" "C:\Program Files\Palm\HOTSYNC.EXE" @START "" "C:\Program Files\Google\Gmail Notifier\gnotify.exe" NET START "print spooler" NET START "bluetooth service" NET START "messenger" NET START "automatic updates" NET START "vmware authorization service" NET START "vmware dhcp service" NET START "vmware nat service" NET START "AntiVir PersonalEdition Classic Service" NET START "AntiVir Scheduler" Echo All apps have been restored. @pause hope this helps. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587246888 Share on other sites More sharing options...
Caledai Posted February 27, 2006 Share Posted February 27, 2006 You can also use SC under windows xp for more control. I can enable/disable services - set them to manual as well as automatic - start, stop etc. SC looks to be the replacement for net start/stop. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587248930 Share on other sites More sharing options...
dreamz Veteran Posted February 27, 2006 Veteran Share Posted February 27, 2006 i think this fits into "tweaks" among other things. moved here as everyone said, taskkill, net start/stop, sc are all good. Link to comment https://www.neowin.net/forum/topic/436716-programbat-that-closes-servicesprocesses/#findComment-587249562 Share on other sites More sharing options...
Recommended Posts