Skip to content

Commit 6013da0

Browse files
Release (#12)
Co-authored-by: Adam-it <[email protected]>
1 parent d06cb8d commit 6013da0

File tree

8 files changed

+1041
-943
lines changed

8 files changed

+1041
-943
lines changed

data/pnpPsModel.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,11 @@
965965
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPFileInFolder.md",
966966
"docs": "https://pnp.github.io/powershell/cmdlets/Get-PnPFileInFolder.html"
967967
},
968+
{
969+
"name": "Get-PnPFileSensitivityLabelInfo",
970+
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPFileSensitivityLabelInfo.md",
971+
"docs": "https://pnp.github.io/powershell/cmdlets/Get-PnPFileSensitivityLabelInfo.html"
972+
},
968973
{
969974
"name": "Get-PnPFileSharingLink",
970975
"url": "https://raw.githubusercontent.com/pnp/powershell/dev/documentation/Get-PnPFileSharingLink.md",

data/samples.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,41 @@
716716
"Submit-PnPSearchQuery"
717717
]
718718
},
719+
{
720+
"title": "Replace owner in all Power Automate flows",
721+
"url": "https://pnp.github.io/script-samples/power-automate-replace-owner/README.html",
722+
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/power-automate-replace-owner/README.md",
723+
"description": "Script to replace all the Power Automate flows where someone is owner of",
724+
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/power-automate-replace-owner/assets/preview.png",
725+
"type": "powershell",
726+
"tabTag": "#tab/pnpps",
727+
"authors": [
728+
{
729+
"name": "Reshmee Auckloo",
730+
"pictureUrl": "https://avatars.githubusercontent.com/u/7693852?v=4"
731+
},
732+
{
733+
"name": "Nico De Cleyre",
734+
"pictureUrl": "https://avatars.githubusercontent.com/u/35696168?v=4"
735+
}
736+
],
737+
"tags": [
738+
"m365 login",
739+
"m365 entra user get",
740+
"m365 pp environment get",
741+
"m365 flow list",
742+
"m365 flow owner list",
743+
"m365 flow owner remove",
744+
"m365 flow owner ensure",
745+
"Connect-PnPOnline",
746+
"Get-PnPPowerPlatformEnvironment",
747+
"Get-PnPEntraiduser",
748+
"Get-PnPflow",
749+
"Get-PnPFlowOwner",
750+
"Remove-PnPFlowOwner",
751+
"Add-PnPFlowOwner"
752+
]
753+
},
719754
{
720755
"title": "Remove delete option on a document library",
721756
"url": "https://pnp.github.io/script-samples/remove-delete-option-library/README.html",
@@ -3887,6 +3922,33 @@
38873922
"m365 tenant serviceannouncement message list"
38883923
]
38893924
},
3925+
{
3926+
"title": "Get permissions including unique permissions up to item level including sharing links",
3927+
"url": "https://pnp.github.io/script-samples/spo-get-permission-audit/README.html",
3928+
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-get-permission-audit/README.md",
3929+
"description": "Get M365 Groups, SharePoint Groups, direct permissions and sharing links including unique permissions up to item level",
3930+
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-get-permission-audit/assets/preview.png",
3931+
"type": "powershell",
3932+
"tabTag": "#tab/pnpps",
3933+
"authors": [
3934+
{
3935+
"name": "Reshmee Auckloo",
3936+
"pictureUrl": "https://avatars.githubusercontent.com/u/7693852?v=4"
3937+
}
3938+
],
3939+
"tags": [
3940+
"modern",
3941+
"Connect-PnPOnline",
3942+
"Get-PnPListItem",
3943+
"Get-PnPProperty",
3944+
"Get-PnPList",
3945+
"Get-PnPWeb",
3946+
"Get-PnPContext",
3947+
"Get-PnPGroupMember",
3948+
"Get-PnPMicrosoft365GroupOwners",
3949+
"Get-PnPMicrosoft365GroupMembers"
3950+
]
3951+
},
38903952
{
38913953
"title": "Get sharing links within the tenant",
38923954
"url": "https://pnp.github.io/script-samples/spo-get-sharinglinks/README.html",
@@ -4664,6 +4726,28 @@
46644726
"Disconnect-PnPOnline"
46654727
]
46664728
},
4729+
{
4730+
"title": "Reindex Search index for lists where a specific term is used (when you have renamed the term)",
4731+
"url": "https://pnp.github.io/script-samples/spo-reindex-list-where-term-is-used/README.html",
4732+
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-reindex-list-where-term-is-used/README.md",
4733+
"description": "Locate all lists where a Term is being used and force a reindex",
4734+
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-reindex-list-where-term-is-used/assets/preview.png",
4735+
"type": "powershell",
4736+
"tabTag": "#tab/pnpps",
4737+
"authors": [
4738+
{
4739+
"name": "Kasper Larsen",
4740+
"pictureUrl": "https://github.com/kasperbolarsen.png"
4741+
}
4742+
],
4743+
"tags": [
4744+
"Invoke-PnPSearchQuery",
4745+
"Get-PnPList",
4746+
"PSCustomObject",
4747+
"Request-PnPReIndexList",
4748+
"Export-Csv"
4749+
]
4750+
},
46674751
{
46684752
"title": "Reindex SharePoint sites",
46694753
"url": "https://pnp.github.io/script-samples/spo-reindex-sites/README.html",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pnp-powershell-extension",
33
"displayName": "PnP PowerShell extension",
44
"description": "With the PnP PowerShell VS Code extension, you can quickly learn, code and create scripts that use PnP PowerShell commands.",
5-
"version": "3.0.2",
5+
"version": "3.0.3",
66
"publisher": "adamwojcikit",
77
"author": {
88
"name": "Adam"

0 commit comments

Comments
 (0)