Archive for the ‘Powershell’ Category

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 [...]

Retrieve a list of all powershell cmdlets

Posted: 9th January 2010 by neil in Powershell, Scripting

If you want a list of all powershell cmdlets run this command. I have exported it to a text file   Get-Command | Format-List