Archive for July, 2010
-
Jul 31, 2010
No CommentsHow to retrieve list of mailboxes sorted by size in Exchange 2010 using PowerShell
You have probably noticed that you can’t view and sort mailboxes by their size in Exchange 2010 using Exchange Management Console. To do this you need to use Exchange Management Shell. Run the following command to retrieve list of mailboxes sorted by size on a specific server: Get-MailboxStatistics -Server <Server Name> | Sort-Object -Property TotalItemSize...
-
Jul 27, 2010
No CommentsError: “You were not connected because a duplicate name exists on the network.”
If you want to create a CNAME alias for the machine and when trying to connect to a machine using an alias you get an error: "You were not connected because a duplicate name exists on the network." This is because the server is listening on it’s own name only by default. To resolve this...
-
Jul 26, 2010
2 CommentsHow to get servers’ DNS settings exported to CSV in Powershell
This script will let you query servers on your domain network for DNS server settings and return them in the CSV file. Script takes text file containing server names: server1 server2 server3 and returns CSV file with Hostname, DNS Servers, IP Addresses settings Get-Content .\servers.txt | ` ForEach-Object { Get-WMIObject Win32_NetworkAdapterConfiguration -Computername $_ | `...
-
Jul 25, 2010
No CommentsHyper-V Failover Cluster Live Migration fails – Event ID: 5120
When trying to Live Migrate virtual machine in Windows Server 2008 R2 Failover Cluster it fails with: Event ID: 5120 "Cluster Shared Volume ‘Volume1′ (’Cluster Disk 1′) is no longer available on this node because of ‘STATUS_BAD_NETWORK_PATH(c00000be)’. All I/O will temporarily be queued until a path to the volume is reestablished." Check if you have...
-
Jul 24, 2010
5 CommentsNokia e71 Mail for Exchange 3.0 – System error. Try again later.
Not so long ago I tried to upgrade Mail for Exchange 2.07 to Mail for Exchange 3.0 on Nokia e71 mobile phone and configure synchronisation with Exchange 2010. I wanted to synch email and calendar. No matter what I tried to do phone was coming back with dreaded “System error. Try again later.” message. It...
