Categories
News Software

Internet Explorer 11 Developer Preview: Windows 7 and Windows Server 2008 R2

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 […]

Categories
Software Technical

Unresolved Error: Server 2012 – Event 1000, Application Error

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 […]

Categories
How-To Software Technical

Exchange 2013 Mailbox Move “FailedOther”

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 […]

Categories
How-To Software Technical

Windows 8: fixing trust relationship issues

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 […]

Categories
How-To Software Technical

Exchange 2013: Migrating Mailboxes via PowerShell

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 […]

Categories
How-To Software Technical

Exchange 2013: Get Mailbox Move Request Statistics

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 […]