標籤:style blog http color 使用 os io strong
問題現象
Visual Studio在開發SharePoint的時候,發布部署套件後,首次開啟及調試網站頁面的時候會非常的慢
?
解決方案
使用PowerShell指令碼,載入SharePoint外掛程式後遍曆所有的網站集合,用以類比使用者自動點擊頁面
?
具體步驟
由於SharePoint啟動並執行是64位的PowerShell,而Visual Studio的Post-build event中預設啟動並執行32位的PowerShell,需要找到一個變通的方式
?
建立一個Console程式,其中代碼如下
using System; using System.Diagnostics; ? namespace ConsoleApplicationExample { class Program { static int Main(string[] args) { Process process = Process.Start("PowerShell.exe", String.Join(" ", args)); process.WaitForExit(); return process.ExitCode; } } } |
?
同時找到VS目錄下64位的CMD,運行如下命令產生PowerShell的64位版本
csc Path to cs file\Program.cs /platform:x64 |
?
到目錄c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC中找到Program.exe,並重新命名為PowerShell64.exe
?
機器上運行PowerShell需要開啟許可權,運行以下指令碼(注意:需要開啟64位的許可權)
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe %SystemRoot%\sysWOW64\WindowsPowerShell\v1.0\powershell.exe |
?
Set-ExecutionPolicy Unrestricted |
?
在PowerShell中操作SharePoint對象(遍曆網站)
?
if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null ) { 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; } |
?
?
$(ProjectDir)\PowerShell\PowerShell64.exe -File $(ProjectDir)\PowerShell\warmupAllSharePointSites.ps1 |
?
?