- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to disable the credssp authentication using PowerShell?
To disable the credssp on the local computer using PowerShell, use the below command.
PS C:\> Disable-WSManCredSSP -Role Server -Verbose
You can check if the credssp is disabled, using the below command.
PS C:\> Get-ChildItem WSMan:\localhost\Service\Auth | Where-Object {$_.Name -eq"CredSSP"} | Select Name, Value Name Value ---- ----- CredSSP false
To disable the credssp authentication on the remote computers using PowerShell,
Invoke-Command -ComputerName TestMahchine1, TestMachine2 - ScriptBlock { Disable-WSManCredSSP -Role Server }
- Related Articles
- How to enable credssp authentication on windows server using PowerShell?
- How to disable basic authentication for windows server using PowerShell?
- How to get the windows authentication settings using PowerShell?
- How to disable windows firewall profiles using PowerShell?
- How to enable the basic authentication for windows servers using PowerShell?
- How to disable the Azure VM accelerated settings using PowerShell?
- How to enable or disable local user on Windows OS using PowerShell?
- How to enable / Disable Enhanced Protection Mode in Internet Explorer using PowerShell?
- How to disable the selectability of Circle using FabricJS?
- How to disable the selectability of Triangle using FabricJS?
- How to disable the selectability of Textbox using FabricJS?
- How to disable the interactivity of canvas using FabricJS?
- How to disable the selectability of IText using FabricJS?
- How to disable right click using jQuery?
- How to disable Javascript when using Selenium?

Advertisements