Instantly share code, notes, and snippets.
-
IXTENT s.r.o.
- Prague, Czechia
- in/miroslav-ka%C4%8Dena-96616b39
mkacena
/ Register-EntraIDAppForSharePointSite.ps1
Created
December 18, 2024 07:01
This PowerShell script creates an app registration in Microsoft Entra ID with Write permissions to the specified SharePoint site.
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
############################################### | |
# Author: Miroslav Kačena | |
# Last Modification: 2024-12-18 | |
############################################### | |
<# | |
.SYNOPSIS | |
Creates an app registration in Microsoft Entra ID with Write permissions to the specified SharePoint site. | |
.DESCRIPTION |
mkacena
/ published-version-sharepoint-column-formatting.json
Last active
September 28, 2024 16:31
Microsoft SharePoint Online column formatting which creates a button that downloads the currently published version of a document.
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
{ | |
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", | |
"elmType": "div", | |
"style": { | |
"visibility": "=if([$File_x0020_Type] == '' || [$_UIVersion] < 512, 'hidden', 'visible')" | |
}, | |
"children": [ | |
{ | |
"elmType": "div", | |
"children": [ |