$songs= Get-ChildItem "E:\Tamil & Tamil\Ilaiyaraja - Hits Songs" -Recurse | where-object {$_.PSIsContainer -eq $false}
$songs | foreach ($_) {copy $_.fullname "E:\Tamil & Tamil\Ilaiyaraja - Hits Songs\IllaiyarajaComplete"}
Sunday, May 30, 2010
Thursday, May 20, 2010
Exchange 2010 Update Rollups
Read more information about fixes and improvements included at the below URL
Rollup 1
http://msexchangeteam.com/archive/2009/12/09/453485.aspx
Rollup 2
http://msexchangeteam.com/archive/2010/03/05/454155.aspx
Rollup 2
http://msexchangeteam.com/archive/2010/03/19/454335.aspx
Rollup 1
http://msexchangeteam.com/archive/2009/12/09/453485.aspx
Rollup 2
http://msexchangeteam.com/archive/2010/03/05/454155.aspx
Rollup 2
http://msexchangeteam.com/archive/2010/03/19/454335.aspx
Wednesday, May 19, 2010
Installing Exchange 2010 rollups on DAG servers
Great post on installing rollups on DAG
http://www.ucblogs.net/blogs/exchange/archive/2009/12/15/Installing-Exchange-2010-rollups-on-DAG-servers.aspx
http://www.ucblogs.net/blogs/exchange/archive/2009/12/15/Installing-Exchange-2010-rollups-on-DAG-servers.aspx
Monday, May 10, 2010
Exchange Server 2010 - Database Portability
Mounting Mailbox Database on Alternate Servers - Database Portability
Database portability is a feature that enables Exchange Server 2010 mailbox database to be moved to or mounted on any other mailbox server in the same organization.
Steps:
Source database name: movedatabase
Target database name: movedatabase1
1. Make sure to commit any uncommitted transaction log files to the source database.
Dismount the source database (in our case it is movedatabase)
Command: dismount-database "movedatabase"
Command to commit transaction logs: eseutil /r Enn
Note: To determine the logfile prefix (Enn): get-mailboxdatabase "movedatabase" fl logfileprefix
2. Create a new mailbox database on the target server
Command: New-MailboxDatabase -Name "movedatabase1" -Server Exch2010 -Edbfilepath c:\mdbdata\movedatabase\movedatabase.edb -Logfilepath c:\mdbdata\movedatabase
3. Do not mount the database, just enable the database to be overwritten
Command: Set-MailboxDatabase -identity "movedatabase1" -AllowFileRestore $true
4. Move the database files manually from source server to target (.edb file, log files and Exchange Search Catalog)
5. Mount the target database (movedatabase1)
Command: Mount-Database "movedatabase1"
6. Now you must modify the user account settings point to the mailbox on the new mailbox server. Command: Get-Mailbox -database "movedatabase" where-object {$_.objectclass -NotMatch '(SystemAttendantMailbox ExOleDbSystemMailbox)'} Set-Mailbox -database "movedatabase1"
Reference: http://technet.microsoft.com/en-us/library/dd876926.aspx
Database portability is a feature that enables Exchange Server 2010 mailbox database to be moved to or mounted on any other mailbox server in the same organization.
Steps:
Source database name: movedatabase
Target database name: movedatabase1
1. Make sure to commit any uncommitted transaction log files to the source database.
Dismount the source database (in our case it is movedatabase)
Command: dismount-database "movedatabase"
Command to commit transaction logs: eseutil /r Enn
Note: To determine the logfile prefix (Enn): get-mailboxdatabase "movedatabase" fl logfileprefix
2. Create a new mailbox database on the target server
Command: New-MailboxDatabase -Name "movedatabase1" -Server Exch2010 -Edbfilepath c:\mdbdata\movedatabase\movedatabase.edb -Logfilepath c:\mdbdata\movedatabase
3. Do not mount the database, just enable the database to be overwritten
Command: Set-MailboxDatabase -identity "movedatabase1" -AllowFileRestore $true
4. Move the database files manually from source server to target (.edb file, log files and Exchange Search Catalog)
5. Mount the target database (movedatabase1)
Command: Mount-Database "movedatabase1"
6. Now you must modify the user account settings point to the mailbox on the new mailbox server. Command: Get-Mailbox -database "movedatabase" where-object {$_.objectclass -NotMatch '(SystemAttendantMailbox ExOleDbSystemMailbox)'} Set-Mailbox -database "movedatabase1"
Reference: http://technet.microsoft.com/en-us/library/dd876926.aspx
Sunday, May 9, 2010
Exchange VSS Writer Error
The consistency check for the component '27303ddc-08f7-4007-ac1f-13a07ed65d30'\'Microsoft Exchange Server\Microsoft Information Store\EXCH2010' has failed. The application 'Exchange' will not be available in the backup created at '2010-05-09T17:17:20.601180800Z'. Review the event details for information about consistency check issues.
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\v14\Replay\Parameters
Create a DWORD "EnableVSSWriter" with a value 0


Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\v14\Replay\Parameters
Create a DWORD "EnableVSSWriter" with a value 0



Saturday, May 8, 2010
Sending mail from Exchange Management Shell in Exchange Server 2010.
Syntax for Send-MailMessage:

Administrator are not allowed to send mail by default for security reasons.


Ref:
http://technet.microsoft.com/en-us/library/dd347693.aspx
http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/using-send-mail-feature-exchange-server-2010.html

Administrator are not allowed to send mail by default for security reasons.


Ref:
http://technet.microsoft.com/en-us/library/dd347693.aspx
http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/using-send-mail-feature-exchange-server-2010.html
Subscribe to:
Posts (Atom)