ADMT & Trust Setup
Setting up trust & password export server ADMT Steps
Setting up trust & password export server ADMT Steps
Want to know when is the password last set for the particular user? Want to know when the password will expire for the user? Simply log on to domain controller & issue net user command. For example: net user vikas User name vikas Full Name vikas Comment User’s comment Country code (null) Account active Yes…
Windows Server 2003 introduces the ability to restore deleted (“tombstoned”) objects. This simple command-line utility enumerates the deleted objects in a domain and gives you the option of restoring each one. Source code is based on sample code in the Microsoft Platform SDK http://technet.microsoft.com/en-us/sysinternals/bb963906.aspx Adrestore GUI: Main features: Browsing the tombstones Domain Controller targeting Can…
Here is a small script written by me for creating Dynamic Distribution Groups in bulk using powershell #import csv file (script.ps1 csv file) $data = import-csv $args[0] #create a vriable for holding condition $str = new-object System.Text.Stringbuilder foreach ($i in $data) { # reagd filter (office value from csv file) $dgp = $i.filter $str = {(office -eq…
Taken from Some other site but tested & verified by me in test domain. On Error Resume Next ‘ Account_Bulk_Unlock.vbs will search Active Directory for locked accounts and bulk unlock them. ‘ Also supports a /readonly switch which will only report on locked accounts and not unlock them. ‘ http://blog.techscrawl.com – 15 SEP 2008 –…