Windowsvbs 脚本
Windows vbs script
我正在尝试制作一个 vbs 脚本以在 windows 启动时将应用程序设置为 运行,但它似乎不起作用...
这是代码:
set WshShell = CreateObject("Wscript.Shell")
set fs = CreateObject("Scripting.FilesystemObject")
pathe = WshShell.SpecialFolders("Startup")
start()
function start()
x = fs.CopyFile("hello.bat", Path & "\", True)
end function
wscript.echo(Path)
如果您知道在启动时将文件设置为 运行 的任何其他方法,那很好
试试这个,一个衬垫就可以做到:
CreateObject("Shell.Application").NameSpace(7).CopyHere "hello.bat", 4 + 16 + 1024 : Wscript.Echo "hello.bat"
我正在尝试制作一个 vbs 脚本以在 windows 启动时将应用程序设置为 运行,但它似乎不起作用... 这是代码:
set WshShell = CreateObject("Wscript.Shell")
set fs = CreateObject("Scripting.FilesystemObject")
pathe = WshShell.SpecialFolders("Startup")
start()
function start()
x = fs.CopyFile("hello.bat", Path & "\", True)
end function
wscript.echo(Path)
如果您知道在启动时将文件设置为 运行 的任何其他方法,那很好
试试这个,一个衬垫就可以做到:
CreateObject("Shell.Application").NameSpace(7).CopyHere "hello.bat", 4 + 16 + 1024 : Wscript.Echo "hello.bat"