Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to enable credssp authentication on windows server using PowerShell?
Before enabling the credssp authentication for the windows server, we will first check the credssp status using the below command.
Get-ChildItem WSMan:\localhost\Service\Auth | Where-Object {$_.Name -eq "CredSSP"}
| Select Name, Value
Output
Name Value ---- ----- CredSSP false
To enable the credssp,
PS C:\> Enable-WSManCredSSP -role server -Force
Output
cfg : schemas.microsoft.com/wbem/wsman/1/config/service/auth lang : en-US Basic : false Kerberos : true Negotiate : true Certificate : false CredSSP : true CbtHardeningLevel : Relaxed
To enable the credssp authentication on the remote computers,
Invoke-Command -ComputerName TestMahchine1, TestMachine2 -
ScriptBlock {
Enable-WSManCredSSP -Role Server -Force
} Advertisements
