多语言展示
当前在线:537今日阅读:168今日分享:49

windows 脚本创建快捷方式如何带参数

windows 脚本创建快捷方式如何带参数
工具/原料
1

电脑

2

软件

方法/步骤
1

windows脚本创建桌面快捷图标方式一、示例为创建记事本的快捷方式到桌面set path=%WINDIR%\notepad.exe set topath='%USERPROFILE%\桌面\记事本.url' echo [InternetShortcut] >> %topath% echo URL='%path%' >> %topath% echo IconIndex=0 >> %topath% echo IconFile=%path% >> %topath%

2

二、利用批处理创建桌面快捷方式goto :eof Rem 以下为VbScript脚本 Set WshShell = WScript.CreateObject('WScript.Shell') strDesktop = WshShell.SpecialFolders('Desktop') :'特殊文件夹“桌面” Rem 在桌面创建一个记事本快捷方式 set oShellLink = WshShell.CreateShortcut(strDesktop & '\记事本.lnk') oShellLink.TargetPath = 'notepad.exe' : '目标 oShellLink.WindowStyle = 3 :'参数1默认窗口激活,参数3最大化激活,参数7最小化

4

三、批处理桌面创建快捷方式EXE型S bat echo off & cls echo create_shortcut  start wscript -e:vbs '%~f0' Exit S  End S

5

Set WshShell = WScript.CreateObject('WScript.Shell') strDesktop = WshShell.SpecialFolders('Desktop') set oShellLink = WshShell.CreateShortcut(strDesktop & '\QQ.lnk') oShellLink.TargetPath = 'd:\QQ\QQ.exe' oShellLink.WindowStyle = 3 oShellLink.Hotkey = 'Ctrl+Alt+e' oShellLink.IconLocation = 'd:\QQ\QQ.exe, 0' oShellLink.Description = '快捷方式' oShellLink.WorkingDirectory = 'd:\QQ' oShellLink.Save

6

P型S bat echo off & cls echo create_shortcut  start wscript -e:vbs '%~f0' Exit S  End S

7

Set WshShell = WScript.CreateObject('WScript.Shell') strDesktop = WshShell.SpecialFolders('Desktop') set oShellLink = WshShell.CreateShortcut(strDesktop & '\学习天地.lnk') oShellLink.TargetPath = 'http://localhost:81' oShellLink.WindowStyle = 3 oShellLink.Hotkey = 'Ctrl+Alt+e' oShellLink.IconLocation = '%SystemRoot%\system32\url.dll, 0' oShellLink.Description = '快捷方式' oShellLink.WorkingDirectory = 'C:\Program Files\Internet Explorer' oShellLink.Save

推荐信息