No remote Desktop License Server available on RD Session Host server 2012 R2

No remote Desktop License Server available on RD Session Host server 2012 R2

A fully functional and activated 2012 R2 Remote Desktop Session Host server displayed the following message: This was a simple setup on one server with the: connection broker, Session Host and Licensing server with 2012 R2 CAL’s installed. Even though the licensing seems to be configured correctly, in server manager: and PowerShell: Licensing diagnostics: everywhere […]

Continue Reading

Check Proxy settings from Powershell

To check the proxy settings like ProxyOveride or if it is enabled or not: Get-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” To disable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 0 To enable proxy from PowerShell: Set-ItemProperty -Path “Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” ProxyEnable -value 1  

Continue Reading

Quick and Simple Way to Export DHCP Scope Settings From One Server to Another

Applies to: Windows Server 2008 R2, Windows Server 2012R2, Windows Server 2016 From the command prompt on the source DHCP server run the following command: netsh dhcp server export c:\dhcp.dat all 2.  Copy the “dhcp.dat” file to the new, or destination, DHCP server and run the following command: netsh dhcp server import c:\dhcp.dat all While […]

Continue Reading

Updating the system time on Server 2008R2 & 2012R2 using NTP Servers

To update, use the command below (2008 and 2012 server compatible) w32tm /config /manualpeerlist:”ntp_server” /syncfromflags:manual /reliable:yes /update change the ntp_server with your source. Check http://tf.nist.gov/tf-cgi/servers.cgi for servers Restart the time service net stop w32time net start w32time Resync the time w32tm /resync Verify your sync status w32tm /query /status Commands above should be fine if your […]

Continue Reading