
Jun 25, 2014
How To Fix Local Mapped Drives in RDP issue Windows 2008
Recently ran into an issue where several servers would not honor the local resources map when running a Remote Desktop Session to a Windows 2008 R2 server. Below are the steps used to correct it. Windows 2008 R2: Click Start, Administrative Tools, Remote Desktop Services, Remote Desktop Host Configuration. On the left pane, select RD Session Host Configuration and then right-click RDP-Tcp within the... read more
Jun 24, 2014
How To Reset the Administrator Password in Windows 2008 R2
Recently had an issue where the local Administrator password was lost for a Windows 2008 R2 server. This post covers how to change the password of the Administrator’s account using the Windows 2008 R2 installation DVD / ISO image. Boot from the Microsoft Windows Server 2008 R2 DVD / ISO image From the Install Windows menu, click “Next”. Select “Repair your computer” In the System Recovery Options,... read more
Jun 16, 2014
How to change several system settings with PowerShell
PowerShell is an awesome addition to Windows and the admins that administer servers. This post covers a few PowerShell commands to make changes to common settings. Create a drive to HKEY_CLASSES_ROOT & HKEY_CURRENT_USER. By default these two registry geys are not available for mounting and using in PowerShell, but that is an easy fix! if (!(get-psdrive hkcr -ea 0)){New-PSDrive -Name HKCR -PSProvider... read more
Jun 12, 2014
How to Fix Local Resources not Mapping with RDP session Windows 2008
Recently ran into an issue where several servers would not honor the local resources map when running a Remote Desktop Session to a Windows 2008 R2 server. Since this was not controlled by Group Policy I was able to fix the issue. Below are the steps used to correct it. (read: a check in this box means drive & printer mapping is DISABLED) Windows 2008: Click Start, Administrative Tools, Terminal... read more
Jun 7, 2014
How to Install Apache 2.4 MySQL and PHP on Windows Server 2012 R2
Well it is finally time to start playing a bit more with Microsoft’s latest server OS Windows Server 2012 R2. One of the many things to have on the list is getting the WAMP (Windows/Apache/MySQL/PHP) stack working. So in this post we will get installed and running Apache 2.4.9, MySQL 5.6.19 and PHP 5.5.13 on Windows Server 2012 R2. Also, instead of 32 bit apps we will be install 64 bit. You will... read more