; 下表說明了和 WshUrlShortcut 對象有關的方法。
方法 說明
Save 將捷徑儲存到指定的檔案系統中。
WshUrlShortcut.FullName
FullName 屬性提供捷徑對象的完整路徑。
文法
WshUrlShortcut.FullName = strFullName
WshUrlShortcut.TargetPath
TargetPath 屬性提供捷徑對象的目標路徑。
文法
WshUrlShortcut.TargetPath = strTargetPath
WshUrlShortcut.Save
Save 方法儲存一個捷徑,該捷徑指向 FullName 屬性指定的位置。
文法
WshUrlShortcut.Save
WshShell.ExpandEnvironmentStrings
ExpandEnvironmentStrings 方法在 strString 中擴充 PROCESS 環境變數並返回結果字串。變數被 '%' 字元括起。
環境變數不區分大小寫。
文法
WshShell.ExpandEnvironmentStrings(strString) = strExpandedString
樣本
MsgBox "Prompt is " & WshShell.ExpandEnviromentStrings("%PROMPT%")
WshShell.Popup
Popup 方法顯示一個彈出式訊息框視窗,訊息框中包含的訊息由 strText 指定。該訊息框的視窗標題由 strTitle 指定。若 strTitle 省略,則視窗標題為 Windows Scripting Host。
文法
WshShell.Popup(strText, [natSecondsToWait], [strTitle], [natType]) = intButton
注釋
若提供 natSecondsToWait 且其值大於零,則訊息框在 natSecondsToWait 秒後關閉。
natType 的含義與其在 Win32? MessageBox 函數中相同。下表顯示 natType 中的值及含義。下表中的值可以組合。
按鈕類型
值 說明
0 顯示“確定”按鈕
1 顯示“確定”和“取消”按鈕
2 顯示“終止”、“重試”和“忽略”按鈕
3 顯示“是”、“否”和“取消”按鈕
4 顯示“是”和“否”按鈕
5 顯示“重試”和“取消”按鈕
表徵圖類型
值 說明
16 顯示停止標記表徵圖
32 顯示問號表徵圖
48 顯示驚嘆號表徵圖
64 顯示資訊標記表徵圖
以上兩個表並不涵蓋 natType 的所有值。完整的列表請參閱 Win32 文檔。
傳回值 intButton 指示使用者所單擊的按扭編號。若使用者在 natSecondsToWait 秒之前不單擊按扭,則 intButton 設定為 -1 。
值 說明
1 “確定”按扭
2 “取消”按扭
3 “終止”按扭
4 “重試”按扭
5 “忽略”按扭
6 “是”按扭
7 “否”按扭
樣本
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.Popup "Where do you want to go today?"
請參閱
Wscript.Echo 方法
Wscript.Echo
Echo 方法在視窗(Wscript.exe 中)或“命令提示字元”視窗(Cscript.exe 中)顯示參數。
參數用空格分隔。在 Cscript.exe 中,該方法在顯示最後一個參數之後輸出一對斷行符號/換行(CR LF)。
文法
Wscript.Echo [anyArg...]
樣本
Wscript.Echo
Wscript.Echo 1, 2, 3
Wscript.Echo "Windows Scripting Host is cool."
WshShell.RegDelete
RegDelete 從註冊表中刪除名為 strName 的鍵或值。
文法
WshShell.RegDelete strName
參數
strName
如果 strName 以反斜線 (\) 結束,則該方法刪除鍵而不是值。
strName 參數必須以下列之一的根鍵名開始:
短根鍵名 長根鍵名
HKCU HKEY_CURRENT_USER
HKLM HKEY_LOCAL_MACHINE
HKCR HKEY_CLASSES_ROOT
HKEY_USERS
HKEY_CURRENT_CONFIG
樣本
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.RegDelete "HKCU\ScriptEngine\Value" ' Delete value "Value"
WshShell.RegDelete "HKCU\ScriptEngine\Key\" ' Delete key "Key"
請參閱
WshShell.RegRead 方法、WshShell.RegWrite 方法
WshShell.RegRead
RegRead 方法返回名為 strName 的註冊表鍵或值。
文法
WshShell.RegRead(strName) = strValue
參數
strName
如果 strName 以反斜線 (\) 結束,則該方法返回鍵,而不是值。
strName 參數必須以下列根鍵名開始。
Short Long
HKCU HKEY_CURRENT_USER
HKLM HKEY_LOCAL_MACHINE
HKCR HKEY_CLASSES_ROOT
HKEY_USERS
HKEY_CURRENT_CONFIG
注釋
RegRead 方法僅支援 REG_SZ、REG_EXPAND_SZ、REG_DWORD、REG_BINARY 和 REG_MULTI_SZ 資料類型。若註冊表有其他資料類型,RegRead 返回 DISP_E_TYPEMISMATCH。
樣本
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.RegRead("HKCU\ScriptEngine\Val") ' Read from value "Val"
WshShell.RegRead("HKCU\ScriptEngine\Key\") ' Read from key "Key"
請參閱
WshShell.RegDelete 方法、WshShell.RegWrite 方法
WshShell.RegWrite
RegWrite 方法設定名為 strName 的註冊表鍵或值。