Articles

PowerShell articles, tutorials, and guides from community experts.

Don Jones
Scripting Games

Coaches and Judges Selected for Winter Scripting Games

We’ve had an outpouring of support for the upcoming games, with more volunteers than we know what to do with! At this point, we have our judging panel completely full; we’re operating with a fairly small group of celebrity judges this time around. Games Master Richard Siddaway will …

Don Jones
PowerShell for Admins

How "Quick and Dirty" Becomes "Permanent and Annoying."

Consider the following: $computers = Get-ADComputer -filter * -searchBase "ou=test,dc=company,dc=pri" foreach ($computer in $computers) { write-host "computer $computer" $result = Do-Something -computername $computer Write-Host "$($result.property) and $($result.value)" …

Don Jones
Announcements

Scheduled site downtime

Windows Azure has advised us of scheduled downtime on Friday, December 6, from approximately 15:00 hours (US Pacific) until approximately midnight Pacific time.

Don Jones
Books

Community Book of PowerShell Practices

Released in our new Git repo: _The Community Book of PowerShell Practices, _an ongoing book started from this past Summer’s “Great Debates” blog post series. Grab it from https://github.com/PowerShellOrg/ebooks/blob/master/Practices/2013Sep_Practices/2013Sep_Practices.doc and …

Don Jones
Training

Last chance for feedback on PowerShell course 10961A/B

I’m in the midst of working on 10961C, the Windows Server 2012 R2 / Windows 8.1 / PowerShell 4.0 update of Microsoft’s 10961A/B course, “Automating Administration with Windows PowerShell.” I anticipate this being closed out by the end of November, 2013, so if you’ve …

Don Jones
Announcements

Login now required for comments

A quick note and an apology: I’ve had to modify the site configuration to require users to be registered and logged in before they can comment. We’ve been taking a ridiculous amount of comment spam, and it’s consuming more and more time to weed through it. You can register using …

Enrique Puig
PowerShell for Admins

Monitoring SQL Server Backups

One of the most important tasks for the** **DBAs is to ensure that there is a maintenance plan to recover data from a given disaster. As a DBA we need to design a maintenance plan according to our scenario and business requirements. Do we want to be able to recover data at any point of time? How …