如何使用 PowerShell 为 Windows 服务器启用 credssp 身份验证?
在为 Windows 服务器启用 credssp 身份验证之前,我们将首先使用以下命令检查 credssp 状态。
Get-ChildItem WSMan:\localhost\Service\Auth | Where-Object {$_.Name -eq "CredSSP"} | Select Name, Value
输出
Name Value ---- ----- CredSSP false
要启用 credssp,
PS C:\> Enable-WSManCredSSP -role server -Force
输出
cfg : http://schemas.microsoft.com/wbem/wsman/1/config/service/auth lang : en-US Basic : false Kerberos : true Negotiate : true Certificate : false CredSSP : true CbtHardeningLevel : Relaxed
要在远程计算机上启用 credssp 身份验证,
Invoke-Command -ComputerName TestMahchine1, TestMachine2 - ScriptBlock { Enable-WSManCredSSP -Role Server -Force }
广告