Stop IIS Binding to all IP Addresses

On a number of occasions I have tried setting up a piece of software with a web interface that listens on port 80 to avoid having to type the port number in the address bar and allowing me to set up a simple, descriptive name in my DNS server (e.g. typing backup takes me to my backup software’s web interface). Now, I understand that only a single process can listen on a specific port at a time and thus often add additional IP addresses to my servers. The problem comes when IIS (Internet Information Services) is also installed on the same machine.

Continue reading Stop IIS Binding to all IP Addresses

Port Forwarding (Redirection) under Windows Server for Plex

I recently installed Plex server to test it out as an alternative to XBMC after a number of friends have suggested it and I liked the ability to stream video straight to my Chromecast. Whilst testing the server component I came across an annoying issue with the fact that the web interface listens on an unobvious high port (32400 I think it is). And worse – it doesn’t seem to be configurable (along with the IP address it is bound to). What I wanted to achieve was to get the web interface listening on port 80 with DNS set up to simplify access for myself. So, the goal was to go from this: http://192.168.1.2:32400/web/ to this: http://plex.domain.local/web/. Sadly, theres not much I could do about the web/ subdirectory (please comment if you figure something out!).

Continue reading Port Forwarding (Redirection) under Windows Server for Plex

Windows 8.1 VPN Connection Freeze/Failure

I had a problem recently on Windows 8.1 where trying to create a VPN connection would just cause the Windows interface to freeze and no connection made. After clicking connect, a number of different WAN Miniport adapters appear in Device manager under Network adapters (they may also be visible by clicking View > Show hidden devices) with yellow exclamation marks. They are mostly different types of VPN connections such as PPTP and L2TP. The way to fix them is to uninstall and then reinstall the devices – unfortunately, they aren’t as easy to remove as normal devices and do not allow you to uninstall. These are the steps I followed to uninstall and reinstall the devices;

Continue reading Windows 8.1 VPN Connection Freeze/Failure

Windows Server 2012 – WinRM Corrupt or Missing

I recently had an issue with a Windows Server 2012 machine where if I ever tried to add or remove a feature I would receive the following error:

Failed to open the runspace pool. The Server Manager WinRM plug-in might be corrupted or missing.

Continue reading Windows Server 2012 – WinRM Corrupt or Missing

Windows 8 to 8.1 Upgrade Breaks IIS

After performing an upgrade from Windows 8 to 8.1, my IIS server returns a 503 error for every page on every site. It turns out that the culprit is the URL Rewrite Module (v2). The fix for the issue is very easy;

  1. Uninstall the URL Rewrite Module from Programs and Features.
  2. Reinstall from either the web or the Web Platform Installer.
Continue reading Windows 8 to 8.1 Upgrade Breaks IIS

NT Kernel & System using Port 80

I had been trying to set up Internet Information Services (IIS) under Windows 7 to use PHP and MySQL to save myself the trouble of having both IIS and XAMPP installed. After a short time I managed to get it running rather easily using the Web Platform Installer. This was great apart from a couple of small annoyances when developing PHP applications. After a few weeks of use, I decided it was about time to switch back to XAMPP as it removed all of the annoyances I had encountered – here, I ran into a couple of problems!

Continue reading NT Kernel & System using Port 80

Disable Windows 7 Automatic Reboots

One of the most annoying features of Windows is its ability to restart your machine automatically once you’ve installed Windows updates. This issue becomes even more annoying if for instance you leave things running overnight to continue next morning, or leave your machine running while you go grab some lunch. Thankfullly it really quick and easy to fix.

Continue reading Disable Windows 7 Automatic Reboots

Deploy .Net 3.5 Using Group Policy

Something that’s cost me a lot of time recently is trying to install  the .net 3.5 Framework to multiple computers in a domain using Group Policy. You would think, being a Microsoft product that the installer would be provided as an MSI as well as an EXE to ease deployment through domains. This however, is not the case.

Continue reading Deploy .Net 3.5 Using Group Policy