Author Topic: Batch file tricks.  (Read 3199 times)

Post any batch file tricks you might know about and how to do them.
« Last Edit: July 25, 2010, 08:27:40 PM by ? »


Your avatar is a blue worm raping a piece of bacon doing the worm

What?
Batch files.
Things you can do with them.
Post them.

what do you mean tricks?


Open dedicated servers.

@echo off
cd /d "C:\Program Files\World of Warcraft"
start /high WoW.exe

Sets world of warcraft at high priority

@echo off
cd /d "C:\Program Files\World of Warcraft"
start /high WoW.exe

Sets world of warcraft at high priority

Because WoW always comes before real life? Priorities are fun aren't they?


I got a batch file that rapidly shifts colors somewhere, lemme check.

I got a batch file that rapidly shifts colors somewhere, lemme check.

Code: [Select]
@echo off
:a
color a3
color b3
color c2
color e5
color d0
color a2
color f4
color a3
color c8
color b9
color d3
color b4
goto :a



Post more please.