Variable | Description |
---|
$CompanyCode | The unique code for the new company you just created |
$UserPrincipalName | The new user’s UserPrincipalName |
$SamAccountName | The new user’s sAMAccountName |
$UserDistinguishedName | The new user’s distinguished name |
[CmdletBinding()]
Param (
[Parameter(Mandatory=$true)]
[string]$CompanyCode,
[Parameter(Mandatory=$true)]
[string]$UserPrincipalName,
[Parameter(Mandatory=$true)]
[string]$SamAccountName,
[Parameter(Mandatory=$false)]
[string]$UserDistinguishedName
)
Was this article helpful to you?
Yes
No