如何通過PowerShell在Visual Studio的Post-build中預熱SharePoint網站

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   os   io   strong   

問題現象

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

?

?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.