Exchange 2010 – Exchange Web Services

To get the current Exchange Web Services Internal URL Get-WebServicesVirtualDirectory  -Identity dc-au-ex-02\EWS* | fl InternalURL To get the current Exchange Web Services External URL Get-WebServicesVirtualDirectory -Identity dc-au-ex-02\EWS* | fl ExternalURL To set the Exchange Web Services External URL Set-WebServicesVirtualDirectory -Identity dc-au-ex-02\EWS* -ExternalUrl https://www.contoso.com/EWS/exchange.asmx To set the Exchange Web Services Internal URL Set-WebServicesVirtualDirectory -Identity dc-au-ex-02\EWS* –InternalUrl https://www.contoso.com/EWS/exchange.asmx

Configure Windows Time for the domain

On the Domain Controller which has the PDC Emulator FSMO role – by default this the first installed DC in the domain – this is the time source for all domain members. All other DC’s sync with the PDC Emulator then member servers and workstations sync with an available DC, this results in the same time for all domain members. There are different Stratum levels which apply to servers and devices, which distinguishes them from each other. Taken from this article, the following gives a brief rundown on the different levels. Stratum 0 These are devices such as atomic clocks,…

Mobile ActiveSync devices loose connection to Exchange 2010

Post migration you might start having issues with mobile devices using ActiveSync not synchronising correctly with Exchange Server 2010. It might work for a couple of days and then stop working. During this time users don’t receive any email to their mobile devices, but they can send email. You might also get an error on the iPhone Cannot Get Mail, The connection to the server failed. You might be using Quest Migration Manager for Exchange v8.7, and in the mail source and target agent logs you might see entries similar to this. Source log: 5/27/2011 10:01:55 AM  MailKernel::ExportSource           Informational    2049      …

Add network shares and locations to the Windows 7 Library

Use the mklink command Create a temp folder on your hard drive i.e. c:\shares (this won’t store any data, only links to other network shares and locations) Create another folder in the above folder. i.e. c:\shares\pictures Link the Pictures Library to this folder Delete the folder pictures that you just created before (c:\shares\pictures) Use the mklink in an elevated command prompt to make a symbolic link. Name the link the same as the folder you created above. i.e – mklink /d c:\shares\pictures \\192.168.1.6\volume_1\pictures Done.

Enable Jumbo Frames for VMware vSphere ESXi 4.x

Logon to the vSphere client > Inventory > Configuration > Networking > You will most likely have one Virtual Switch already configured. The aim here is to add Jumbo Frames to a new VMkernel Port by adding a new VMkernel port with Jumbo Frames. As your VMkernel port would have IP addresses attached to it for the management network (your connection to the host), you will need to create a brand new Virtual Switch first that has no VMkernel port added to it. Call this vSwitch1. You will need to do these next steps from the Command Line Interface on…

Windows 7 Media Center Live TV pause/skip causes blank/black screen and no sound

Delete the two following reg keys and reboot your machine. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media Center\Extensibility\Entry Points\{7e7a8710-9e4a-40a3-824a-7b0baf38abcf} HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Media Center\Extensibility\Applications\{a0cd8951-e5b6-4662-9c9c-d56c5b38ca59}

Exchange 2007 and Exchange 2010 admin user mailboxes

Do you ever find that for an admin account in Active Directory, when you tick the box include inheritable permissions from this object’s parent in advanced security, this is un-ticked later? Read on. This causes issues with Exchange 2007/2010 and more specifically ActiveSync, OWA and Outlook Anywhere. For new admin accounts e.g. migrated user accounts that have the include inheritable permissions from this object’s parent box un-ticked can not connect to their mailboxes under these conditions. Once the box is manually ticked in Active Directory, admin users should be able to connect as normal to their mailboxes. But you need…

Hyper-V Cluster network and resource configuration

Preferred Networks and Metrics In Hyper-V, when you enable Cluster Shared Volumes, the failover cluster automatically chooses the network that appears to be the best for CSV communication. However, you can designate the network by using the cluster network property, Metric. The lowest Metric value designates the network for CSV and internal cluster communication. The second lowest value designates the network for live migration, if live migration is used (you can also designate the network for live migration by using the failover cluster snap-in). Another property, called AutoMetric, uses true and false values to track whether Metric is being controlled…

Exclude servers from SCCM client push installation

The following will exclude servers from SCCM automatic discovery only, this exclusion registry entry does not apply to the Client Push Installation Wizard. This is the client push installation log file located on the SCCM site server: %ProgramFiles(x86)%\Microsoft Configuration Manager\Logs\ccm.log When checking this log file, you might notice constant attempts to install the SCCM agent on machines that are not needed to be included in your SCCM environment, for example network appliances. If you must exclude any computers or servers from Client Push Installation, you can specify them by using the following REG_MULTI_SZ registry value on the SMS site server….