Wednesday, October 2, 2013

Step by step configuring Cisco VPN in Windows 8 Enterprise

Step by step configuring Cisco VPN in Windows 8 Enterprise
 Change the value as per the screenshot shown below

Now try to connect the VPN it will get connect. When connecting to RDP you will unable to connect them.
Enable logging in the Cisco VPN client. You will get the log as shown in the screenshot

3:26:59.572  10/02/13  Sev=Warning/2    CVPND/0xE3400013
AddRoute failed to add a route with metric of 100: code 160
                Destination         10.0.0.0
                Netmask              255.0.0.0
                Gateway              10.203.133.193
                Interface             10.203.133.250
  Open the"command prompt with "Run as Administrator" to add the below routing table in your computer
route add 10.0.0.0 mask 255.0.0.0 10.203.133.193 metric 100

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.