现在的位置: 首页 > 综合 > 正文

批处理程序学习

2013年09月07日 ⁄ 综合 ⁄ 共 335字 ⁄ 字号 评论关闭

新建一个批处理程序

net stop winmgmt
c:
cd %systemroot%\system32\wbem
rd /S /Q repository
regsvr32 /s %systemroot%\system32\scecli.dll
regsvr32 /s %systemroot%\system32\userenv.dll
mofcomp cimwin32.mof
mofcomp cimwin32.mfl
mofcomp rsop.mof
mofcomp rsop.mfl
for /f %%s in (‘dir /b /s *.dll’) do regsvr32 /s %%s
for /f %%s in (’dir /b *.mof‘) do mofcomp %%s
for /f %%s in (‘dir /b *.mfl’) do mofcomp %%s

抱歉!评论已关闭.