Let’s fall in love with Windows 7 all over again, with Internet Explorer 11. Internet Explorer 11 Developer Preview is fast and fluid, and lets your websites shine and perform just like native applications on your PC. Highlights: Internet Explorer 11. Fast and fluid for Windows 7. Fast: Internet Explorer 11 harnesses the untapped power of […]
Category: Software
I came across an issues with my Windows Server 2012 / Exchange 2013 RU2 Server. After an unexpected shutdown message I was able to find out the faulting application which caused the reboot was LSASS. There was an event message in the system event log of: The process wininit.exe has initiated the restart of computer […]
After my last round of mailbox migrations from Exchange 2010 to Exchange 2013 RU2 I ran into issues with a few mailboxes that were left in the state “FailedOther” at 95% completed. I attempted to resume / restart the mailbox move with: Get-MoveRequest | where{$_.Status -eq “FailedOther”} | Resume-MoveRequest without success. At this point I was […]
Dear Jermal, here is some info that you may find useful in the future. I hope that you share with your friends, coworkers and the readers of your blog. From time to time I have found myself having to reset the computer account of a workstation that was left offline. In most cases this workstation […]
Exchange 2013 has new and impressive administration center that allows you to handle tasks such as mailbox moves. I prefer using the Exchange Management Shell for such a task. Using the following command you can move all mailboxes within a database to your new mailbox database: Get-Mailbox -Database “Source-Database” | New-MoveRequest -TargetDatabase “Destination-Database” To get info […]
After some weekend Exchange mailbox migrations I wanted to check the status of mailboxes. This is where I use the Get-MoveRequestStatistics for the all mailboxes or database. Issuing the following command: Get-MoveRequestStatistics -MoveRequestQueue “*databasename*” will return to you the status of all the mailboxes on that data store. This is good; but what if you […]