Created
April 18, 2009 08:40
-
-
Save axemclion/97503 to your computer and use it in GitHub Desktop.
WCD Batch File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set PDC_RESTORE_SCREEN=1 | |
| rem set WCDHOME=%HOMEDRIVE%%HOMEPATH% | |
| rem set LANG=nl_NL | |
| rem set WCDLOCALEDIR=c:/Program Files/wcd/share/locale | |
| wcdwin32.exe -j %* | |
| IF DEFINED WCDHOME ( | |
| echo start . >> %WCDHOME%\wcdgo.bat | |
| %WCDHOME%\wcdgo.bat | |
| ) ELSE ( | |
| IF DEFINED HOME ( | |
| echo start . >> %HOME%\wcdgo.bat | |
| %HOME%\wcdgo.bat | |
| ) ELSE ( | |
| echo start . >> c:\wcdgo.bat | |
| c:\wcdgo.bat | |
| ) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment