Powershell

使用powershell訪問將使用者添加到azure windows server 2016

  • July 21, 2017

我已將使用者添加到 azure vm 並將使用者添加到“遠端桌面使用者”組,他們可以使用 rdp 訪問伺服器,但不能像主使用者那樣通過 powershell。

如何允許使用者也通過 powershell 訪問伺服器。

在您的 Windows Server 2016 中,您可以將使用者添加到遠端管理使用者組中,也可以使用 Powershell 命令檢查允許哪些組執行 PSSession。

Get-PSSessionConfiguration

添加其他組以訪問 PSSession 的選項。

Set-PSSessionConfiguration -Name Microsoft.PowerShell -showSecurityDescriptorUI

還要檢查連接到 VM 網卡的 Azure NSG,以允許 WinRM 埠的入站安全規則。

引用自:https://serverfault.com/questions/863361