Calendar
Mai 2012
M D M D F S S
« Mrz    
 123456
78910111213
14151617181920
21222324252627
28293031  
Diesen Eintrag drucken

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

Diesen Eintrag drucken

Unable To Reconnect To Terminal Server In Application Mode

When you get the message  “The remote session was disconnected because there was an internal error in the remote computer’s licensing proctocol.” you can delete the registry key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSLicensing\Store\LICENSE000” on your client and try to connect again.

Link : http://support.microsoft.com/kb/555061/en-us

Diesen Eintrag drucken

How to use the EventCombMT utility to search event logs

Das Tool EventCombMT kann die EventLogs von mehreren Servern ( z.B. aller Domain Controller einer Domäne ) durchsuchen. Das kann sehr hilfreich sein, wenn z.B. danach sucht auf welchen Domain Controller von welchem Computer aus ein Account gesperrt wurde.

Link: http://support.microsoft.com/kb/824209/en-us ( search for account lockouts )
Download : http://www.microsoft.com/downloads/en/details.aspx?familyid=7af2e69c-91f3-4e63-8629-b999adde0b9e&displaylang=en

Vielen Dank für diesen Tipp an Jens K.