I’ll be adding yet another writing gig to my portfolio. This time I’ll be contributing a bi-weekly blog column at TurboChargeAD.org. The site is run by Quest Software with contributions from many members of the IT Pro and PowerShell community that you are likely familiar with like Don Jones, Brandon Shell, and Darren Mar-Elia, to…
Tag: Active Directory
Waynes World of Tips
I’ve blogged in the past about Wayne Martin and his outstanding list of command line tips. These are one line commands, some complex some simple, that you can use to accomplish a wide range of task. The overall number of tips is to 425 and Wayne recently reorganized them into 7 categories to make it…
Order Managing Active Directory with Windows PowerShell: TFM – Finally!
Yes, its finally true. You can finally get your hands on Managing Active Directory with Windows PowerShell: TFM. The book is being printed so you can get your copy today. You can order it today at ScriptingOutpost.com in both print and ebook format. Or if you prefer the best of both worlds get both as…
Updated Domain Password Report
My September Mr. Roboto column covers a PowerShell script you can use to create a domain password report. I also demo’d the script at the NYC Techmentor conference this past week. Since then I realized a mistake in the way that I laid out the script. I had nested a function within another function which…
More CLI One-Liners
In the past I’ve posted a collection of command one-liners that get a ton of work done with (relatively) minimal effort. Many of these have come from Wayne Martin. I’ve been behind in my blogging while book writing, but I wanted to make sure you checked out his latest list at: http://waynes-world-it.blogspot.com/2008/04/useful-command-lines.html Technorati Tags: Automation,…
Techmentor Just Around the Corner
The registration deadline for the first Techmentor conference of the year is almost upon us. I’ll be doing sessions on using Powershell to manage Active Directory, PowerShell and WMI, Logon Scripts and more. Plus, I’m always happy to hang out and chat. I always have a great time. Hope to see you there. If you…
Updated Group Reporter
A few of my recent Mr. Roboto columns have been about group auditing. I first published an HTA that would report on group membership last December. Astute reader Matt V. found a bug with the way nested group memberships were being reported. Or in this case, not being reported. It turns out that if a…
Techmentor San Francisco 2008
I finished up my slide decks last week for the first Techmentor conference of the year in San Francisco (March 30 -April 3). If you’ve never been to a Techmentor conference you’re missing a great opportunity to hear and see your favorite IT speakers. Plus it’s a lot of fun to meet your peers, swap…
Conference Samples Available
The demos, updated slide decks and other stuff for the Fall Techmentor conference, as well as the 2 day PowerShell pre-conference event before WinConnections last week, are now available for download at http://www.scriptinganswers.com/essentials.asp. I think I spent half of November in Las Vegas (not that its a bad thing). Thanks to all of you who…
Congratulations to new PowerShell MVPs
Well deserved congratulations are in order for some new Microsoft PowerShell MVPs. Marco Shaw, who is also a PowerGadgets MVP, is a frequent contributer to ScriptingAnswers.com and maintains an active blog at http://marcoshaw.blogspot.com/. Dmitry Sotnikov is one of the brains behind the Quest PowerShell cmdlets and has done a great deal to make managing Active…
More One Liners
I recently did a TipSheet column listing some of my favorite quick, one line commands. Reader Wayne was kind enough to share with me his list of oft-used one-liners which he graciously offered to share. I have not tested many of these personally, but you always test things in a non-production environment anyway, right? The…
Get Active Directory User Information in PowerShell
One feature that PowerShell will likely be missing when it first ships is solid support for ADSI and working with Active Directory. You can use .NET DirectoryEntry objects but it feels more like programming and less like scripting. Another option for working with Active Directory in PowerShell is to use WMI. PowerShell does have a…
Techmentor: DSQuery and DSMod examples
During the command line scripting session, I demonstrated how to use the directory service command line tools like dsmod, dsquery and dsget. You can get syntax help by running ‘dsquery /?’ (or dsmod,dsadd,dsget). There’s a lot of help information so you’ll probably want to pipe the results using More (dsquery /? | more) You can…