SharePoint warmup scripts are giving timeout error on farm environment
Hi Everyone, I'm working on warm-up scripts using both power shell and SPWakeup tool but I'm getting "The Operation has timed out" error on server Farm environment but it is working on Sandbox "Standalone" environment. My Environment is 1. Windows Server 2008 R2 2. 2 WFEs, 1 Application server and SQL server 2008 R2 I have followed few sites for warm up scripts (Referred them in my blog http://sumansharepoint.blogspot.com/2011/08/warm-up-sharepoint-sites-after-iis-and.html) and ran against standalone and farm environment but same error I'm getting in farm environment. Could any one let me know do we have any challenges with Warm-up scripts in farm environment? I'm executing below script in the Farm Add-PSSnapin Microsoft.SharePoint.PowerShell; function Get-WebPage([string]$url) { $wc = new-object net.webclient; $wc.credentials = [System.Net.CredentialCache]::DefaultCredentials; $pageContents = $wc.DownloadString($url); $wc.Dispose(); return $pageContents; } Get-SPAlternateUrl -Zone Default | foreach-object { write-host $_.IncomingUrl; $html = Get-WebPage -url $_.IncomingUrl; } Thanks, Suman Hasnabad
September 12th, 2011 3:02am

> My Environment is > 1. Windows Server 2008 R2 > 2. 2 WFEs, 1 Application server and SQL server 2008 R2 --------------------------------------- But which SharePoint product ? ModeratorSP 2010 "FAQ" (mainly useful links): http://wssv4faq.mindsharp.com/default.aspx WSS3/MOSS FAQ (FAQ and Links) http://wssv3faq.mindsharp.com/default.aspx Both also have links to extensive book lists and to (free) on-line chapters
Free Windows Admin Tool Kit Click here and download it now
September 12th, 2011 3:23am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics