VBS – 嗨软 https://ihacksoft.com/archive 分享最好用的常用软件 Tue, 22 Nov 2022 02:41:09 +0000 zh-CN hourly 1 https://wordpress.org/?v=4.9.26 VBS创建快捷方式 https://ihacksoft.com/archive/1213.html https://ihacksoft.com/archive/1213.html#respond Tue, 20 Jul 2010 08:26:54 +0000 https://ihacksoft.com/?p=1942
Dim WshShell,Shortcut
Dim path,fso
path="D:\Windows7Master\CleanMaster.exe"
Set fso=CreateObject("Scripting.FileSystemObject") ]]>
今天早上从一个打包的绿色软件中提取出来的一段代码——用VBS创建快捷方式:

Dim WshShell,Shortcut
Dim path,fso
path="D:\Windows7Master\CleanMaster.exe"
Set fso=CreateObject("Scripting.FileSystemObject")
Set WshShell=WScript.CreateObject("WScript.Shell")
Set Shortcut=WshShell.CreateShortCut("C:\Users\hqw2010\Desktop\系统清理大师.lnk")
Shortcut.TargetPath=path
Shortcut.WorkingDirectory="D:\Windows7Master\"
Shortcut.Save

]]>
https://ihacksoft.com/archive/1213.html/feed 0