Archive for the ‘Scripting’ Category

Powershell Survival Guide

Posted: 18th July 2010 by neil in Powershell, Scripting

There is a really nice article on the TechNet Wiki which has a nice list of Powershell URL’s to help you learn and master powershell You can view it here: http://social.technet.microsoft.com/wiki/contents/articles/windows-powershell-survival-guide.aspx

Just a quick post on how to enter the product key using the exchange management shell: set-exchangeserver -Identity servername -ProductKey XXXX-XXXXX-XXXXX-XXXX-XXXXX

End a process in powershell

Posted: 23rd January 2010 by neil in Powershell, Scripting

I recently encountered a problem where i wanted to end multiple processes that were running. In my quest to learn powershell I had a look to see if could do it via this method. It was a simple one line cmdlet: stop-process -name iexplore Simples! NAME     Stop-Process SYNOPSIS     Stops one or more running [...]