May 5, 2012
GIMP 2.8 Released
After a long wait GIMP 2.8 has been released. GIMP has always been my favorite graphics editor and it is free! I have always liked the fact that it is a cross platform app that I can use no matter what OS I have chosen to complete my task at hand. GIMP is the alternative to Photoshop which is great but very expensive product. Long-anticipated features such as layer groups, on-canvas text editing, advanced... 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
