Wscript.Shell對象詳細介紹!!(3)

來源:互聯網
上載者:User
;     StrMyDesktop = WshShell.SpecialFolders("Desktop")

                ' List all special folders
                  For Each strFolder In WshShell.SpecialFolders
                    MsgBox strFolder
                  Next

                請參閱
                WshShell.SpecialFolders 屬性

WshShell.CreateShortcut
CreateShortcut 方法建立 WshShortcut 對象並將其返回。如果捷徑標題以 .url 結尾,就會建立 WshURLShortcut 對象。

文法
WshShell.CreateShortcut(strPathname) = objShortcut

樣本
' This code fragment creates a shortcut
' to the currently executing script
    Set WshShell = Wscript.CreateObject("Wscript.Shell")
    Set oShellLink = WshShell.CreateShortcut("Current Script.lnk")
    oShellLink.TargetPath = Wscript.ScriptFullName
    oShellLink.Save
    Set oUrlLink = WshShell.CreateShortcut("Microsoft Web Site.URL")
    oUrlLink.TargetPath = "http://www.microsoft.com"
    oUrlLink.Save

請參閱
WshShortcut 對象、WshUrlShortcut 對象

        WshShortcut 對象
        該對象未直接給出。要獲得 WshShortcut 對象,請使用 WshShell.CreateShortcut 方法。

        ProgID N/A
        檔案名稱 WSHom.Ocx
        CLSID F935DC28-1CF0-11d0-ADB9-00C04FD58A0B
        IID F935DC27-1CF0-11d0-ADB9-00C04FD58A0B

        下表說明和 WshShortcut 對象有關的屬性。

        屬性 說明
        Arguments 捷徑對象的參數。
        Description 捷徑對象的說明。
        Hotkey 捷徑對象的熱鍵。
        IconLocation 捷徑對象的表徵圖位置。
        TargetPath 捷徑對象的目標路徑。
        WindowStyle 捷徑對象的視窗樣式。
        WorkingDirectory 捷徑對象的工作目錄。

        下表說明與 WshShortcut 對象有關的方法。

        方法 說明
        Save 將捷徑儲存到指定的檔案系統中。

                WshShortcut.Arguments
                Arguments 屬性提供捷徑對象的參數。

                文法
                WshShortcut.Arguments = strArguments

                WshShortcut.Description
                Description 屬性提供捷徑對象的說明。

                文法
                WshShortcut.Description = strDescription

                WshShortcut.Hotkey
                HotKey 屬性提供捷徑對象的熱鍵。熱鍵是啟動或切換程式的鍵盤快速鍵。

                文法
                WshShortcut.HotKey = strHotKey

                注釋
                strHotKey 的BNF文法如下:

                Hotkey   ::=   modifier* keyname
                modifier ::=   "ALT+" | "CTRL+" | "SHIFT+" | "EXT+"
                keyname  ::=   "A" .. "Z" |
                               "0".. "9" |

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.