copyfile.bat
来自「自动复制文件 可选择你自己的源路径和目标路径」· Batch 代码 · 共 38 行
BAT
38 行
@echo off
cls
@echo ***************************************************************
@echo This program will register the activeX for helmet system!
@echo write with Golden 2005.10.12
@echo ***************************************************************
if '%os%'=='Windows_NT' goto WINNT
goto WIN9X
:WINNT
set SystemDir=%windir%\system32
goto REG
:WIN9X
set SystemDir=%windir%\system
goto REG
:REG
copy /y asycfilt.dll %SystemDir%
copy /y COMCAT.DLL %SystemDir%
copy /y COMDLG32.OCX %SystemDir%
copy /y Command.ocx %SystemDir%
copy /y MSVBVM60.DLL %SystemDir%
copy /y OLEAUT32.DLL %SystemDir%
copy /y OLEPRO32.DLL %SystemDir%
copy /y STDOLE2.TLB %SystemDir%
copy /y VB6STKIT.DLL %SystemDir%
%SystemDir%\regsvr32.exe %SystemDir%\COMCAT.DLL
%SystemDir%\regsvr32.exe %SystemDir%\COMDLG32.OCX
%SystemDir%\regsvr32.exe %SystemDir%\Command.ocx
%SystemDir%\regsvr32.exe %SystemDir%\MSVBVM60.DLL
%SystemDir%\regsvr32.exe %SystemDir%\OLEAUT32.DLL
%SystemDir%\regsvr32.exe %SystemDir%\OLEPRO32.DLL
exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?