windows脚本创建快捷方式如何带参数
工具/原料
电脑
软件
方法/步骤
1、windows脚本创建桌面快捷图标方式示例为创建记事本的快捷方式到桌面setpath=%WINDIR%\notepad.exesettopath="%USERPROFILE%\桌面\记事本.url"echo[InternetShortcut]>>%topath%echoURL="%path%">>%topath%echoIconIndex=0>>%topath%echoIconFile=%path%>>%topath%
2、利用批处理创建桌面快捷方式goto:eofRem以下为VbScript脚本SetWshShell=WScript.CreateObject("WScript.Shell")strDesktop=WshShell.SpecialFolders("Desktop"):'特殊文件夹“桌面”Rem在桌面创建一个记事本快捷方式setoShellLink=WshShell.CreateShortcut(strDesktop&"\记事本.lnk")oShellLink.TargetPath="notepad.exe":'目标oShellLink.WindowStyle=3:'参数1默认窗口激活,参数3最大化激活,参数7最小化
3、oShellLink.Hotke鲻戟缒男y="Ctrl+Alt+e":'快捷键oShellLink.Ic:'掬研疔缎图标oShellLink.Description="记事本快捷方式":'备注oShellLink.WorkingDirectory=strDesktop:'起始位置oShellLink.Save:'创建保存快捷方式Rem在桌面创建一个腾讯QQ2007setoShellLink=WshShell.CreateShortcut(strDesktop&"\腾讯QQ2007.lnk")oShellLink.TargetPath="D:\Tencent\QQ\QQ.exe":'目标oShellLink.WindowStyle=3:'参数1默认窗口激活,参数3最大化激活,参数7最小化oShellLink.Hotkey="Ctrl+Alt+q":'快捷键oShellLink.Ic:'图标oShellLink.Description="腾讯QQ2007":'备注oShellLink.WorkingDirectory=strDesktop:'起始位置oShellLink.Save:'创建保存快捷方式Rem在桌面创建一个“微软中国”的Url快捷方式setoUrlLink=WshShell.CreateShortcut(strDesktop&"\百度搜索.url")oUrlLink.TargetPath="http://www.baidu.com/"
4、批处理桌面创建快捷方式EXE型Sbatechooff&clsechocreate_shortcutstartwscript-e:vbs"%~f0"ExitSEndS
5、SetWshShell=WScript.CreateObject("WScript.Shell")strDesktop=WshShell.SpecialFolders("Desktop")setoShellLink=WshShell.CreateShortcut(strDesktop&"\QQ.lnk")oShellLink.TargetPath="d:\QQ\QQ.exe"oShellLink.WindowStyle=3oShellLink.Hotkey="Ctrl+Alt+e"oShellLink.IconLocation="d:\QQ\QQ.exe,0"oShellLink.Description="快捷方式"oShellLink.WorkingDirectory="d:\QQ"oShellLink.Save
6、P型Sbatechooff&clsechocreate_shortcutstartwscript-e:vbs"%~f0"ExitSEndS
7、SetWshShell=WScript.CreateObject(争犸禀淫"WScript.Shell")strDesktop=WshShell.Spe艘早祓胂cialFolders("Desktop")setoShellLink=WshShell.CreateShortcut(strDesktop&"\学习天地.lnk")oShellLink.TargetPath="http://localhost:81"oShellLink.WindowStyle=3oShellLink.Hotkey="Ctrl+Alt+e"oShellLink.IconLocation="%SystemRoot%\system32\url.dll,0"oShellLink.Description="快捷方式"oShellLink.WorkingDirectory="C:\ProgramFiles\InternetExplorer"oShellLink.Save