最新更新文章[系統(tǒng)運維] SharePoint Word Service-PowerShellSharePoint 2010 Word Service相關的PowerShell命令... [系統(tǒng)運維] SharePoint Solutions Deployment-PowerShell一鍵部署SharePoint解決方案群... [系統(tǒng)運維] SharePoint Visio Graphics Service-PowerShellSharePoint 2010 Visio Graphics Service相關的PowerShell命令... [系統(tǒng)運維] SharePoint Access Service-PowerShellSharePoint 2010 Access Service相關的PowerShell命令... [系統(tǒng)運維] SharePoint PerformancePoint Service-PowerShellSharePoint 2010 PerformancePoint Service相關的PowerShell命令... [系統(tǒng)運維] SharePoint Excel Service-PowerShellSharePoint 2010 Excel Service相關的PowerShell命令... [系統(tǒng)運維] SharePoint 會話(Session)狀態(tài)和狀態(tài)服務->啟用會話狀態(tài) ->禁用會話狀態(tài) ->顯示會話狀態(tài)信息 ->配置會話狀態(tài)超時時間 ->顯示場中的狀態(tài)服務應用程序配置 ->獲取指定的狀態(tài)服務應用程序 ->重命名狀態(tài)服務應用程序 ->執(zhí)行狀態(tài)服務數(shù)據(jù)庫操作... [系統(tǒng)運維] SharePoint 元數(shù)據(jù)服務-PowerShell->獲取元數(shù)據(jù)服務應用程序標識 ->獲取指定的元數(shù)據(jù)服務應用程序實例 ->配置元數(shù)據(jù)服務賬戶 ->配置術語存儲數(shù)據(jù)庫 ->配置內容類型中心 ->獲取元數(shù)據(jù)服務代理標識 ->獲取指定的元數(shù)據(jù)服務應用程序代理實例 ->配置元數(shù)據(jù)服務連接選項... [系統(tǒng)運維] SharePoint SSS(Security Store Service)服務-PowerShell->獲取SSS應用程序的標識 ->獲取指定的SSS應用程序實例 ->啟用SSS審計 ->配置安全存儲數(shù)據(jù)庫 ->生成新的主密鑰 ->刷新密鑰 ->創(chuàng)建應用字段 ->創(chuàng)建目標應用 ->創(chuàng)建新的應用程序入口... [系統(tǒng)運維] SharePoint BDC(Business Data Connectivity)服務-PowerShell->獲取BCS服務應用程序的標識 ->獲取指定的BCS服務應用程序實例 ->配置BCS數(shù)據(jù)庫 ->獲取BCS元數(shù)據(jù)對象 ->導入BCS模型 ->導出BCS模型... [系統(tǒng)運維] SharePoint 用戶配置文件服務->獲取用戶配置文件服務應用程序標識 ->獲取指定的用戶配置文件服務應用程序實例 ->配置用戶配置文件服務應用程序設置 ->移除舊的注釋 ->移除舊的評分 ->移除舊的標簽 ->更新用戶配置文件照片存儲 ->使用用戶配置文件服務的輔助命令... [系統(tǒng)運維] SharePoint Foundation 搜索-PowerShell->顯示搜索服務信息 ->顯示搜索服務實例 ->獲取指定的搜索服務實例 ->配置爬網賬戶 ->配置最大備份時長 ->配置搜索服務執(zhí)行級別... [系統(tǒng)運維] SharePoint 企業(yè)搜索-PowerShell1. 顯示企業(yè)搜索服務信息 Get-SPEnterpriseSear1chService 2. 顯示企業(yè)搜索服務實例 Get-SPEnterpriseSearchServiceInstance 3. 獲取指定的企業(yè)搜索服務實例 $ssInstance = Get-SPEnterpriseSearchServiceInstance -Identity 91d00542-76cf-41... [系統(tǒng)運維] SharePoint Infopath表單服務-PowerShell1. 激活可瀏覽的表單模板 Set-SPInfoPathFormsService -AllowUserFormBrowserEnabling $true -AllowUserFormBrowserRendering $true 2. 設置數(shù)據(jù)連接超時 Set-SPInfoPathFormsService –DefaultDataConnectionTimeout 15 –MaxDataC... [系統(tǒng)運維] SharePoint 內容部署-PowerShell1. 創(chuàng)建一個新的內容部署路徑 New-SPContentDeploymentPath –Name "Marketing Internet Content" –SourceSPWebApplication "SharePoint – 80" –SourceSPSite "http://intranet./Marketing" –DestinationCentralAdm... [系統(tǒng)運維] SharePoint 解決方案和功能-PowerShell1. 添加解決方案到SharePoint場 Add-SPSolution "c:\newsolution.wsp" 2. 獲取場中的解決方案 Get-SPSolution 3. 獲取指定的解決方案 $solution = Get-SPSolution -Identity c0e31dec-294d-4f2d-9ae4-f2e637c766bd 4. 部署解決方案到Web應用程序 $... [系統(tǒng)運維] SharePoint 網站管理-PowerShell1. 顯示場中所有可用的網站集 Get-SPSite 2. 顯示某一Web應用程序下可用的網站集 Get-SPSite –WebApplication "SharePoint – 80" 3. 顯示某一內容數(shù)據(jù)庫中可用的網站集 Get-SPSite –ContentDatabase "WSS_CONTENT1" 4. 獲取指定的網站集 $webApp = Get-SPSite -Id... [系統(tǒng)運維] SharePoint 數(shù)據(jù)庫管理-PowerShell1. 顯示所有SharePoint數(shù)據(jù)庫 Get-SPDatabase –ServerInstance "SP2010\SQLSharePoint" 2. 獲取指定的數(shù)據(jù)庫 $database = Get-SPDatabase -Identity 47036154-7a05-44be-9137-9be09f43ccb5 3. 創(chuàng)建一個新的內容數(shù)據(jù)庫 New-SPContentDatab... [系統(tǒng)運維] SharePoint 服務應用程序管理-PowerShell1. 安裝所有可用的服務應用程序 Install-SPService -Provision 2. 顯示場中所有可用的服務應用程序 Get-SPServiceApplication 3. 獲取指定的服務應用程序 $sApp = Get-SPServiceApplication -Identity bc4399ed-a 2e0-4397-bf07-cd3d207e630e 4. 配置... [系統(tǒng)運維] SharePoint Web應用程序管理-PowerShell1. 顯示場中的Web應用程序 Get-SPWebApplication 2. 獲取指定的Web應用程序 $webApp = Get-SPWebApplication -Identity "PSWebApp" 3. 移除一個Web應用程序 $webApp = Get-SPWebApplication -Identity "PSWebApp" Remove-SPWebApplicatio... |
|
來自: gogo8848 > 《SharePoint》