|
WSH也可以做外置?
以下是CCF Rock2000的启动WSH批处理:
-----------------------------
REM - This section initializes WSH
REM - INSTALL WSH COMPONENTS
Regsvr32 %SystemRoot%\System32\jscript.dll /S
Regsvr32 %SystemRoot%\System32\scrobj.dll /S
Regsvr32 %SystemRoot%\System32\scrrun.dll /S
Regsvr32 %SystemRoot%\System32\vbscript.dll /S
Regsvr32 %SystemRoot%\System32\wshext.dll /S
Regsvr32 %SystemRoot%\System32\wshom.ocx /S
Regsvr32 %SystemRoot%\System32\mlang.dll /S
Regsvr32 %SystemRoot%\System32\urlmon.dll /S
REM - INSTALL FILE ASSOCIATIONS FOR WSH
%SystemRoot%\System32\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 WSH.inf
-----------------------------------
当然,也需要CSCRIPT.EXE和WSCRIPT.EXE两个文件。 |
|