This file contains 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
CorrelationId : "b215479e-f056-5000-11a1-ec000000000010" | |
DesignPackageId : "00000000-0000-0000-0000-000000000000" | |
PreviewFeaturesEnabled: true | |
PublishingFeatureOn : false | |
ReycleBinItemCount : -1 | |
aadInstanceUrl : "https://login.windows.net" | |
aadTenantId : "96d8e75d--14a031e2320f" | |
aadUserId : "e7d71f70-13e9-0000-0000-86d1269cd536" | |
alertsEnabled : true | |
allowSilverlightPrompt : "True" |
This file contains 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
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var ShowInsertImage = function (ctlId) { | |
var dOpt = { | |
url: imagesPath, | |
args: null, dialogReturnValueCallback: function callback(status, result) { | |
console.log('new file uploaded here:'+result.newFileUrl); | |
$('#container').append( '<br/><img src="'+result.newFileUrl+'" height="200" width="200">' ); | |
}, |
This file contains 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
function ConvertTo-Hashtable { | |
[CmdletBinding()] | |
[OutputType('hashtable')] | |
param ( | |
[Parameter(ValueFromPipeline)] | |
$InputObject | |
) | |
process { | |
if ($null -eq $InputObject) { |
This file contains 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
# Login to SharePoint online team site as owner | |
o365$ spo login https://M365x816568.sharepoint.com/sites/it | |
# set TeamifyHidden property as True | |
o365$ spo propertybag set --webUrl https://M365x816568.sharepoint.com/sites/it --key TeamifyHidden --value True |
This file contains 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
{ | |
"categories": [ | |
{ | |
"name": "others_", | |
"score": 0.00390625 | |
}, | |
{ | |
"name": "outdoor_", | |
"score": 0.01953125, | |
"detail": { |
This file contains 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
# Author Rajesh Sitaraman | |
# @rjesh | rjesh.com | |
<# | |
.SYNOPSIS | |
Download Ignite 2019 session presentation slides and videos. | |
.EXAMPLE | |
PS C:\> .\Get-IgniteContent.ps1 -DownloadPath /Users/rajeshsitaraman/src/public/share/IG-2019 -Keyword "AI" | |
.EXAMPLE | |
PS C:\> .\Get-IgniteContent.ps1 -DownloadPath /Users/rajeshsitaraman/src/public/share/IG-2019 -Keyword "Teams" -IncludeVideos |
This file contains 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
## Run this in PowerShell as Administrator | |
## Install PnP PowerShell Module | |
Install-Module -Name PnP.PowerShell -AllowClobber | |
Import-Module PnP.PowerShell -Force | |
## Change YourOffice365Domain with yours, enter the global admin creds when prompted | |
Connect-PnPOnline -Url https://YourOffice365Domain-admin.sharepoint.com/ | |
## Gets all Teams in tenant |
OlderNewer