問題現象
Visual Studio在開發SharePoint的時候,釋出部署包後,首次開啟及除錯站點頁面的時候會非常的慢
解決方案
使用PowerShell指令碼,載入SharePoint外掛後遍歷所有的網站集,用以模擬使用者自動點選頁面
具體步驟
- 製作"64位版本"的PowerShell
由於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; } |
- 配置Visual Studio
$(ProjectDir)\PowerShell\PowerShell64.exe -File $(ProjectDir)\PowerShell\warmupAllSharePointSites.ps1 |