Home Page Web Parts Auto-Configuration

PS:该项目为公司项目,我还是给他的名字屏蔽掉吧,这是我用PowerShell写的一个自动化升级工具,此为三部自动化工具的第三部,是用PowerShell配置SharePoint页面的web parts' settings以及生成相关的SharePoint数据以支持web part的正常工作。

Prerequisite:

本次内容为*** Home Page自动部署三步中最后一步,将完成*** HomePage主Jira上“HomePage各web part配置文档”中第九步之后的所有关于配置web part的相关内容。

General:

自动配置My Documents web part settings

自动配置Site Management web part settings

自动配置My Tasks web part settings

自动创建Scanned Documents所需要的Task List并命名为“***Tasks”

自动配置Administration web part settings

自动配置Quick Links web part settings

自动创建Quick Links web part所关联的Links List

自动生成Title,Description,Order,RedirectURL,RedirectMethod五个column

自动添加五种column到All Items view下

*由于Workflow属用户第三方Service,所以本次配置中并不包含Workflow相关。

Method:Right click and run it with PowerShell.

#This third solution should be used after the second solution which keeps a name of "HomePage Auto-Create"

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

Write-Host "Initializing..."

$Time = Get-Date

$Today = $Time.year.toString() + "." + $Time.month.toString() + "." + ($Time.day-1).toString()

$siteURL = "https://teamsite.migration.net/sites/" + $Today + ".HomePage"

$HomePageURL = "https://teamsite.migration.net/sites/" + $Today + ".HomePage/Pages/***HomePage.aspx"

$HomePageSiteCollection = Get-SPSite -Identity $siteURL

$HomePageWeb = $HomePageSiteCollection.rootweb

$HomePagePubWeb = [Microsoft.SharePoint.Publishing.PublishingWeb]::GetPublishingWeb($HomePageWeb)

$HomePage = $HomePagePubWeb.GetPublishingPage($HomePageURL)

Write-Host "Begin to configure the HomePage web parts..."

$HomePage.CheckOut()

$HomePageWeb.AllowUnsafeUpdates = $true

$limitedWebPartManager = $HomePage.ListItem.File.GetLimitedWebPartManager([System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)

#Modify the configuration information of the My Documents web part.

Write-Host "Begin to configure the My Documents web part..."

$MyDocumentsWebPart = $limitedWebPartManager.WebParts|where{$_.DisplayTitle -like '*My Documents*'}

$MyDocumentsWebPart.SearchServiceName = "SharePoint_Search_Proxy_***"

$MyDocumentsWebPart.DataBaseName = "DocAve6_ReportDB_***"

$MyDocumentsWebPart.ServerName = "***DB"

$MyDocumentsWebPart.Description = "Document Management Web Part"

$MyDocumentsWebPart.ChromeType = "TitleOnly"

#Modify the configuration information of the Site Management web part.

Write-Host "Begin to configure the Site Management web part..."

$SiteManagementWebPart = $limitedWebPartManager.WebParts|where{$_.DisplayTitle -like '*Site Management*'}

$SiteManagementWebPart.DataBaseName = "DocAve6_ReportDB_***"

$SiteManagementWebPart.ServerName = "***DB"

$SiteManagementWebPart.SearchServiceName = "SharePoint_Search_Proxy_***"

$SiteManagementWebPart.ChromeType = "TitleOnly"

#Modify the configuration information of the My Tasks web part.

Write-Host "Begin to configure the My Tasks web part..."

$MyTasksWebPart = $limitedWebPartManager.WebParts|where{$_.DisplayTitle -like '*Task*'}

$MyTasksWebPart.ChromeType = "TitleOnly"

#Create the task list

#$HomePageWeb.ListTemplates|where{$_.name -like 'tasks'}

Write-Host "Begin to create the tasks list with the name of '***Tasks' to work for the scanned documents module..."

$listTemplate = [Microsoft.SharePoint.SPListTemplateType]::Tasks

$ListCollection = $HomePageWeb.Lists

$ListCollection.Add("***Tasks","Work for *** HomePage My Tasks web part.",$listTemplate)

$ListCollection.Update()

$TasksList = $HomePageWeb.Lists|where{$_.title -like '***Tasks'}

$TasksList.OnQuickLaunch = "True"

$TasksList.Update()

#Scanned Documents settings

Write-Host "Begin to configure the Scanned Documents module..."

$MyTasksWebPart.ScanDocument_Title = "Scanned Documents"

$MyTasksWebPart.ScanDocument_LinkScript = "#"

#Service Catalogue settings

Write-Host "Begin to configure the Service Catalogue module..."

$MyTasksWebPart.ServiceCatalogue_Title = "Service Catalogue"

$MyTasksWebPart.ServiceCatalogue_Link = "#"

#Workflow settings

Write-Host "Begin to configure the Workflow module(Only basic)..."

$MyTasksWebPart.Workflow_Title = "Workflow"

$MyTasksWebPart.Workflow_Link = "#"

#SS settings

Write-Host "Begin to configure the Target for the scanned documents module..."

$MyTasksWebPart.SS_TargetWebUrl = $siteURL

$MyTasksWebPart.SS_TargetListName = "***Tasks"

$MyTasksWebPart.SS_RequestRootUrl_SC = "https://***damanager.migration.net:15999"

#Create the Links list

#$HomePageWeb.ListTemplates|where{$_.name -like 'tasks'}

Write-Host "Begin to create the Links list to work for the Quick Links web part..."

$listTemplate = $HomePageWeb.ListTemplates|where{$_.name -like 'custom list'}

$ListCollection = $HomePageWeb.Lists

$ListCollection.Add("Links","Work for *** HomePage Quick Links web part.",$listTemplate)

$ListCollection.Update()

$LinksList = $HomePageWeb.Lists|where{$_.title -like 'Links'}

Write-Host "Add the quick launch for Links list..."

$LinksList.OnQuickLaunch = "True"

#Create column fields to the list

Write-Host "Create the fields..."

$TextFieldType = [Microsoft.SharePoint.SPFieldType]::Text

$NumberFieldType = [Microsoft.SharePoint.SPFieldType]::Number

$ChoiceFieldType = [Microsoft.SharePoint.SPFieldType]::Choice

#Add choices under the choice field

$choices = New-Object System.Collections.Specialized.StringCollection

$choices.Add("_blank")

$choices.Add("_self")

#Add the fields to the Links List

Write-Host "Add the fields to the Links list..."

$DescriptionField = $LinksList.Fields.Add("Description",$TextFieldType,$false)

$OrderField = $LinksList.Fields.Add("Order",$NumberFieldType,$false)

$RedirectURLField = $LinksList.Fields.Add("RedirectURL",$TextFieldType,$false)

$RedirectMethodField = $LinksList.Fields.Add("RedirectMethod",$ChoiceFieldType,$false,$false,$choices)

#Add the fields to the Links List's default view

Write-Host "Add the fields to the All Items view..."

$LinksDefaultView = $LinksList.views|where{$_.views -like 'All Items'}

$LinksDefaultView.ViewFields.Add($DescriptionField)

$LinksDefaultView.ViewFields.Add($OrderField)

$LinksDefaultView.ViewFields.Add($RedirectURLField)

$LinksDefaultView.ViewFields.Add($RedirectMethodField)

$LinksDefaultView.Update()

#Add the "Try to find a site?" item to the Links list

Write-Host "Add the 'Try to find a site?' item to the Links list..."

$DefaultListItem = $LinksList.AddItem()

$DefaultListItem["Title"] = "Try to find a site?"

$DefaultListItem["Description"] = "FNA(Financial News Alert)"

$DefaultListItem["Order"] = 1

$DefaultListItem["RedirectURL"] = "https://***damanager.migration.net:15999/SiteCollectionDirectoryReport/ViewPublishReports?SPHostUrl=https://teamsite.migration.net/sites/ForHomePageTesting/"

$DefaultListItem["RedirectMethod"] = "_self"

$DefaultListItem.Update()

$LinksList.Update()

#Modify the configuration information of the Quick Links web part.

Write-Host "Begin to configure the Quick Links web part..."

$QuickLinksWebPart = $limitedWebPartManager.WebParts|where{$_.DisplayTitle -like '*Quick Links*'}

$QuickLinksWebPart.ChromeType = "TitleOnly"

#Modify the configuration information of the Administration web part.

Write-Host "Begin to configure the Administration web part..."

$AdministrationWebPart = $limitedWebPartManager.WebParts|where{$_.DisplayTitle -like '*Administration*'}

$AdministrationWebPart.ChromeType = "None"

$AdministrationWebPart.DesktopActivityLogURL = "https://teamsite.migration.net/sites/activitylog test"

$AdministrationWebPart.TaxonomyManagementURL = "https://teamsite.migration.net/sites/Taxonomy%20Case/_layouts/15/***TaxonomyManagement/TaxonomyManagement.aspx"

$AdministrationWebPart.CollaborationDashboardURL = "https://teamsite.migration.net/sites/ForHomePageTesting/SitePages/collabration.aspx"

$AdministrationWebPart.ServiceCatalogueAdministrationURL = "https://***damanager.migration.net:15999"

$AdministrationWebPart.DocAveURL = "https://***damanager.migration.net:14999"

#$AdministrationWebPart.WorkflowWSUrl

#$AdministrationWebPart.WorkflowWSMethod

#$AdministrationWebPart.WorkflowJUMPUrl

#Save the changes to the web parts

Write-Host "Begin to save all the configurations..."

$limitedWebPartManager.SaveChanges($MyDocumentsWebPart)

$limitedWebPartManager.SaveChanges($SiteManagementWebPart)

$limitedWebPartManager.SaveChanges($MyTasksWebPart)

$limitedWebPartManager.SaveChanges($QuickLinksWebPart)

$limitedWebPartManager.SaveChanges($AdministrationWebPart)

$HomePage.Update()

$HomePage.CheckIn("")

$HomePage.ListItem.File.Publish("")

$HomePageWeb.Dispose()

Write-Host "The HomePage has been configured successfully!"

Read-Host "Press any key to continue"

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

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

    *** Solution Auto-Upgrade Solution Tuesday, January 06, 2015 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. servlet实现文件上传,预览,下载和删除

      一.准备工作 1.1 文件上传插件:uploadify: 1.2 文件上传所需jar包:commons-fileupload-1.3.1.jar和commons-io-2.2.jar 1.3 将数 ...

  2. Oracle 去重查询

      Oracle 去重查询 CreateTime--2018年2月28日15:38:45 Author:Marydon (一)使用distinct --查询指定区间内表停诊字段的值 SELECT DI ...

  3. properties转yml

    分享一个在线properties 转 yml工具,也支持yml转properteis: http://toyaml.com/ 域名非常好记:to yaml .com yml,即yaml文本格式文件的后 ...

  4. HTTP1.1协议请求方面参数

    请求信息 GET / HTTP/1.1                                              ->请求行 Accept: */* Accept-Languag ...

  5. python函数中把列表(list)当参数时的"入坑"与"出坑"

    在Python函数中,传递的参数如果默认有一个为 列表(list),那么就要注意了,此处有坑!! 入坑 def f(x,li=[]): for i in range(x): li.append(i*i ...

  6. pandas 的数据结构Series与DataFrame

    pandas中有两个主要的数据结构:Series和DataFrame. [Series] Series是一个一维的类似的数组对象,它包含一个数组数据(任何numpy数据类型)和一个与数组关联的索引. ...

  7. Android中实现下拉刷新

    需求:项目中的消息列表界面要求实现类似sina微博的下拉刷新: 思路:一般的消息列表为ListView类型,将list加载到adapter中,再将adapter加载到 ListView中,从而实现消息 ...

  8. 图解最小生成树 - 普里姆(Prim)算法

    我们在图的定义中说过,带有权值的图就是网结构.一个连通图的生成树是一个极小的连通子图,它含有图中全部的顶点,但只有足以构成一棵树的n-1条边.所谓的最小成本,就是n个顶点,用n-1条边把一个连通图连接 ...

  9. Shell基础知识和编程规范

    一,Shell环境查看 1.1 查看系统Shell支持情况 [root@linux-node1 ~]# cat /etc/shells /bin/sh /bin/bash /sbin/nologin ...

  10. [转]Google 全球 IP 地址库

    IP 地址来源:http://www.kookle.co.nr Bulgaria 93.123.23.1 93.123.23.2 93.123.23.3 93.123.23.4 93.123.23.5 ...