‘创建一个 Wscript.Shell 对象的实例,稍后会使用这个对象启动 Windows 资源管理器
Set objShell=CreateObject(“Wscript.Shell”)
‘获取脚本的路径
strPath=Wscript.ScriptFullName
Set objFSO=CreateObject(“Scripting.FileSystemObject”)
Set objFile=objFSO.GetFile(strPath)
‘获取脚本当前所在文件夹的路径
strFolder=objFSO.GetParentFolderName(objFile)
strPath=”explorer.exe /e,” & strFolder
‘启动 Windows 资源管理器,打开脚本所在的文件夹
objShell.Run strPath
‘创建一个 Wscript.Shell 对象的实例,稍后会使用这个对象启动 Windows 资源管理器
Set objShell=CreateObject(“Wscript.Shell”)
‘获取脚本的路径
strPath=Wscript.ScriptFullName
Set objFSO=CreateObject(“Scripting.FileSystemObject”)
Set objFile=objFSO.GetFile(strPath)
‘获取脚本当前所在文件夹的路径
strFolder=objFSO.GetParentFolderName(objFile)
strPath=”explorer.exe /e,” & strFolder
‘启动 Windows 资源管理器,打开脚本所在的文件夹
objShell.Run strPath
© 版权声明
文章版权归作者所有,未经允许请勿转载。