Variable | Description |
---|
$CompanyCode | The unique code for the new company you just created |
$CompanyName | The company name of the company you just created |
$CompanyDistinguishedName | The distinguished name of the company in Active Directory |
$Reference | The value from the reference field |
[CmdletBinding()]
Param (
[Parameter(Mandatory=$true)]
[string]$CompanyCode,
[Parameter(Mandatory=$false)]
[string]$CompanyName,
[Parameter(Mandatory=$false)]
[string]$CompanyDistinguishedName,
[Parameter(Mandatory=$false)]
[string]$Reference
)
Was this article helpful to you?
Yes
No