
May 22, 2012
Installing .NET 1.1 on Windows 2008 R2
Overview This postexplains how to install .NET 1.1 on Windows 2008 R2. .NET 1.1 is not officially supported on Windows 2008 platform but can be installed and used. First IIS 7.5 must be installed with a few additional features. Step 1: Install IIS and IIS 6 Metabase Compatibility Open Server Manager and click on Roles. In the right pane click Add Roles, click Next on the Before You Begin Screen.... read more
May 2, 2012
Reserved Ports on Windows 2008 R2
Sometimes you will run into an issue where an application requires a specific port(s) and another app or service will grab them and cause that app or service to fail. In Windows 200 and 2003 you could resolve this issue by adding a Multi string registry entry in HKLM\SYSTEM\CurrentControlSet\services\tcpip\Parameters called ReservedPorts and add in the exceptions and reboot and all was well. This is no... read more
Apr 30, 2012
Microsoft Script Explorer for Windows PowerShell
While digging around on the Internet for some PowerShell code I came across a new tool from Microsoft called Microsoft Script Explorer for Windows PowerShell (pre-release). Microsoft Script Explorer for Windows PowerShell (pre-release) helps scripters find Windows PowerShell scripts, snippets, modules, and how-to guidance in online repositories such as the TechNet Script Center Repository, PoshCode, local... read more
Apr 30, 2012
Creating Folder Shares with PowerShell
Here is a cool little function that you can use to create a share on a system. Save this function in a PowerShell module and load to your toolset.To run this cfunction you must have full administrator privileges, this function also sets the ErrorActionPreference to stop. function New-Share { param($Path, $Name) try { $ErrorActionPreference = ‘Stop’ if ( (Test-Path $Path) -eq $false) { $null =... read more
Apr 29, 2012
Adding Additional Fonts to PowerShell and Command Console
Ever wanted to add a different font to PowerShell and command prompt, we’ll here is an easy way to add it with PowerShell. Open a PowerShell with Administrator privileges and execute the following commands. $key = ‘HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont’ Set-ItemProperty -Path $key -Name ‘000’ -Value ‘Courier New’ To select a font,... read more