Resources for IT Professionals > 포럼 홈 > Windows PowerShell > How to add users to a universal group and set the manager
질문하기질문하기
 

답변됨How to add users to a universal group and set the manager

  • 2009년 6월 29일 월요일 오후 3:18uerueluem 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    hi there
    i'm looking for someone, who could give me some tipps, how to create a script, to add users to the existing group and add a manager to the existing group. thanks for some input, cause i'm a littlebit lost.

    uerueluem

    additionaly question:
    is it possible, that i'm doing a read-host to enter the username like "mueller, mike" and it would that and convert it to mumi@contoso.com (unc-name)?

답변

  • 2009년 7월 1일 수요일 오후 12:01Mervyn ZhangMSFT, 중재자사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Hi,

    Please read the following article get the detailed instructions to manage AD using PowerShell. It provides information to modify properties. 

    Benp’s Basic Guide to Managing Active Directory Objects with PowerShell
    http://blogs.technet.com/benp/archive/2007/03/05/benp-s-basic-guide-to-managing-active-directory-objects-with-powershell.aspx

    Regarding compose email address, you can customize the following code(input the user name without comma, like mueller mike ):
     
    $Name = Read-Host "Please enter your name"
    $part=$name.split()
    $email=$part[0]+"@"+ $part[1]+".com"

    Thanks.

    This posting is provided "AS IS" with no warranties, and confers no rights.

모든 응답

  • 2009년 7월 1일 수요일 오후 12:01Mervyn ZhangMSFT, 중재자사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Hi,

    Please read the following article get the detailed instructions to manage AD using PowerShell. It provides information to modify properties. 

    Benp’s Basic Guide to Managing Active Directory Objects with PowerShell
    http://blogs.technet.com/benp/archive/2007/03/05/benp-s-basic-guide-to-managing-active-directory-objects-with-powershell.aspx

    Regarding compose email address, you can customize the following code(input the user name without comma, like mueller mike ):
     
    $Name = Read-Host "Please enter your name"
    $part=$name.split()
    $email=$part[0]+"@"+ $part[1]+".com"

    Thanks.

    This posting is provided "AS IS" with no warranties, and confers no rights.