Monthly Archives: March 2007

Another Presentation

The Advanced PowerShell Scripting presentation from MMS is available here   http://blogs.msdn.com/powershell/archive/2007/03/30/mms2007-sw10-advanced-powershell-scripting.aspx

Posted in Powershell | Leave a comment

Network Addresses pt III

I have taken the network addresses script a stage further – adding a function to calculate the next IP address and a loop to control the production of the list of IP addresses   #### To calculate first and last … Continue reading

Posted in Powershell | Leave a comment

Network Addresses ptII

As a follow up to yesterdays post about deriving first and last IP addresses for a subnet Gaurhoth has posted a solution that also derives the full list of IP addresses.    http://thepowershellguy.com/blogs/gaurhoth/archive/2007/03/29/finding-a-range-of-ip-addresses.aspx   There is a lot of binary … Continue reading

Posted in Powershell | Leave a comment

Presentation Slides

The slides and demo scripts from the Powershell talks at Mirosoft Management Summit are availabe for download   http://blogs.msdn.com/powershell/archive/2007/03/28/mms2007-managing-systems-using-powershell.aspx   http://blogs.msdn.com/powershell/archive/2007/03/29/mms2007-sw09-extending-powershell-mananaging-a-production-website-using-powershell.aspx    

Posted in Powershell | Leave a comment

Network Addresses

In a post in the Microsoft newsgroup a question was asked about converting a network address such as 10.0.0.0/24 and getting the IP addresses to pass into a ping command. The discussion included all sorts of references to use the … Continue reading

Posted in Powershell | 2 Comments

The Power of the Pipeline

One of the greatest strengths of PowerShell is the pipeline. Pipelines have existed in shells for many years from the simple pipelining abilities in DOS to the sophisticated use of the pipeline in *nix. PowerShell is different from previous shells … Continue reading

Posted in Powershell | 1 Comment

The return of the IT Generalist?

Is this the time for a return of the IT Generalist?    Many people in IT that I come across have specialised in one facet of IT.  They may be very expert in that area and can usually solve problems … Continue reading

Posted in Architecture | Leave a comment

Powershell Announcements

Check the PowerShell Team blog for this announcement   http://blogs.msdn.com/powershell/archive/2007/03/28/announced-powershell-to-ship-in-windows-server-longhorn.aspx   PowerShell will ship as part of Longhorn Server.  As it comes as part of the Operating System there is more incentive than ever to start learning PowerShell.  It does … Continue reading

Posted in Powershell | Leave a comment

Find user with specific home drive

A recent post on the newsgroup aked how can I find a user with a specific homedrive?   Home drive informaton is stored in the homedirectory attribute so a direct approach  like this will work $dom = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()$root = $dom.GetDirectoryEntry() … Continue reading

Posted in Script of the Week | Leave a comment

PowerShell Review Information Required

Redmond magazine are looking to do a review on PowerShell.  If you want to add your opinion the feedback form is here   ** What’s Your Take on Microsoft Windows PowerShell?If you’ve delved into PowerShell, we want to hear from … Continue reading

Posted in Powershell | Leave a comment