Created
April 22, 2016 04:12
-
-
Save rjesh-git/ff30c6700fb77ab31c2625919684b715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
$rendition = New-Object Microsoft.SharePoint.Client.Publishing.ImageRendition | |
$rendition.Name = $Title | |
$rendition.Width = $Width | |
$rendition.Height = $Height | |
$renditionCol.Add($rendition) | |
[Microsoft.SharePoint.Client.Publishing.SiteImageRenditions]::SetRenditions($ctx,$renditionCol) | |
$ctx.ExecuteQuery() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment