"Back" | "Tab" | "Clear" | "Return" |
"Escape" | "Space" | "Prior" | ...
所有鍵的名稱都可以在 WINUSER.H 中找到。熱鍵不區分大小寫。
熱鍵只能啟用位於 Windows 案頭或 Windows“開始”菜單的捷徑。
Windows 資源管理員不接受 ESC、ENTER、TAB、SPACE、PRINT SCREEN 或 BACKSPACE,即使 WshShortcut.Hotkey 遵循 Win32 API 支援它們。因此,建議在捷徑中不要用這些鍵。
樣本
Set WshShell = Wscript.CreateObject("Wscript.WshShell")
strDesktop = WshShell.SpecialFolders("Desktop")
Set oMyShortcut = WshShell.CreateShortcut(strDesktop & "\a_key.lnk")
OMyShortcut.TargetPath = "%windir%\notepad.exe"
oMyShortCut.Hotkey = "ALT+CTRL+F"
oMyShortCut.Save
Wscript.Echo oMyShortCut.HotKey = "Alt+Ctrl+F"
請參閱
WshSpecialFolders 對象
WshShortcut.IconLocation
IconLocation 屬性提供捷徑對象的表徵圖位置。表徵圖位置的格式應為 "Path,index"。
文法
WshShortcut.IconLocation = strIconLocation
WshShortcut.TargetPath
TargetPath 屬性提供捷徑對象的目標路徑。
文法
WshShortcut.TargetPath = strTargetPath
WshShortcut.WindowStyle
WindowStyle 屬性提供捷徑對象的視窗樣式。
文法
WshShortcut.WindowStyle = natWindowStyle
WshShortcut.WorkingDirectory
WorkingDirectory 為一個捷徑對象提供工作目錄。
文法
WshShortcut.WorkingDirectory = strWorkingDirectory
WshShortcut.Save
Save 方法把捷徑對象儲存到由 FullName 屬性指定的位置。
文法
WshShortcut.Save
WshUrlShortcut 對象
該對象未直接給出。要擷取 WshUrlShortcut 對象,可使用 WshShell.CreateShortcut 方法。
ProgID N/A
檔案名稱 WSHom.Ocx
CLSID
IID
下表說明了和 WshUrlShortcut 對象有關的屬性。
屬性 說明
FullName URL 捷徑對象的完整路徑。
TargetPath URL 捷徑對象的目標路徑。
&nbs