本文使用「署名 4.0 国际 (CC BY 4.0)」许可协议,欢迎转载、或重新修改使用,但需要注明来源。 [署名 4.0 国际 (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/deed.zh) 本文作者: 苏洋 创建时间: 2009年04月16日 统计字数: 219字 阅读时间: 1分钟阅读 本文链接: https://soulteary.com/2009/04/16/vbs-need-files.html ----- # [VBS]依赖文件 VBS依赖的文件 `scrrun.dll, WSHom.Ocx,shell32.dll` 如果一些涉及 Wscript.shell ,Scripting.FileSystemObject等方面的脚本无法正常运行,很有可能是系统关闭了此三个文件,可以通过如下命令逐一进行注册。 ```dos regsvr32 regsvr32 scrrun.dll /s regsvr32 WSHom.Ocx /s regsvr32 shell32.dll /s ```