July 2017
Intermediate to advanced
648 pages
31h 9m
English
Like mailboxes, mail contacts and mail-enabled user accounts have several Active Directory attributes that can be set, such as job title, company, department, and more. To update these attributes, you can use the Set-* cmdlets available for each respective type. For example, to update our mail contact, we could use the Set-Contact cmdlet with the following syntax:
Set-Contact -Identity rjones `
-Title 'Sales Contractor' `
-Company Fabrikam `
-Department Sales
To modify the same settings for a mail-enabled user, use the Set-User cmdlet:
Set-User -Identity jdavis `
-Title 'Sales Contractor' `
-Company Fabrikam `
-Department Sales
Both cmdlets can be used to modify a number of different settings. Use the help system to view ...
Read now
Unlock full access