35 pts.
 Writing a script to delete the mail box automaticaly which has not been used in few days.
I am working in a company where many of the users have left the company and are not using there email id. Can u please help me in writing a script to delete the mailbox which have not been used by the users for few days in exchange server 2003.

Software/Hardware used:
ASKED: September 14, 2008  1:07 PM
UPDATED: September 15, 2008  1:04 PM

Answer Wiki:
If you know the exact directory location, you can simply delete it. Removing the mail profile will delete the mailbox. Write a simple batch file: <pre>echo off rem description: deletes mailbox RD /s "FILE PATH" </pre> Or something similar...like del instead of RD (which, with /s will delete the dir and all subdirectories). Hope this helps! -Schmidtw
Last Wiki Answer Submitted:  September 14, 2008  4:30 pm  by  Schmidtw   11,205 pts.
All Answer Wiki Contributors:  Schmidtw   11,205 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _