RegisterDllAndOcx.bat -批量注册当前文件夹中的dll和ocx

    批量注册当前文件夹中的dll和ocx

    新建文件:RegisterDllAndOcx.bat

  

@echo off
echo hello,girl~~
for %%i in (*.dll *.ocx) do (
echo %% register is starting...
C:\Windows\System32\regsvr32.exe %%i /s
echo %%i register is finished...
)
pause

    备注:可根据显示需要,酌情修改~

posted on 2016-11-15 12:36  我来乔23  阅读(1354)  评论(0编辑  收藏  举报

导航