Saturday, August 17, 2013

Configuring Exchange 2013 Virtual Directory - Powershell 



Disabling IPV6 in Windows Server 2008

Reply from ::1: time<1ms h2="" nbsp="">Find the step by step screenshot on how to disable IPV6 in Windows Server 2008




Verifying Exchange Web Service


To verify type the url https://servername/ews/services.wsdl

It will result to display below page that confirms Exchange Web Service works perfect in our setup

Verifying Autodiscover in Exchange server


To verify type the url http://autodiscover.domainname/autodiscover.xml 

It will result to display below page that confirms auto-discover works perfect in our setup


Tuesday, August 13, 2013

Powershell Output display the output as (dot)....

Powershell Output display the output as (dot)....
By default the output of the powershell command can display upto 16 character which is hardcoded in the Exchange.ps1 file. You can verify them by running the following command in the exchange mangement shell
[PS] C:\>$FormatEnumerationLimit

Solution:
This can be overcome setting the $FormatEnumerationLimit value to -1 which is unlimited
[PS] C:\>$FormatEnumerationLimit =-1

Ref: http://blogs.technet.com/b/heyscriptingguy/archive/2011/11/20/change-a-powershell-preference-variable-to-reveal-hidden-data.aspx

The blog is written to the share the knowledge mainly on Microsoft Exchange Server and other Microsoft product that experienced on day-to-day life.