*** Solution Auto-Upgrade Solution

Tuesday, January 06, 2015

PS:该项目为公司项目,我还是给他的名字屏蔽掉吧,这是我用PowerShell写的一个自动化升级工具,此为三部自动化工具的第一部。主要是用PowerShell自动完成下载,解压缩一直到部署solution到SharePoint这一过程。

​*** Solution Auto-Upgrade Script

​Home Page Module Demo:

注:目前只支持HomePage Module,如果修改里面的可替换链接和字符串分析和路径分析的话将可以用在***所有部署Solution的模块,以下是文档内容。

User Guide:

1. Right click the script and run the script with PowerShell.

2. Input the package address and press the "Enter".

3. "Save as" the file under the path "C:\ HomePageSolution" (already been created automatically).

Result:

The solution will be upgraded automatically in the SharePoint Farm.

Script:

<#ftp function reference#>

Function Invoke-FtpLogin{

Param(

[parameter(Mandatory = $true)]

      [string]$Site = "ftp://10.1.4.5/Monetary_Authority_of_Singapore/HomePageSolution/DailyBuild",

      [string]$User = "Anonymous",

      [string]$Pass = "",

      [int]$Port=21,

      [int]$TimeOut=3000,

      [int]$ReadWriteTimeout=10000

)

Write-Host "Get FTP site dir listing..."

# Do directory listing

$FTPreq = [System.Net.FtpWebRequest]::Create($Site)

$FTPreq.Timeout = $TimeOut                          # msec (default is infinite)

$FTPreq.ReadWriteTimeout = $ReadWriteTimeout        # msec (default is 300,000 - 5 mins)

$FTPreq.KeepAlive = $false                          # (default is enabled)

$FTPreq.Credentials = New-Object System.Net.NetworkCredential($User,$Pass)

$FTPreq.Method = [System.Net.WebRequestMethods+FTP]::ListDirectory

try

{

    $FTPres = $FTPreq.GetResponse()

    Write-Host "$User _ $Pass OK"

    $success = $true

#Write-Host $FTPres.StatusCode -nonewline

#Write-Host $FTPres.StatusDescription 

$FTPres.Close()

}

catch

{

   Write-Host "FAILED: $_"

   $success = $false

}

}

<#Unzip function reference#>

Function Unzip-File()

{

    param([string]$ZipFile,[string]$TargetFolder)

    #Make sure the file must be existed.

    if(!(Test-Path $TargetFolder))

    {

        mkdir $TargetFolder

    }

    $shellApp = New-Object -ComObject Shell.Application

    $files = $shellApp.NameSpace($ZipFile).Items()

    $shellApp.NameSpace($TargetFolder).CopyHere($files)

}

<#HomePage Solution Auto-Update#>

#If not admin, open the ps1 with admin again.

$currentWi = [Security.Principal.WindowsIdentity]::GetCurrent()

$currentWp = [Security.Principal.WindowsPrincipal]$currentWi

if( -not $currentWp.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))

{

 $oldPid = $pid

 $currentFile = $MyInvocation.MyCommand.Path

 Start-Process "$psHome\powershell.exe" -ArgumentList $currentFile -verb runas

 kill $oldPid

}

#Admin runs the script.

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

New-Item c:\HomePageSolution -ItemType directory -ErrorAction SilentlyContinue

$ie = new-object -com InternetExplorer.Application

<#User input the newest package address#>

$packageURL = Read-Host "Please input the URL of the HomePage package"

$timeURL = $packageURL.substring(75,10)

$pieces = $timeURL -Split "-"

$cake = -join $pieces

$fileURL = "APPS***HomePageSolution_1.0.0.6_" + $cake +".zip"

$downloadURL = $packageURL + "/" + $fileURL

$ie.Navigate2($downloadURL)

$ie.Visible = $true

<#Wait until the download has been finished.#>

do

{

 Start-Sleep -m 3000

}

until(Get-ChildItem c:\HomePageSolution|where{$_.name -like $fileURL})

<#Unzip the package after the download has been finished.#>

$UnzipPath = "c:\HomePageSolution\" + $fileURL

$goalPath = "c:\HomePageSolution\" + "APPS***HomePageSolution_1.0.0.6_" + $cake

Unzip-File -ZipFile $UnzipPath.tostring() -TargetFolder $goalPath.tostring()

$updatePath = $goalPath + "\" + "APPS***HomePage.wsp"

Update-SPSolution -Identity APPS***HomePage.wsp -LiteralPath $updatePath​ -GACDeployment

Read-Host "Press any key to quit"​

PowerShell实现基于SharePoint的网站HomePage Auto-Upgrade Solution的更多相关文章

  1. PowerShell实现基于SharePoint的网站HomePage Auto-Configure Solution

    Home Page Web Parts Auto-Configuration PS:该项目为公司项目,我还是给他的名字屏蔽掉吧,这是我用PowerShell写的一个自动化升级工具,此为三部自动化工具的 ...

  2. PowerShell实现基于SharePoint的网站HomePage Auto-Create Solution

    *** HomePage Auto-Create Solution Monday, January 12, 2015   PS:该项目为公司项目,我还是给他的名字屏蔽掉吧,这是我用PowerShell ...

  3. 实现一个基于 SharePoint 2013 的 Timecard 应用(上)

    在 SharePoint 2013 上面实现一个 Timecard 应用的想法来自一个真实的需求,而实现的方案在我脑海里面盘旋已经很久了,终于这几天准备安排点儿时间将它实现出来. “ We start ...

  4. 优化移动设备上SharePoint 2013网站

    优化移动设备上SharePoint 2013网站 本文由SPFarmer翻译自Waldek Mastykarz的文章 移动市场在持续的增长.在不远的将来,使用移动设备浏览站点将会超过电脑.为了保证用户 ...

  5. SharePoint 开启网站匿名访问图文详解

    SharePoint 开启网站匿名,需要先开启web application的匿名访问,然后开启site的匿名访问.特别的,site可以选择整个网站开启或者列表和库开启匿名,如果选择列表和库开启匿名, ...

  6. 基于jQuery的网站首页宽屏焦点图幻灯片

    今天给大家分享一款基于jQuery的网站首页宽屏焦点图幻灯片.这款焦点图适用浏览器:IE8.360.FireFox.Chrome.Safari.Opera.傲游.搜狗.世界之窗.效果图如下: 在线预览 ...

  7. 基于jQuery商城网站全屏图片切换代码

    基于jQuery商城网站全屏图片切换代码.这是一款商城网站全屏多张图片滑动切换代码.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div class="slid ...

  8. SharePoint 2013网站突然不能登录了。

    SharePoint 2013网站突然不能登录了,访问的时候,总是报错: The list has not shared with you.   原因: 原来我不知道什么时候把web applicat ...

  9. 在PowerShell中操作SharePoint对象

    1. 用PowerShell创建一个SharePoint内容对象创建一个自定义列表:$SPSite = New-Object Microsoft.SharePoint.SPSite("htt ...

随机推荐

  1. NFS安装及优化过程--centos6.6

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 ...

  2. cobbler启动问题

    [root@localhost ~]# cobblerTraceback (most recent call last): File "/usr/bin/cobbler", lin ...

  3. Android-- ArrayAdapter用法举例(转载)

    近期很多Android开发者来函表示对ArrayAdapter和BaseAdapter的区别不是很清楚,这里Android123简单说下他们的关系和用处,ArrayAdapter是从BaseAdapt ...

  4. 解决UEditor将div标签换成p标签的问题

    原文链接 将设计排版好的页面html代码上传到数据库,再读取出来的时候发现所有的div都被替换成了p标签. 解决方法: 首先在ueditor.all.js文件内搜索allowDivTransToP,找 ...

  5. TensorFlow实战

    TensorFlow实战:Chapter-1(TensorFlow介绍) TensorFlow实战:Chapter-2(TensorFlow入门) TensorFlow实战:Chapter-3(CNN ...

  6. GIF Brewery for Mac(录制 Gif 动图工具)安装

    1.软件简介    GIF Brewery 一款用于录制 Gif 动图等的工具. 2.资源列表 链接 提取密码 系统要求 软件语言 GIF Brewery for Mac v3.9.5 ltmf ma ...

  7. log4j(六)——log4j.properties简单配置样例说明

    一:测试环境与log4j(一)——为什么要使用log4j?一样,这里不再重述 二:老规矩,先来个栗子,然后再聊聊感受 (1)使用配文件的方式,是不是感觉非常的清爽,如果不在程序中读取配置文件就更加的清 ...

  8. @property的使用方法

    参看廖大神的博客 使用@property 有时间整理一下. python 没有私有成员变量的概念,通常在变量前面加单/双下划线来表示私有变量(非共有变量). 通常在python中,以单下划线开始的成员 ...

  9. python的内置下载器

    python有个内置下载器,有时候在内部提供文件下载很好用. 进入提供下载的目录 # ls abc.aaa chpw.py finance.py lsdir.py ping.py u2d-partia ...

  10. Python字符串与二进制串的相互转换

    python基础知识之字符编码与转换 - 机壳啦 - 博客园https://www.cnblogs.com/home979/p/7838244.html Python 字符串与二进制串的相互转换 - ...