New episode of PowerScripting podcast

Episode 9 of PowerScripting podcast is out. It’s been a while since I mentioned it on the blog – but it is really a great way to get synced on the latest developments in the PowerShell community.

See the PowerScripting web site for information on what’s in the podcast. It does include a few topics related to this blog: namely, the PowerShell namespaces debate and Jonathan’s story on using AD cmdlets to copy user accounts to another domain (could be useful when creating test environments).

Tags: ,

3 Responses to “New episode of PowerScripting podcast”


  1. 1 Jonathan Walz October 1, 2007 at 3:04 pm

    Hi Dmitry,

    Thanks for mentioning the podcast again. It really helps to get the word out. I have a question for you. Would it be possible for New-QADUser to attempt to map it’s parameters from matching properties of the input object? This would allow me to do something like:

    Connect-QADService -service ‘domain.dev’
    $users – GetQADUser -SearchRoot ‘OU=Users,DC=domain,DC=dev’
    Disconnect-QADService
    Connect-QADService -service ‘domain.tst’
    $users | new-qaduser

    instead of having to do something like:

    Connect-QADService -service ‘domain.dev’
    $users – GetQADUser -SearchRoot ‘OU=Users,DC=domain,DC=dev’
    Disconnect-QADService
    Connect-QADService -service ‘domain.tst’
    $users | %{new-qaduser -name $_.Name -ParentContainer ‘OU=Users,DC=domain,DC=tst’ -SamAccountName $_.LogonName -description $_.description -displayname $_.DisplayName -firstName $_.firstname -lastname $_.lastname -UserPrincipalName $_.name}

    Thank you for all of your work on this project the Quest AD cmdlets are a huge help to me.

    Jonathan

  2. 2 dmitrysotnikov October 1, 2007 at 3:12 pm

    Jonathan,

    I think it is a great feature request. We are finalizing 1.0 now and will then start working on the feature set for 1.1 so requests like this one come at a good time!

    To your question – this actually can be done already with a PowerShell script. If you install PowerGUI and import the Active Directory pack from PowerGUI library, check out the “Create from CSV file” action on the Users node – it looks like it does what you need. You can see the code if you look the action’s properties.

    Dmitry


  1. 1 New episode of PowerScripting podcast Trackback on October 12, 2007 at 10:30 pm

Leave a Reply




View Dmitry Sotnikov's profile on LinkedIn

Follow Dmitry Sotnikov at Twitter

My Recent Tweets

Archives

See you at:

Legal

The posts on this blog are provided “as is” with no warranties and confer no rights. The opinions expressed on this site are mine and mine alone, and do not necessarily represent those of my employer Quest Software or anyone else for that matter. All trademarks acknowledged.

© 2007 Dmitry Sotnikov

Pages

 

October 2007
M T W T F S S
« Sep   Nov »
1234567
891011121314
15161718192021
22232425262728
293031