分享方式:


執行 AppFabric Cmdlet

此主題說明如何啟動 AppFabric Windows PowerShell 主控台工作階段、匯入 Windows PowerShell 的 AppFabric 模組,以及取得有關 AppFabric Cmdlet 的說明。

只要 AppFabric Windows PowerShell 模組 (ApplicationServer 模組) 已經載入到一般 Windows PowerShell 工作階段中,您就可以從 Windows PowerShell 工作階段中的命令列執行 AppFabric Cmdlet。當您執行 [系統管理工具] 中的 [Windows PowerShell 模組] 命令時,會自動載入 ApplicationServer 模組。若使用工具列上的圖示或 powershell.exe 命令來開啟 Windows PowerShell 模組,ApplicationServer 模組不會自動載入。在這些案例中,您必須手動將模組匯入,如下所述。當您這樣做時,模組只會針對目前的工作階段載入。

Windows PowerShell 內建透過命令列取得說明資訊的功能。您可以使用 Get-Help Cmdlet 或 Help 別名來存取此功能。由 Get-Help Cmdlet 傳回的預設內容提供 Cmdlet 功能及語法的基本說明。您可以為 Cmdlet 提供 –detailed–full 參數,以取得 Cmdlet 之參數與其他元素的詳細資訊。Help 別名會以一次一頁的方式,顯示由 Get-Help 傳回的資訊。您也可以列出 Windows PowerShell 的 AppFabric Cmdlet,或將 AppFabric Cmdlet 的彙總說明輸出,如下所述。

開啟 Windows PowerShell 的 AppFabric 模組

  1. 若要在開啟 PowerShell 主控台時自動載入 AppFabric 模組,請按一下 [開始]、指向 [系統管理工具],然後按一下 [Windows PowerShell 模組]。

    注意

    Windows PowerShell 模組命令會自動載入 ApplicationServer、DistributedCacheAdministration 與 DistributedCacheConfiguration 模組。

  2. 若要在開啟 PowerShell 主控台時自動載入 DistributedCacheAdministration 模組,請依序按一下 [開始] 、[Microsoft AppFabric 1.1 for Windows Server] ,然後按一下 [快取管理 Windows PowerShell] 。

    注意

    [快取管理 Windows PowerShell] 命令會自動載入 DistributedCacheAdministration 模組,但不會自動載入 ApplicationServer 模組或 DistributedCacheConfiguration 模組。

    注意

    如果您使用其他方式開啟 Windows PowerShell 主控台,而不是使用 [系統管理工具] 中的 [Windows PowerShell 模組] 命令,則將需要匯入 AppFabric 模組 (請參閱下方)。此處所指其他方法包括 [附屬應用程式] 功能表中的 Windows PowerShell 命令、工具列上的 Windows PowerShell 圖示,或是在 <磁碟機>:\Windows\System32\WindowsPowerShell\v1.0 中執行 powershell.exe。您將需要個別匯入 AppFabric 模組,因為這些方法不會自動載入 AppFabric ApplicationServer 模組與其他模組。

匯入 Windows PowerShell 的 AppFabric 模組

  1. 如果您使用其他方式開啟 Windows PowerShell 主控台,而不是使用 [系統管理工具] 中的 [Windows PowerShell 模組] 命令,則將需要個別匯入 AppFabric 模組。

  2. 在 Windows PowerShell 提示字元中輸入下列一或多個命令,然後按下 ENTER:Import-Module ApplicationServerImport-Module distributedcacheconfigurationImport-Module distributedcacheadministration

    注意

    您不需要是電腦上的系統管理員,就可匯入 Windows PowerShell 的 ApplicationServer 模組。

    注意

    當您手動匯入模組時,它只會針對目前的工作階段維持載入狀態。若使用上述其中一種方式再次開啟主控台,您必須再次匯入模組。

    注意

    若要確認是否已載入 Windows PowerShell 的 ApplicationServer 模組,請在 Windows PowerShell 提示字元中執行下列一或多個命令,然後按下 ENTER:Get-Command –module ApplicationServerGet-Command –module distributedcacheconfigurationGet-Command –module distributedcacheadministration。確認 AppFabric Cmdlet 已列出。

取得 Cmdlet 說明

  1. 若要取得特定 Cmdlet 的說明,請在 Windows PowerShell 提示字元中輸入下列命令,然後按下 ENTER:Get-Help <Cmdlet 名稱> [-detailed | -full]

    注意

    例如,若要顯示 Get-ServiceInstance Cmdlet 的完整說明,請在 Windows PowerShell 提示字元中輸入下列命令,然後按下 ENTER:Get-Help Get-ServiceInstance –full

  2. 若要在畫面上顯示由 ApplicationServer 模組提供的 Cmdlet 清單,請在 Windows PowerShell 提示字元中輸入下列命令,然後按下 ENTER:Get-Command –module ApplicationServer

  3. 若要將 ApplicationServer 模組提供的所有 Cmdlet 清單列印到檔案,請在 Windows PowerShell 提示字元中輸入下列命令,然後按下 ENTER:Get-Command –module ApplicationServer | Sort-Object > C:\AppFabricCmdlets.txt

    若要將 ApplicationServer 模組提供的所有 Cmdlet 說明檔案參考列印到檔案,並以名詞及動詞排序,請在 Windows PowerShell 提示字元中輸入下列命令,然後按下 ENTER:Get-Command –module ApplicationServer | Sort-Object Verb,Noun | Get-Help -detailed > C:\HelpTopicsSortedNounVerb.txt.

  2012-03-05