如何載入 App-V 的 Windows PowerShell Cmdlet 並取得 Cmdlet 說明
適用於:
- Windows 10
- Windows 11
使用 Windows PowerShell Cmdlet 的需求
本節將告訴您使用 PowerShell Cmdlet 所需的內容。
如何讓使用者存取 PowerShell Cmdlet
您可以透過下列其中一種方法,將 PowerShell Cmdlet 的存取權授與使用者:
- 在部署和設定 App-V 伺服器時,請指定具有管理 App-V 環境許可權的 Active Directory 群組或個別使用者。 如需詳細資訊,請 參閱如何部署App-V伺服器。
- 部署 App-V 伺服器之後,您可以使用 App-V 管理控制台來新增額外的 Active Directory 群組或使用者。 如需詳細資訊,請 參閱如何使用管理主控台新增或移除系統管理員。
提升許可權的命令提示字元
您將需要提升權限的命令提示字元來執行下列 Cmdlet:
- Add-AppvClientPackage
- Remove-AppvClientPackage
- Set-AppvClientConfiguration
- Add-AppvClientConnectionGroup
- Remove-AppvClientConnectionGroup
- Add-AppvPublishingServer
- Remove-AppvPublishingServer
- Send-AppvClientReport
- Set-AppvClientMode
- Set-AppvClientPackage
- Set-AppvPublishingServer
其他 Cmdlet
除非您將使用者設定為需要提升許可權的命令提示字元,否則下列 Cmdlet 是使用者可以執行的 Cmdlet。
- Publish-AppvClientPackage
- Unpublish-AppvClientPackage
若要將這些 Cmdlet 設定為需要提升許可權的命令提示字元,請使用下列其中一種方法:
- 使用 -RequirePublishAsAdmin 參數執行 Set-AppvClientConfiguration Cmdlet。 如需詳細資訊,請參閱下列資源:
- 啟用 App-V 用戶端的 [需要以系統管理員身分發佈] 群組原則 設定。 如需詳細資訊,請 參閱如何使用管理主控台發佈套件。
載入 Windows PowerShell Cmdlet
若要載入 Windows PowerShell Cmdlet 模組:
- 開啟 Windows PowerShell 或 Windows PowerShell 整合式腳本環境 (ISE) 。
- 輸入下列其中一個 Cmdlet,以針對您想要的模組載入可用的 Cmdlet 清單:
App-v 元件 | 要輸入的 Cmdlet |
---|---|
App-V 伺服器 | Import-Module AppvServer |
App-V Sequencer | Import-Module AppvSequencer |
App-V 用戶端 | Import-Module AppvClient |
取得 Windows PowerShell Cmdlet 的說明
從 App-V 5.0 SP3 開始,Cmdlet 說明提供兩種格式:
- 作為 PowerShell 中的可下載模組。 若要存取模組,請開啟 Windows PowerShell 或 Windows PowerShell 整合式腳本環境 (ISE) ,然後輸入下表中的其中一個 Cmdlet。
App-v 元件 | 要輸入的 Cmdlet |
---|---|
App-V 伺服器 | Update-Help -Module AppvServer |
App-V Sequencer | Update-Help -Module AppvSequencer |
App-V 用戶端 | Update-Help -Module AppvClient |
- 在在線的 Microsoft 桌面優化套件中。
顯示 Windows PowerShell Cmdlet 的說明
若要顯示特定 Windows PowerShell Cmdlet 的說明:
- 開啟 Windows PowerShell 或 Windows PowerShell 整合式腳本環境 (ISE) 。
- 輸入 Get-Help ,後面接著您需要協助的 Cmdlet。 例如:
Get-Help Publish-AppvClientPackage