home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 10
/
Chip_Hitware_Vol_10.iso
/
chiphit
/
multmedi
/
95licht
/
install.dll
/
1001
/
1
/
WIN32S.BAT
< prev
Wrap
DOS Batch File
|
1997-02-22
|
1KB
|
53 lines
@echo off
echo This batch file copies 1 file (LGD9516.EXE) to your Windows directory
echo and renames it to LGD9516.SCR.
echo This is required because Windows 3.1 cannot use 32-bit screen savers.
echo.
echo Hit any key to continue or Ctrl+Break to abort
pause
if not exist lgd9516.exe goto ERROR
if (%1) == () goto NOPARAM
if exist %1\win.com copy lgd9516.exe %1\lgd9516.scr
if exist %1win.com copy lgd9516.exe %1lgd9516.scr
goto STEP2
:NOPARAM
if not exist ..\win.com goto USAGE
copy lgd9516.exe ..\lgd9516.scr
echo Select the "LGD95 Win32s Loader" in the Control Panel (Desktop)
echo to use 95 Lights Go Down with Win 3.1 / Win32s
goto STEP2
:USAGE
echo.
echo Please specify your Windows directory
echo.
echo Examples:
echo WIN32s C:\WINDOWS
echo or
echo WIN32s C:\WINDOWS\
echo
goto ENDE
:ERROR
echo.
echo Run this batch file only from the directory where it was installed.
:ERROR2
echo.
echo You can run this batch file only once (because it renames files).
echo.
goto ENDE
:STEP2
goto ENDE
:ENDE
echo Batch file terminated
pause