Infos

Sie befinden sich in den Archiven der Kategorie Microsoft.

Calendar
Februar 2012
M D M D F S S
« Aug    
 12345
6789101112
13141516171819
20212223242526
272829  

Archiv der Kategorie Microsoft

PKI , Kerberos and Smart Cards

The following article describes how the Smart Card logon is working.

Link : http://ammarhasayen.wordpress.com/2010/12/11/pki-kerberos-and-smart-cards/

Active Directory Domain member: Maximum machine account password age

The following article descripes how to change the time range how often a computer account must change the password.

Link : http://technet.microsoft.com/en-us/library/cc781050%28WS.10%29.aspx

Export and import GPO from one domain to another

Here are the links to the scripts that can export and import GPO’s.

Windows 2003 with GPMC installed:
http://msdn.microsoft.com/en-us/library/aa814151(v=vs.85).aspx

Export:
BackupGPO.wsf TestPolicyGPO C:\GpoBackups /Comment: “Weekly backup”  /Domain:example.microsoft.com

Import:
ImportGPO.wsf C:\GpoBackups {73624CC9-E8F2-4F05-88D2-193FAE8773CE} NewGPO /CreateIfNeeded

Windows 2008 R2 Powershell:
http://technet.microsoft.com/en-us/library/ee461027.aspx

Export:
Backup-Gpo -Name TestGPO -Path C:\GpoBackups -Comment “Weekly Backup”

Import:
import-gpo -BackupGpoName TestGPO -TargetName TestGPO -path C:\GpoBackups