📄 gc12update.bat
字号:
@echo off
if exist .\gconf.exe if exist .\ccs12update\gconf.exe goto docopy
echo.
echo This batch file must be run from the ...\plugins\bios directory.
echo.
goto end
:docopy
echo.
echo This batch file updates a CCS 1.2 installation's
echo DSP/BIOS Configuration Tool (Gconf) for compatibility with
echo CCS 2.0 installed on the same host operating system.
echo.
echo Note: You may reverse the actions of this batch file
echo by running the "gc12restore.bat" file.
echo.
echo Press Ctrl-C to cancel..
pause
xcopy .\ccs12update\*.* .
if "%OS%"=="Windows_NT" goto WinNT
%windir%\system\regsvr32.exe /s .\cdbconf.dll
%windir%\system\regsvr32.exe /s .\hiervw.dll
%windir%\system\regsvr32.exe /s .\objvw.dll
%windir%\system\regsvr32.exe /s .\propv.dll
%windir%\system\regsvr32.exe /s .\uipkg.dll
./gconf.exe -reg
goto end
:WinNT
%windir%\system32\regsvr32.exe /s .\cdbconf.dll
%windir%\system32\regsvr32.exe /s .\hiervw.dll
%windir%\system32\regsvr32.exe /s .\objvw.dll
%windir%\system32\regsvr32.exe /s .\propv.dll
%windir%\system32\regsvr32.exe /s .\uipkg.dll
.\gconf.exe -reg
:end
pause
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -