File: wcd.bat

package info (click to toggle)
wcd 5.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,980 kB
  • ctags: 1,471
  • sloc: ansic: 12,157; makefile: 1,497; sh: 58; csh: 6
file content (30 lines) | stat: -rwxr-xr-x 651 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@echo off

set PDC_RESTORE_SCREEN=1
rem set WCDHOME=%HOMEDRIVE%%HOMEPATH%
rem set LANG=nl_NL
rem set LANGUAGE=nl
rem set WCDLOCALEDIR=c:/Program Files/wcd/share/locale
rem set WCDSCAN=c:;d:

rem Define WCDHOME when WCDHOME and HOME are both not defined,
rem because on Windows Vista and up users are not allowed to
rem create files in the root directory of the system partition.
IF NOT DEFINED WCDHOME (
  IF NOT DEFINED HOME (
    set WCDHOME=%HOMEDRIVE%%HOMEPATH%
  )
)

wcdwin64.exe %*

IF DEFINED WCDHOME (
 "%WCDHOME%\wcdgo.bat"
) ELSE (
  IF DEFINED HOME (
    "%HOME%\wcdgo.bat"
  ) ELSE (
    c:\wcdgo.bat
  )
)