Задайте вопросЗадайте вопрос
 

ОтвеченоHow to add users to a universal group and set the manager

Ответы

  • 1 июля 2009 г. 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.

Все ответы

  • 1 июля 2009 г. 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.