在PowerShell中操作SharePoint物件
1.用PowerShell建立一個SharePoint內容物件建立一個自定義列表:
$SPSite = New-ObjectMicrosoft.SharePoint.SPSite("");
$OpenWeb = $SpSite.OpenWeb();
$TemplateType = $OpenWeb.ListTemplates["自定義列表"];
$OpenWeb.Lists.Add("My Custom List2","Description Of My Custom List",$TemplateType);
$OpenWeb.Dispose(); $SPSite.Dispose()
2.用PowerShell列出站點所有Content模板
$SPSite = New-ObjectMicrosoft.SharePoint.SPSite("");
$OpenWeb = $SpSite.OpenWeb();
$OpenWeb.ListTemplates | Select Name, Description;
$OpenWeb.Dispose();
$SPSite.Dispose()
3. 如何用PowerShell匯出/備份SharePoint站點You need something like this:
Get-SPWeb -site | ForEach-Object { $filename = $_.Url.replace("","-") + ".export" ;
Write-Host export-spweb $_ -path $filename}That will walk through all the webs under sp2010,
remove the "http://" at the beginning, replace all the dashes with doubledashes,
and the slashes with dashes. Then exports them.
That way something like be savesd as sites-test-foo--bar.export.Oh,
and you'll have to remove the "write-host" for it to actually work. I put that in as a safety measure. :)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22392018/viewspace-772294/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Sharepoint 開啟發布功能的PowerShell
- SharePoint Online 認證Net客戶端物件客戶端物件
- 在 JavaScript 中如何克隆物件?JavaScript物件
- 使用PowerShell更新已存在的組設定物件物件
- 在PowerShell中,可以透過多種方式實現多執行緒操作。以下是一些常用的方法執行緒
- Powershell tricks::Powershell RemotingREM
- Java物件在JVM中長啥樣Java物件JVM
- .Net 在容器中操作宿主機
- 新增模型物件操作模型物件
- 類與物件中想直接在主函式操作物件怎麼做物件函式
- JavaScript中的物件學習筆記(屬性操作)JavaScript物件筆記
- Powershell————1、認識Powershell
- powershell遠端重啟win10怎麼操作_win10如何使用powershell遠端重啟Win10
- Swift在擴充套件中關聯物件Swift套件物件
- 在 JavaScript 中如何檢查物件為空JavaScript物件
- Immutable 操作在 React 中的實踐React
- 在JavaScript中,DOM物件與jQuery物件的區別與轉換JavaScript物件jQuery
- 在spring中獲取代理物件代理的目標物件工具類Spring物件
- 在 Windows Server 2022 中,您可以使用 PowerShell 來管理 DNS 伺服器,以下是一些常用的 PowerShell 命令及其示例:WindowsServerDNS伺服器
- JS — 物件的基本操作JS物件
- Powershell————2、Powershell互動式
- JavaScript物件導向—物件的建立和操作JavaScript物件
- SharePoint詞彙表
- 全新的SharePoint 2019
- 瀏覽器中的JavaScript:文件物件模型與 DOM 操作瀏覽器JavaScript物件模型
- powershell中的where和foreach比較
- 自定義物件池在 Caffeine 框架中實踐物件框架
- 在Lua中實現Rust物件的繫結Rust物件
- 在Luminar 4中向天空新增自定義物件物件
- 使用go在mongodb中進行CRUD操作MongoDB
- SharePoint中你不知道的圖片庫(實戰)
- SharePoint Online 站點模板中許可權的設定
- 對類物件的方法操作物件
- PDO操作大資料物件大資料物件
- win10系統powershell指令恢復指令的操作方法Win10
- SharePoint Server 2016 在原有功能的基礎上增加的內容Server
- 求助!vuex在mounted中拿不到物件裡的值Vue物件
- 15 ##### 適合繫結方法的場景:在物件中封裝值,在方法中讀取物件的值物件封裝
- Powershell(3)