Difference between revisions of "ProxyAddresses"

From MyWiki
Jump to: navigation, search
(Created page with "'''The following are examples of configuring the ProxyAddresses atribute :'''<br> $roy = get-qaduser abcde001<br> $roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Updat...")
 
 
Line 2: Line 2:
 
$roy = get-qaduser abcde001<br>
 
$roy = get-qaduser abcde001<br>
 
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Update=@("SMTP:roy@globomantics.com")}}<br>
 
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Update=@("SMTP:roy@globomantics.com")}}<br>
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Delete=@("SMTP:roy@globomantics.com")}<br>
+
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Delete=@("SMTP:roy@globomantics.com")}}<br>
 
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Append=@("smtp:george2@bold.ac.uk")}} <br><br>
 
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Append=@("smtp:george2@bold.ac.uk")}} <br><br>

Latest revision as of 09:42, 29 April 2015

The following are examples of configuring the ProxyAddresses atribute :
$roy = get-qaduser abcde001
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Update=@("SMTP:roy@globomantics.com")}}
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Delete=@("SMTP:roy@globomantics.com")}}
$roy | set-qaduser -objectAttributes @{ProxyAddresses=@{Append=@("smtp:george2@bold.ac.uk")}}