Exporting Password Last Set & password expire property

We got a requirement that a list of users is needed with password last set & those who has a property of password never expires we have run the below command : csvde -f  c:\aduser.csv -r  objectclass=user -l “Cn,objectclass,pwdlastset,useraccountcontrol” we imported the csv in excel , then the issue is converting the number into date…

Configuring PDC Windows Time to sync to External source

For configuring PDC to sync the clock with external reliable Time source Folowing registry keys needs to be edited: 1.  HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\Type Change  NT5DS to NTP 2. HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags Change 10 to 5 3. HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\NtpServer add the reliable time sources ,for example:  time.windows.com,0x1 tock.usno.navy.mil,0x1 4. Stop time service & start again net stop w32time net start w32time…

Outlook 2003 Count Folders

To count the number of mails in outlook folder wise , the below script can help you First go to tools –> macro –>security –>set it to low Then go to tools –> macro –>visuval basic editor add the below code: Dim objFile As Object Sub CountMessages()     Dim objFSO As Object, _         objStore…

Exchange 2007 Catch all from Hub Transport

One of our client has forwarded a requirement that they want to decomission their old domain but want that they want to catch mails from that domain to a single mailbox on outside client network. We have created an exchange server with hub/cas/mailbox server installed &  deployed the catch all agent developed by “Wilbert De…