Posted On September 3, 2020

Set Windows Remote Desktop To Allow Blank Passwords

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Set Windows Remote Desktop To Allow Blank Passwords

By default, Windows restricts RDP access for account without passwords. Of course, this is a security 101 issue. When trying to do so, one should expect to see errors such as this:

Sometimes, Windows savvy users want to bypass that restrict. Well, it’s as simple as copy & paste the following line in PowerShell running as Administrator:

Set-ItemProperty -Path 'REGISTRY::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa' -Name 'LimitBlankPasswordUse' -Value 0 -force

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Use DISM To Install Windows Features

Deployment Image Servicing and Management (DISM.exe) is a command-line tool that can be used to…

SIP with Sonicwall Issues

Disabled SIP Transformations Enabled Consistent NAT Added a Service Group with SIP Ports 5060-5062, RTP…

PowerShell: Audit Domain Controller Certificates

function auditDcCerts{ try{ write-host "Gathering Domain Controller Names..." Import-Module ActiveDirectory $osInfo = Get-CimInstance -ClassName Win32_OperatingSystem…