HOWTO: Set your Windows Proxy Server Settings via PowerShell
The following PowerShell script will set your proxy server registry settings for Internet Explorer. set-itemproperty -path "hkcu:Software\Microsoft\Windows\CurrentVersion\Internet Settings" -name...
View ArticleHOWTO: Disable the Windows Server 2008 Loopback Check via PowerShell
Our servers have a RegEdit lock-down in affect. Yes, it is silly. PowerShell can do the job though! # Get the value of the LSA keys Get-ItemProperty HKLM:\System\CurrentControlSet\Control\Lsa # Disable...
View ArticleWindows Server 2008 R2 Hyper-V Guests Lose Network Connectivity Temporarily
This seems to be a problem that has existed in all versions of Hyper-V. I have experienced this in the both Windows Server 2008 and Windows Server 2008 R2 versions. I have two Hyper-V 2008 R2 servers...
View ArticleHOWTO: Enable Kerberos Logging via PowerShell
Our servers still have a RegEdit policy lock-down in affect. Yes, it is still silly. PowerShell however is allowed Turning on Kerberos logging allows you to view detailed information on any Kerberos...
View ArticleCreating Windows Server 2008 DNS Zones to Resolve External URLs to Internal...
In our public-facing website environment we resolve URLs via our gateway to a hardware load balancer, and then on to our web front-end SharePoint 2010 servers. This all works well, and externally we...
View ArticleHOWTO Use Powershell to Enable Remote Desktop on another Computer
$remoteComputerName = "my_remote_computer" # Connect to another computer and start the remote registry service ( Get-WmiObject -computername $remoteComputerName Win32_Service -filter...
View Article