电脑
软件
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%
二、利用批处理创建桌面快捷方式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最小化
三、批处理桌面创建快捷方式EXE型S bat echo off & cls echo create_shortcut start wscript -e:vbs '%~f0' Exit S End S
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
P型S bat echo off & cls echo create_shortcut start wscript -e:vbs '%~f0' Exit S End S
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