标签: windows vbscript
可以通过输入 Win + R 然后Shell:startup打开此文件夹。
Shell:startup
我想将脚本更改目录设为此文件夹。我怎么能这样做?
答案 0 :(得分:3)
可以通过WshShell对象的SpecialFolders属性确定启动文件夹。更改当前目录是通过CurrentDirectory属性完成的。
WshShell
SpecialFolders
CurrentDirectory
Set sh = CreateObject("WScript.Shell") sh.CurrentDirectory = sh.SpecialFolders("Startup")