-
By wmoore I decided to use the exchange powershell and Excel 2007 to accomplish this task and below are the two scripts I used to accomplish it. First, the Exchange 2007 Powershell script:. #create the output file #$file = new-item -itemtype file ... Read More
-
Hi, Below powershell can help to apply users full access rights and and SendAs permission to the mailbox for the given input CSV file Format ofthe CSV something like this UserMailbox,User Krishna,Domain/Krishna -----------------------------------------------------------------------------------------...
Posted to
Exchange
(Forum)
by
Krishna
on
05-27-2009
Filed under: PowerShell, Exchange 2007, send as, Mailbox permission
-
http://smtpport25.wordpress.com/2009/06/02/exchange-powershell-to-get-list-of-database-and-their-last-fullbackup-time-in-exchange-2007-servers/ Exchange Powershell to get list of Database and their last fullbackup time in Exchange 2007 servers Get-MailboxDatabase -status | Select Servername,Identity...
Posted to
Exchange
(Forum)
by
Krishna
on
06-02-2009
Filed under: Exchange 2007, Database, Lastfull backup time
-
http://smtpport25.wordpress.com/2009/06/03/powershell-to-create-new-mailboxes-in-the-smallest-database/ Loadbalance of the Exchange Database is very important. We need to make sure that database is not dumped with all the mailbox and once database gets big then move maiboxes to the other database. We...
Posted to
Exchange
(Forum)
by
Krishna
on
06-03-2009
Filed under: Exchange 2007, New Mailbox, smallest Database
-
By Wil Viewing the current time-out values can be done by running the following PowerShell commands: “This is a Public Computer” setting get-ItemProperty 'HKLM:SYSTEMCurrentControlSetServicesMSExchange OWA' -name PublicTimeout ... Read More
Posted to
Exchange
(Forum)
by
ps2
on
06-04-2009
Filed under: Exchange 2007, OWA Time-Out Values
-
http://smtpport25.wordpress.com/2009/06/08/powershell-to-create-mass-mailboxes-in-exchange-2007-from-csv-input-file/ Powershell to create the Mass mailboxes in Exchange 2007 orginisation from CSV input file. Below is the CSV file format which need to have the following header and details in the below...
-
http://smtpport25.wordpress.com/2009/06/09/deleting-disconnected-mailboxes-from-exchange-2007/ By default deleted mailbox retention policy is 30 days and after that deleted mailboxes will be disconnected state for next 30 before its actually gets deleted off the store Below powershell to get the list...
Posted to
Exchange
(Forum)
by
Krishna
on
06-09-2009
Filed under: PowerShell, Exchange 2007, Deleted Disconnected mailbox
-
Modifying Mailbox Rentention policy on Exchange 2007 Server Stores. By default mailbox retention policy of Exchagne 2007 Store is 30 days. you can modify this as per the requirement. Below command helps to modify all the store Get-Mailboxdatabase | Set-MailboxDatabase -MailboxRetention 10 Below command...
-
Powershell to customize online maintenance schedule. During this interval, tasks like dumpster cleanup (the deletion of messages that have passed their deleted item retention date), deleted mailbox cleanup, and online defragmentation (database objects that are no longer being used are detected and removed...
-
If you wanted to pull out of user account who has specific email address in the mailboxes in the Orginisation then below script will help you to get the list Get-Mailbox -ResultSize Unlimited | select DisplayName, Alias |export-csv C:\stats.csv $csv = Import-csv -path "C:\stats.csv" foreach...
Posted to
Exchange
(Forum)
by
Krishna
on
07-22-2009
Filed under: PowerShell, Exchange 2007, Powershell to pull out user with specific email address in them