gc12update.bat
来自「CCS2.2 C5000.rar」· Batch 代码 · 共 43 行
BAT
43 行
@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 + =
减小字号Ctrl + -
显示快捷键?