VBS例子讲解--1: 用 run运行文件 set shl="createobject"("W.Shell") shl.run"regedit.exe" set shl="nothing" VBS例子讲解--2: 用 FSO复制文件 Set shl = CreateObject("ing.FileSystemObject") shl.CopyFile "c:1.txt","d:" set shl ...