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
Archive for the ‘Scripting’ Category
Enter Exchange 2007 Product Key using powershell
Posted: 7th March 2010 by neil in Exchange Server 2007, PowershellJust 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
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 [...]