Category Archives: Uncategorized

MVP award

I received the email this afternoon informing that I’d been awarded MVP status for another year – the 12th year I’ve received the MVP award. I’m highly honoured to receive this and thank everyone who’ve read my blog, my articles … Continue reading

Posted in Uncategorized | Leave a comment

Capacity Planning part 2

My capacity planning mini series on the Scripting Guy blog continues with the second part – dealing with storing data in SQL Server –  available today http://blogs.technet.com/b/heyscriptingguy/archive/2013/11/11/the-admin-s-first-steps-capacity-planning-part-2.aspx I’ll repeat the URL for the first part for reference http://blogs.technet.com/b/heyscriptingguy/archive/2013/11/04/the-admin-s-first-steps-capacity-planning.aspx

Posted in Uncategorized | Leave a comment

Travelling devices

Disclaimer: The following is based on my personal experiences and needs that may well not match yours. Feel free to disagree with my conclusions. I offer my insights to help others decide on the devices that suit them.   I’ve … Continue reading

Posted in Uncategorized | Leave a comment

Converting group scope–to Universal

We’ve seen how to create the different group type – but we may create a group as a global group and need to change it to a another. This isn’t a free range change process: Universal and Domain Local can … Continue reading

Posted in Uncategorized | 1 Comment

Remove password never expires setting

The final look at the password never expires setting is to see how we can remove it $ou = “OU=England,DC=Manticore,DC=org” “`nMicrosoft” $name = “UserA” Get-ADUser -Identity $name | Set-ADUser -PasswordNeverExpires:$false “`nAD provider” $name = “UserB” $dn = “cn=$name,$ou” $flag = … Continue reading

Posted in Uncategorized | Leave a comment

2011 in review

The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here’s an excerpt: The Louvre Museum has 8.5 million visitors per year. This blog was viewed about 100,000 times in 2011. If it were an exhibit at … Continue reading

Posted in Uncategorized | Leave a comment

Half Price PowerShell books

Check http://www.manning .com for a half price deal on PoweShell books: PowerShell in Practice PowerShell and WMI PowerShell in Action Learn PowerShell in a month of lunches Hurry. Today only!

Posted in Uncategorized | Tagged | Leave a comment

Thunderbirds

Do you remember the brilliant shows produced by Gerry Anderson: Thunderbirds Stingray Captain Scarlet Fireball XL5 Supercar   And even the not so brilliant Joe 90. The Post Office (UK) is producing a set of stamps to commemorate the shows.  … Continue reading

Posted in Uncategorized | Leave a comment

COM pt 7–Items pt 2

In part 6 we looked at the drives collection on the FileSystemObject. The Items property was mentioned. Lets jump back to our Shell object $shell = New-Object -ComObject “Shell.Application”   if we do a Get-Member $shell | gm You will … Continue reading

Posted in Uncategorized | Leave a comment

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Posted in Uncategorized | 1 Comment