How to Pre-Load a SharePoint Collection
After the IIS application pool was recycled or after the command iisreset was run, it takes usually more time to load the SharePoint site collection.
A nice work around to fix the waiting time is to run the following PowerShell script immediately after the reset event:
$url = "http://<your site collection url>" $wc = New-Object System.Net.WebClient $wc.Credentials = [System.Net.CredentialCache]::DefaultCredentials $wc.DownloadString($url)
Trackback from your site.