December 2021

Convert Windows Server 2019/2022 Evaluation to Retail

To convert your windows server 2019 from Evaluation to Retail, use the following PowerShell command: DISM /Online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula   For no restart prompt after the conversation, please use the following command: DISM /NoRestart /Online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula Convert Windows Server Standard 2022 DISM /NoRestart /Online /Set-Edition:ServerStandard /ProductKey:VDYBN-27WPP-V4HQT-9VMD4-VMK7H /AcceptEula    

Convert Windows Server 2019/2022 Evaluation to Retail Read More »

Enable RDP Firewall rules and disable RDP NLA from PowerShell Windows Server 2016/2019

By default, you might find RDP firewall rules disabled which prevent RDP connections to the server. To enable preset firewall rules of RemoteDesktop, use the following PowerShell command: Enable-NetFirewallRule -DisplayGroup ‘Remote Desktop’ or from CMD, append powershell.exe in the beginning: powershell.exe Enable-NetFirewallRule -DisplayGroup ‘Remote Desktop’   To disable RDP Network Level Authentication (NLA), use the

Enable RDP Firewall rules and disable RDP NLA from PowerShell Windows Server 2016/2019 Read More »