PowerShell Sharepoint 2013应用程序目录

时间:2014-03-28 19:55:06

标签: shell sharepoint powershell sharepoint-2013

我创建了多个SharePoint托管应用。是否可以创建批量应用程序目录,因为该应用程序是为少数100个客户创建的。我没有找到可以为Sharepoint office 365站点目录执行此操作的PowerShell命令。

是否也可以使用PowerShell上传批量应用。在网上找不到太多信息。

也许这里有人有一些建议吗?

干杯, 克里斯

1 个答案:

答案 0 :(得分:0)

可以将应用批量上传到Office 365环境,就像在内部部署SharePoint一样。 这里棘手的部分是你必须将应用程序上传到应用程序目录,这实际上是一个文档库。

最近我使用来自互联网的脚本创建了一个函数。发布以下功能:

    function UploadAppToCatalog            
    {            
    [CmdletBinding()]            
    Param(            
    [Parameter(Mandatory=$true,ValueFromPipeline=$true)]            
    [string]$webUrl,            
    [Parameter(Mandatory=$true)]            
    [string]$DocLibName,            
    [Parameter(Mandatory=$true)]            
    [string]$FilePath            
    )                 

    Start-SPAssignment -Global              
    $spWeb = Get-SPWeb -Identity $webUrl             
    $spWeb.AllowUnsafeUpdates = $true;            
    $List = $spWeb.Lists[$DocLibName]            
    $folder = $List.RootFolder            
    $FileName = $FilePath.Substring($FilePath.LastIndexOf("\")+1)             
    $File= Get-ChildItem $FilePath            
    [Microsoft.SharePoint.SPFile]$spFile = $spWeb.GetFile("/" + $folder.Url + "/" + File.Name)            
    $flagConfirm = 'y'            
    if($spFile.Exists -eq $true)            
    {            
        $flagConfirm = Read-Host "File $FileName already exists in library $DocLibName, do you want to upload a new version(y/n)?"             
    }            

    if ($flagConfirm -eq 'y' -or $flagConfirm -eq 'Y')            
    {            
        $fileStream = ([System.IO.FileInfo] (Get-Item $File.FullName)).OpenRead()            
        #Add file            
        write-host -NoNewLine -f yellow "Copying file " $File.Name " to " $folder.ServerRelativeUrl "..."            
        [Microsoft.SharePoint.SPFile]$spFile = $folder.Files.Add($folder.Url + "/" + $File.Name, [System.IO.Stream]$fileStream, $true)            
        write-host -f Green "...Success!"            
        #Close file stream            
        $fileStream.Close()            
        write-host -NoNewLine -f yellow "Update file properties " $spFile.Name "..."            
        $spFile.Item["Title"] = "Document Metrics Report"            
        $spFile.Item.Update()            
        write-host -f Green "...Success!"            
    }               
    $spWeb.AllowUnsafeUpdates = $false;            


    Stop-SPAssignment -Global              
}