|
Disable Smart Card enforcement |
|
|
|
|
Written by Administrator
|
|
Friday, 18 June 2010 20:17 |
The following Registry key enables Smart Card enforcement:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\system] "SCForceOption"=dword:00000001
To disable enforcement, delete SCForceOption or set the DWORD = 0 , "SCForceOption"=dword:00000000
You can do this by rebooting the PC into Safe Mode, logon as Admionistrator, and run Regedit.
|
|
|
Custom Address list in Exchange 2007 |
|
|
|
|
Written by Administrator
|
|
Friday, 18 June 2010 19:14 |
This procedure will allow you to create a custom address list based on the contents of a mail contatcs externalemailaddress.
The following will set CustomAttribute1 get-mailcontact -ResultSize Unlimited | where{$_.ExternalEmailAddress -like *@chicago.mydomain.com} | Foreach {set-mailcontact $_.Identity -CustonAttribute1 chicago.mydomain.com}
The following will create the address list and associate it with CustomAttribute1 new-addresslist -name chicago.mydomain.com -includedRecipients mailcontacts -ConditionalCustomAttribute1 chicago.mydomain.com
|
|
|
|