install.bat

来自「The program is a general EXECUTABLE ONLY」· Batch 代码 · 共 52 行

BAT
52
字号
echo off
if "%1==" goto c
if exist %1\nul goto a
echo ...............................................................................
echo               preparing to install PLT in %1                        
echo               hold CTRL and press C to quit                         
echo ...............................................................................
pause
mkdir %1
pltzip -o %1
goto o
:a
echo ...............................................................................
echo          **   directory %1 exists, files may be overwritten    **   
echo               hold CTRL and press C to quit                         
echo ...............................................................................
pause
pltzip -o %1
goto o
:c
echo ...............................................................................
echo               default location is C:\PLT                            
echo               to install the software in a different location,      
echo               type INSTALL [drive:\directory]                       
echo ...............................................................................
if exist c:\plt\nul goto b
echo               hold CTRL and press C to quit                         
echo ...............................................................................
pause                                                                    
mkdir c:\plt
pltzip -o c:\plt
goto o
:b
echo          **   directory C:\PLT exists, files may be overwritten   **
echo               hold CTRL and press C to quit
echo ...............................................................................
pause
pltzip -o c:\plt
:o
cls
echo ...............................................................................
echo                                   N O T I C E :
echo     If any problems occur during operation of this software, the CPU auto
echo     detection may not work for this hardware.  To specify the hardware and
echo     software set-up, edit the batch file "plt.bat" according to the 
echo     information in this batch file.  
echo     A table along with instructions are listed in the batch file.
echo     ...........................................................................      
echo     Please read the "Readme.txt" file.
echo ...............................................................................

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?