Home › Forums › General Chat › [Tip?] Batches
- This topic has 9 replies, 7 voices, and was last updated 16 years, 5 months ago by MasterCheeze. 
- 
		AuthorPosts
- 
		
			
				
1 June 2009 at 00:47 #2915David ParticipantObviously, if you use Linux you should be used to this already, but for PC users, the DOS commands are very powerful, efficient, and yet simple tools to speed up your workflow… You can do a whole lot of stuff with them. I’ll just show you mine as a small example. You can base some of yours off mine too! They’re very easy to understand and make yourself. Just add the extension .bat after a notepad file instead of the .txt. 🙂 David’s Startup Manager said: @echo off
 cls
 title Startup Management System…
 color 2F
 cd C:UsersDavidDesktopMainBatchesgoto menu 
 :menu
 cls
 echo *********************************
 echo *****David’s Startup Manager*****
 echo *********************************
 echo.
 echo 1. Refresh Object Dock if it’s borked.
 echo 2. Kill unnecessary processes.
 echo 3. Open up MSN Messenger.
 echo 4. Run CCleaner.
 echo 5. Run Firefox with VuTales.
 echo 6. Run Firefox with Google.
 echo 9001. End program.
 :choice
 echo.
 echo.Type in a corresponding number:
 set /P C=[1,2,3,4,5,6,9001]?
 if “%C%”==”9001” goto crazyexit
 if “%C%”==”6” goto ffg
 if “%C%”==”5” goto ffv
 if “%C%”==”4” goto clean
 if “%C%”==”3” goto msn
 if “%C%”==”2” goto kill
 if “%C%”==”1” goto objectd
 goto choice:objectd 
 cls
 call Objectdock.bat
 goto menu:kill 
 cls
 call Taskkiller.bat
 goto menu:msn 
 cls
 call MSN.bat
 goto menu:clean 
 cls
 call CCleaner.bat
 goto menu:ffv 
 cls
 cd C:Program Files (x86)Mozilla Firefox
 start firefox.exe http://www.vutales.vuii.co.uk/
 cd C:UsersDavidDesktopMainBatches
 goto menu:ffg 
 cls
 cd C:Program Files (x86)Mozilla Firefox
 start firefox.exe http://www.google.com/
 cd C:UsersDavidDesktopMainBatches
 goto menu:crazyexit 
 cls
 echo All done! Thanks for using
 echo *********************************
 echo *****David’s Startup Manager*****
 echo *********************************
 pause
 exitCCleaner said: echo *************************************************
 cd C:Program Files (x86)CCleaner
 call CCleaner.exe
 cd C:UsersDavidDesktopMainBatchesKillProcesses said: echo *************************************************
 echo Killing process(es)…
 taskkill /F /IM WebThunder.exe
 taskkill /F /IM mobsync.exe
 taskkill /F /IM wmdc.exe
 taskkill /F /IM wmplayer.exe
 taskkill /F /IM GoogleUpdate.exe
 taskkill /F /IM GoogleUpdaterService.exe
 taskkill /F /IM PWRISOVM.exeObject Dock said: echo *************************************************
 echo Killing Object Dock process…
 taskkill /F /IM ObjectDock.exe
 taskkill /F /IM Dock64.exe
 echo Refreshing Object Dock…
 cd C:Program Files (x86)StardockObjectDock
 start ObjectDock.exe
 cd C:UsersDavidDesktopMainBatchesEtc. 1 June 2009 at 05:03 #11239FunnyFroggy Participanttb;dr 
 tl;dr1 June 2009 at 14:22 #11242DarkDragoon Participantrofl 
 Davey you nerd1 June 2009 at 21:23 #11348David ParticipantNo, it’s just for better workflow paceage. Useful. 1 June 2009 at 21:43 #11352Jil Participantts;dr 1 June 2009 at 22:12 #11353David ParticipantLmao. XD 2 June 2009 at 01:21 #11360Nass Participanttl;jc Too long..Just commented. 2 June 2009 at 23:05 #11430Pirkid ParticipantYou can use Spybot for process killing. And..pretty much everything on that list. xD 2 June 2009 at 23:43 #11436David ParticipantSpybot has a GUI and therefore takes space. This is automated and much faster than opening up spybot, killing processes, etc. + this only needs to be ran once during startup. 😀 3 June 2009 at 01:15 #11441MasterCheeze ParticipantDavid’s a batch. 
- 
		AuthorPosts
- You must be logged in to reply to this topic.