Speeding up StoreFront Services 2.x
Posted by admin | Posted in Technical | Posted on 25-11-2013-05-2008
0
So one thing I find getting asked a lot about is how to speed up StoreFront Services. I have found a lot of articles on this and I have found that some work in some environments and some don’t. I have seen the Synergy Session Advanced best practices for migrating from Web Interface to StoreFront. In this session there are a couple of things that where said to speed up StoreFront to get it close to it predecessor. The first change doesn’t get much of a result as the second but I have seen it help. This change is to turn on NetBIOS name resolution. Most everyone have gotten off of NetBIOS and have gone to a fully DNS environment.
- Log into storefront server
- Go to Run
- Type ncpa.cpl
- Right Click on the NIC that Storefront uses and go to properties
- Click on Internet Protocol Version 4 (TCP/IPv4) and then click on properties
- Click on advanced
- Click on WINS tab
- Click on Disable NetBIOS over TCP/IP
- Click ok all the way out
The next thing that really speeds up speeds up StoreFront and also Web Interface is turning off CRL checking in the .NET aspnet.conf file. First thing you need to do is to detirming what version of .NET you are using for your application pools. By Default StoreFront uses v 2.0 of .NET on 2008 R2 and v4.0 of .NET on Server 2012 and Server 2012 R2. To verify this you can go into Internet Information Services and check for yourself.
- Login to the StoreFront Server
- Click on start and go to run
- Type inetmgr
- Expand your Web Server and go to Application Pools. The Application Pools you are concerned about for StoreFront are… Citrix Delivery Services Authentication, Citrix Delivery Services Resources, and Citrix Receiver for Web.
Now we know what version of .NET is being used we can now disabled CRL checking.
- Browse out to the following files C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet.config & C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet.config
- The following line needs to be added to both files
<generatePublisherEvidence enabled="false"/>
- After the files are both updated reset IIS and enjoy the StoreFront Speed up.