From 5fb83b08a1d76dd1d7ea736074991625d7cd2cd2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 23 Jan 2021 21:21:45 +0200
Subject: [PATCH 001/150] Update README.md
---
 .../Disable Flows in all lists on SharePoint site/README.md     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Power Automate/Disable Flows in all lists on SharePoint site/README.md b/Power Automate/Disable Flows in all lists on SharePoint site/README.md
index 20c7017b..6c4ae38a 100644
--- a/Power Automate/Disable Flows in all lists on SharePoint site/README.md	
+++ b/Power Automate/Disable Flows in all lists on SharePoint site/README.md	
@@ -2,7 +2,7 @@ Short Powershell script that disables flows for all lists and libraries in Share
 
 It modifies DisableFlows property of a SharePoint Online site. The script is related to and more described in an article [Verifying and modifying Flows Policy in SharePoint Online site using Powershell](https://social.technet.microsoft.com/wiki/contents/articles/39331.sharepoint-online-verifying-and-modifying-flows-policy-in-site-using-powershell.aspx) on the TechNet Wiki.
 
- 
+
 
 If the setting is set to disabled, the flows button will be missing on all lists and libraries in the site:
 
From 067107a43ee15134e0f941bc89083fab3357a9a4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 24 Jan 2021 11:43:58 +0200
Subject: [PATCH 002/150] Update description.md
---
 .../description.md                                              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Versioning/Enable versions for selected sites and their subsites/description.md b/Versioning/Enable versions for selected sites and their subsites/description.md
index 9c558e35..ea641af6 100644
--- a/Versioning/Enable versions for selected sites and their subsites/description.md	
+++ b/Versioning/Enable versions for selected sites and their subsites/description.md	
@@ -1 +1 @@
-.
+This script enables versioning for all lists in all subsites of selected sites.
From 699a1288e75a123c90e6314778c5f6b2aee255e3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 24 Jan 2021 11:44:07 +0200
Subject: [PATCH 003/150] Update description.md
---
 .../description.md                                               | 1 +
 1 file changed, 1 insertion(+)
diff --git a/Versioning/Enable versions for selected sites and their subsites/description.md b/Versioning/Enable versions for selected sites and their subsites/description.md
index ea641af6..39a7a640 100644
--- a/Versioning/Enable versions for selected sites and their subsites/description.md	
+++ b/Versioning/Enable versions for selected sites and their subsites/description.md	
@@ -1 +1,2 @@
 This script enables versioning for all lists in all subsites of selected sites.
+
From 7d622a1a8a8ae0ccd9adfc98ef18690d87b62f68 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 24 Jan 2021 11:44:17 +0200
Subject: [PATCH 004/150] Update README.md
---
 .../README.md                                                   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Versioning/Enable versions for selected sites and their subsites/README.md b/Versioning/Enable versions for selected sites and their subsites/README.md
index 9c558e35..ea641af6 100644
--- a/Versioning/Enable versions for selected sites and their subsites/README.md	
+++ b/Versioning/Enable versions for selected sites and their subsites/README.md	
@@ -1 +1 @@
-.
+This script enables versioning for all lists in all subsites of selected sites.
From 8501edf787e6a789144baceb4334c6172ab8687e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 26 Jan 2021 20:37:00 +0200
Subject: [PATCH 005/150] Update GetUnusedLists.ps1
---
 .../Get all lists not used since/GetUnusedLists.ps1          | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1 b/Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1
index 8f93a4eb..75e512ce 100644
--- a/Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1	
+++ b/Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1	
@@ -49,9 +49,6 @@ param (
         
 
 
-
-
-
 #Paths to SDK
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
@@ -63,4 +60,4 @@ $olderThan = "2019-09-30"
 
 $AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString
 
-Get-UnmodifiedLists -Username $username -Url $Url -password $AdminPassword -olderThan $olderThan
\ No newline at end of file
+Get-UnmodifiedLists -Username $username -Url $Url -password $AdminPassword -olderThan $olderThan
From 1f4e9b8ab4de055e76be8e346fe4096257f2997e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 27 Jan 2021 20:11:58 +0200
Subject: [PATCH 006/150] Update getSPOobjectWithRestModuleLimited.psm1
---
 .../getSPOobjectWithRestModuleLimited.psm1                      | 2 --
 1 file changed, 2 deletions(-)
diff --git a/Getting SPO objects with REST/Module for getting SharePoint objects with Powershell (limited)/getSPOobjectWithRestModuleLimited.psm1 b/Getting SPO objects with REST/Module for getting SharePoint objects with Powershell (limited)/getSPOobjectWithRestModuleLimited.psm1
index 5b97530f..adf0f6b7 100644
--- a/Getting SPO objects with REST/Module for getting SharePoint objects with Powershell (limited)/getSPOobjectWithRestModuleLimited.psm1	
+++ b/Getting SPO objects with REST/Module for getting SharePoint objects with Powershell (limited)/getSPOobjectWithRestModuleLimited.psm1	
@@ -13,7 +13,6 @@ param (
 		)
 
 
- 
   $Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
   $RestUrl=$url+"/_api/web/"
   if($object -ne "")
@@ -22,7 +21,6 @@ param (
   }
 
 
-  
         $request = [System.Net.WebRequest]::Create($RESTUrl) 
         $request.Credentials = $Credentials 
         $request.Headers.Add("X-FORMS_BASED_AUTH_ACCEPTED", "f") 
From eff9c9e09113e979e55218910d286d76451bc46a Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 28 Jan 2021 20:56:21 +0200
Subject: [PATCH 007/150] Update AllowListDeletion.ps1
---
 .../Allow list to be deleted/AllowListDeletion.ps1            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1 b/Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1
index 973f7e0e..77302588 100644
--- a/Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1	
+++ b/Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1	
@@ -3,9 +3,9 @@
 function Allow-SPOListDeletion
 {
 param (
-  [Parameter(Mandatory=$true,Position=1)]
+  	[Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		$AdminPassword,
         [Parameter(Mandatory=$true,Position=3)]
 		[string]$Url,
From 8174ee0490b0e53ef77d41874d2ffe933deab70b Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 29 Jan 2021 18:20:58 +0200
Subject: [PATCH 008/150] Create README.md
---
 .../Audit folder structure to XML/README.md                      | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 File Management/Audit folder structure/Audit folder structure to XML/README.md
diff --git a/File Management/Audit folder structure/Audit folder structure to XML/README.md b/File Management/Audit folder structure/Audit folder structure to XML/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/File Management/Audit folder structure/Audit folder structure to XML/README.md	
@@ -0,0 +1 @@
+.
From 50d0fd20e1c202f40f89949a4099acf860e7e67b Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 29 Jan 2021 18:21:24 +0200
Subject: [PATCH 009/150] Update README.md
---
 .../Audit folder structure to XML/README.md   | 38 ++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)
diff --git a/File Management/Audit folder structure/Audit folder structure to XML/README.md b/File Management/Audit folder structure/Audit folder structure to XML/README.md
index 9c558e35..ef805f08 100644
--- a/File Management/Audit folder structure/Audit folder structure to XML/README.md	
+++ b/File Management/Audit folder structure/Audit folder structure to XML/README.md	
@@ -1 +1,37 @@
-.
+SharePoint Online has a lot of options allowing you to organize your files. Some of them really amazing. Folders aren't necessarily one of them. 
+
+But once you have used them and your users happily created unstructured, repeating, unrecoverable mess, you may want to audit them and find out if you can reorganize or save the day in some other way.
+
+This Powershell script allows you to investigate into your folder structure and creates an XML file as a report.
+
+ 
+
+
+
+ 
+
+ 
+
+In order to use the script you need to modify the following lines:
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+ 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
+ 
+# Enter your data 
+$admin="ana@etr56.onmicrosoft.com" 
+$site="https://etr56.sharepoint.com" 
+$libraryTitle="test" 
+$script:XMLPath = "C:\Users\Public\foolders2.xml" 
+#Enter your data above! 
+ 
+ ```
+
+ 
+
+ 
+
+
From c3be7da2fcef7d04b5fae2140fb38edb1e5db37d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 30 Jan 2021 11:34:45 +0200
Subject: [PATCH 010/150] Update README.md
---
 File Management/Audit folder structure/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/File Management/Audit folder structure/README.md b/File Management/Audit folder structure/README.md
index 9c558e35..b802014c 100644
--- a/File Management/Audit folder structure/README.md	
+++ b/File Management/Audit folder structure/README.md	
@@ -1 +1 @@
-.
+Scripts showing folder structure in library
From 2e5c4b8eb253399bd0da33431d0d62d0871274c2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 31 Jan 2021 21:48:40 +0200
Subject: [PATCH 011/150] Update AuditFolderStructureToXMLServer.ps1
---
 .../AuditFolderStructureToXMLServer.ps1                         | 2 --
 1 file changed, 2 deletions(-)
diff --git a/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/AuditFolderStructureToXMLServer.ps1 b/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/AuditFolderStructureToXMLServer.ps1
index 8d156f14..159ee995 100644
--- a/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/AuditFolderStructureToXMLServer.ps1	
+++ b/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/AuditFolderStructureToXMLServer.ps1	
@@ -193,5 +193,3 @@ Write-Output $global:foldersCollection
 
 
 
-
-
From ea625f62faacd44f1d8e02e94966b0359bc49400 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 1 Feb 2021 18:42:51 +0200
Subject: [PATCH 012/150] Update README.md
---
 Licensing/README.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Licensing/README.md b/Licensing/README.md
index 3421a72c..966a10ea 100644
--- a/Licensing/README.md
+++ b/Licensing/README.md
@@ -1,3 +1 @@
-.
-
-
+Scripts related to verifying and assigning licenses
From e4ac0cf4a7917b2b5875f6b76b41bb9ce60f8b4a Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 5 Feb 2021 20:38:16 +0200
Subject: [PATCH 013/150] Update PullAllTerms.ps1
---
 .../PullAllTerms.ps1                                             | 1 -
 1 file changed, 1 deletion(-)
diff --git a/Managed Metadata/Pull all groups, termsets, terms from your default SharePoint Online termstore/PullAllTerms.ps1 b/Managed Metadata/Pull all groups, termsets, terms from your default SharePoint Online termstore/PullAllTerms.ps1
index 0a05f9aa..d0f96c64 100644
--- a/Managed Metadata/Pull all groups, termsets, terms from your default SharePoint Online termstore/PullAllTerms.ps1	
+++ b/Managed Metadata/Pull all groups, termsets, terms from your default SharePoint Online termstore/PullAllTerms.ps1	
@@ -9,7 +9,6 @@
 		$password
 	)
 
-
 	$ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
 	$ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
 	$ctx.Load($ctx.Web)
From ed0d228713000f06f891f5db8949ccf71ad7be3c Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 6 Feb 2021 22:03:17 +0200
Subject: [PATCH 014/150] Update CheckLicensesWithServiceName.ps1
---
 .../CheckLicensesWithServiceName.ps1                          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1 b/Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1
index f4a0ced0..a5efaf30 100644
--- a/Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1	
+++ b/Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1	
@@ -37,10 +37,10 @@ Connect-MsolService
 $Users = Get-MSolUser -All  
 
 if($Users -ne $null){
-  Write-Host "Loaded all users."
+    Write-Host "Loaded all users."
 }
 else{
-  Write-Host "Couldn't get the users."
+    Write-Host "Couldn't get the users."
 }
 
 
From b726d5180d3be55b15056c6055bca0e404e26d57 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 7 Feb 2021 12:03:35 +0200
Subject: [PATCH 015/150] Update NewTermSingle.ps1
---
 .../NewTermSingle.ps1                                            | 1 +
 1 file changed, 1 insertion(+)
diff --git a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1 b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1
index bde5cd37..13d8a982 100644
--- a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
+++ b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
@@ -58,3 +58,4 @@ $TermLanguage=1033
 
 
 New-SPOTerm -Username $Username -Url $Url -password $AdminPassword -TermSetGuid $TermSetGuid -Term $Term -TermLanguage $TermLanguage
+
From 82e1e25367ba3373aa61f74fa98e8f745cdde9ff Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 10 Feb 2021 17:57:20 +0200
Subject: [PATCH 016/150] Update README.md
---
 .../README.md                                                   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Pages/Remove comments on modern pages in entire SharePoint site/README.md b/Pages/Remove comments on modern pages in entire SharePoint site/README.md
index 52c89ef3..bdad8be0 100644
--- a/Pages/Remove comments on modern pages in entire SharePoint site/README.md	
+++ b/Pages/Remove comments on modern pages in entire SharePoint site/README.md	
@@ -8,7 +8,7 @@ Its functionality is described also in an article on Social Technet: Powershell
 
  
 
-How to use?
+### How to use?
 1. Download the script and open the file.
 
 2. Modify the following lines with appropriate paths to SharePoint SDKs:
From 800ff2b7512d1e58b40093e2cf1b6d0bae300ddc Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 12 Feb 2021 20:59:54 +0200
Subject: [PATCH 017/150] Create README.md
---
 .../Enable versioning for all lists in OneDrive sites/README.md  | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md
diff --git a/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md b/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md	
@@ -0,0 +1 @@
+.
From bd1d16cdd2b252c079909c74edde4052256b75c9 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Feb 2021 01:43:39 +0200
Subject: [PATCH 018/150] Update FolderCreationForAllLists.ps1
---
 .../FolderCreationForAllLists.ps1                          | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/Lists and Libraries Management/Allow or disallow users to create folders/FolderCreationForAllLists.ps1 b/Lists and Libraries Management/Allow or disallow users to create folders/FolderCreationForAllLists.ps1
index a2ed4431..f8291ecf 100644
--- a/Lists and Libraries Management/Allow or disallow users to create folders/FolderCreationForAllLists.ps1	
+++ b/Lists and Libraries Management/Allow or disallow users to create folders/FolderCreationForAllLists.ps1	
@@ -15,7 +15,7 @@ function Set-SPOListsFolderCreation{
 	[bool]$EnableFolderCreation
     )  
 
-    $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
+  $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
   $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
   $ctx.ExecuteQuery() 
@@ -43,11 +43,6 @@ function Set-SPOListsFolderCreation{
 
 
 
-
-
-
-
-
 # Paths to SDK. Please verify location on your computer.
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
From 044cb73414c3740c75467d9f9c4ec026aaa622a3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 15 Feb 2021 17:46:26 +0200
Subject: [PATCH 019/150] Update GetSPOListEventReceivers.ps1
---
 .../GetSPOListEventReceivers.ps1                                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1 b/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1
index 158cfc2f..a946dd7d 100644
--- a/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1	
+++ b/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1	
@@ -18,7 +18,7 @@
 		Write-Host $Url " failed to connect to the site" $_.Exception.Message.ToString() -ForegroundColor Red
 	}
 
-	 $ctx.Load($ctx.Site)
+	  $ctx.Load($ctx.Site)
 	  $ctx.Load($ctx.Web.Lists)
 	  $ctx.ExecuteQuery()
 	  Write-Host $ctx.Web.Lists.Count
From 511f3927916624453f18258307a92fcc5664a571 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 17 Feb 2021 22:26:02 +0200
Subject: [PATCH 020/150] Update getSPOobjectWithRest.ps1
---
 .../getSPOobjectWithRest.ps1                                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Getting SPO objects with REST/Script to get SharePoint objects with REST/getSPOobjectWithRest.ps1 b/Getting SPO objects with REST/Script to get SharePoint objects with REST/getSPOobjectWithRest.ps1
index 2d545dc7..113237f3 100644
--- a/Getting SPO objects with REST/Script to get SharePoint objects with REST/getSPOobjectWithRest.ps1	
+++ b/Getting SPO objects with REST/Script to get SharePoint objects with REST/getSPOobjectWithRest.ps1	
@@ -8,7 +8,7 @@ param (
         [Parameter(Mandatory=$true,Position=3)]
 		[string] $url,
         [Parameter(Mandatory=$false,Position=4)]
-        [string] $object=""
+        	[string] $object=""
 		)
 
 
From c9c0e67a59ebc0a264d0bf93f5221b83b9e8bf99 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 23 Feb 2021 12:45:18 +0200
Subject: [PATCH 021/150] Update BulkUpdate.ps1
---
 .../Bulk update all items in a list/BulkUpdate.ps1         | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/Items Management/Bulk update all items in a list/BulkUpdate.ps1 b/Items Management/Bulk update all items in a list/BulkUpdate.ps1
index 4e963d1c..90d67981 100644
--- a/Items Management/Bulk update all items in a list/BulkUpdate.ps1	
+++ b/Items Management/Bulk update all items in a list/BulkUpdate.ps1	
@@ -15,8 +15,7 @@ function Update-SPOListItem{
   )
   
   
-  
-   $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
+  $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
   $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
   $ctx.Load($ctx.Web.Lists)
@@ -29,8 +28,8 @@ function Update-SPOListItem{
 
 
   $spqQuery = New-Object Microsoft.SharePoint.Client.CamlQuery
- $spqQuery.ViewXml ="";
-   $itemki=$ll.GetItems($spqQuery)
+  $spqQuery.ViewXml ="";
+  $itemki=$ll.GetItems($spqQuery)
    $ctx.Load($itemki)
   $ctx.ExecuteQuery()
 
From 89f75473a907fbabff80aac85dd32bf88085ca97 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 24 Feb 2021 21:18:33 +0200
Subject: [PATCH 022/150] Update BulkUpdate.ps1
---
 Items Management/Bulk update all items in a list/BulkUpdate.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Items Management/Bulk update all items in a list/BulkUpdate.ps1 b/Items Management/Bulk update all items in a list/BulkUpdate.ps1
index 90d67981..5105f4bc 100644
--- a/Items Management/Bulk update all items in a list/BulkUpdate.ps1	
+++ b/Items Management/Bulk update all items in a list/BulkUpdate.ps1	
@@ -30,7 +30,7 @@ function Update-SPOListItem{
   $spqQuery = New-Object Microsoft.SharePoint.Client.CamlQuery
   $spqQuery.ViewXml ="";
   $itemki=$ll.GetItems($spqQuery)
-   $ctx.Load($itemki)
+  $ctx.Load($itemki)
   $ctx.ExecuteQuery()
 
   $count=$itemki.Count
From e8472f2a62447834b9433f330a1eafc3fafbfe42 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 25 Feb 2021 22:06:22 +0200
Subject: [PATCH 023/150] Update NoSpoLicense.ps1
---
 .../NoSpoLicense.ps1                                           | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1 b/Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1
index 94770e1f..a7d0b95e 100644
--- a/Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1	
+++ b/Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1	
@@ -5,8 +5,7 @@ $disabledPlans +="SHAREPOINTENTERPRISE"
 $disabledPlans +="SHAREPOINTWAC"
 
  
-
-$Users = Get-MsolUser -All
+ $Users = Get-MsolUser -All
 
  $Plan=(Get-MsolAccountSku).AccountSkuID.Trim()
 
From 1e275b196a680d38a5bdf3db7623ef7d3cb3eb9b Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 26 Feb 2021 20:47:25 +0200
Subject: [PATCH 024/150] Create README.md
---
 Site Management/Add-SPOWeb & Remove-SPOWeb/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Site Management/Add-SPOWeb & Remove-SPOWeb/README.md
diff --git a/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md b/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md	
@@ -0,0 +1 @@
+.
From 75efd49c894d127447af974b36f999fdeb543f6d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 1 Mar 2021 19:01:51 +0200
Subject: [PATCH 025/150] Create README.md
---
 .../README.md                                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md
diff --git a/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md	
@@ -0,0 +1 @@
+.
From 1c25bbd071052ad4352ba2ba5b6cef04d60c77d4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 1 Mar 2021 19:02:11 +0200
Subject: [PATCH 026/150] Update description.md
---
 .../description.md                                            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/description.md b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/description.md
index f301226c..1acce137 100644
--- a/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/description.md	
+++ b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/description.md	
@@ -18,7 +18,7 @@ Before you run it, you have to modify the last lines of the script!
 
  
 
-PowerShell
+```PowerShell
 # Paths to SDK. Please verify location on your computer. 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
@@ -28,7 +28,7 @@ $AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString
 $username="arleta@TENANT.onmicrosoft.com" 
 $Url="https://TENANT.sharepoint.com/sites/testID1de" 
 $ListTitle="testitems" 
- 
+ ```
 
 Enter your credentials and the site where you want to modify the inheritance. 
 Verify if the SharePoint Online SDK is installed in the same location on your computer
From 6a1419ecac04048cfaa27d59d7378d4ed4a3098f Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 1 Mar 2021 19:02:23 +0200
Subject: [PATCH 027/150] Update README.md
---
 .../README.md                                 | 60 ++++++++++++++++++-
 1 file changed, 59 insertions(+), 1 deletion(-)
diff --git a/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md
index 9c558e35..1acce137 100644
--- a/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md	
+++ b/Permissions/Powershell/Delete unique permissions in all items in a large list (5000+ items)/README.md	
@@ -1 +1,59 @@
-.
+Powershell script to restore inherited permissions for all items in a SharePoint Online list.
+
+ 
+
+The script works with large (5000+) lists.
+
+In order to make it possible script uses a solution published here: http://www.sptrenches.com/2016/06/get-all-items-in-5000-large-list-with.html and commented by Sharath Aluri here: https://gallery.technet.microsoft.com/office/Delete-unique-permissions-c6ea2b57/view/Discussions#content.
+
+ 
+
+The script is a variation of Delete unique permissions in all items in one single list using Powershell  script available on the Technet Gallery.
+
+ 
+
+Before you run it, you have to modify the last lines of the script!
+
+ 
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+ 
+#Enter the data 
+$AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString 
+$username="arleta@TENANT.onmicrosoft.com" 
+$Url="https://TENANT.sharepoint.com/sites/testID1de" 
+$ListTitle="testitems" 
+ ```
+
+Enter your credentials and the site where you want to modify the inheritance. 
+Verify if the SharePoint Online SDK is installed in the same location on your computer
+ 
+
+ 
+
+ 
+
+ 
+
+ 
+
+Related scripts:
+
+Delete unique permissions in all items in one single list using Powershell 
+
+Delete unique permissions for all lists
+
+Break inheritance for all lists
+
+Modify inherited permissions for a SharePoint Online site (module)
+
+Modify list permissions with Powershell cmdlets (module)
+
+Delete unique permissions (C# program)
+
+Get lists with unique permissions (C# program)
From 45796ea8031848c81e75c56f79270dbd626b47e2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 3 Mar 2021 19:30:22 +0200
Subject: [PATCH 028/150] Update TaxonomyModule.psm1
---
 .../TaxonomyModule.psm1                                          | 1 -
 1 file changed, 1 deletion(-)
diff --git a/Managed Metadata/Taxonomy cmdlets module to manage your term store in SharePoint Online/TaxonomyModule.psm1 b/Managed Metadata/Taxonomy cmdlets module to manage your term store in SharePoint Online/TaxonomyModule.psm1
index f25b0e44..b34ee003 100644
--- a/Managed Metadata/Taxonomy cmdlets module to manage your term store in SharePoint Online/TaxonomyModule.psm1	
+++ b/Managed Metadata/Taxonomy cmdlets module to manage your term store in SharePoint Online/TaxonomyModule.psm1	
@@ -381,4 +381,3 @@ $global:ctx
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Taxonomy.dll" 
-
From 304740498b449da0bb83c827cebccffae9949c91 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 4 Mar 2021 14:10:14 +0200
Subject: [PATCH 029/150] Update README.md
---
 .../README.md                                 | 27 ++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md b/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md
index 9c558e35..f2978e30 100644
--- a/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md	
+++ b/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md	
@@ -1 +1,26 @@
-.
+Powershell script that enables versioning for all the libraries and lists in all personal sites (OneDrive for Business). 
+
+**It requires SharePoint Online Management Shell and SharePoint SDK installed:**
+
+http://technet.microsoft.com/en-us/library/fp161372(v=office.15).aspx
+
+http://www.microsoft.com/en-us/download/details.aspx?id=30722
+
+ 
+
+It uses recurrence to find all sites in all site collections and then goes through all the lists.
+
+For some lists, enabling version may not be possible and you will receive a notification of that.
+
+At the end, a csv file is generated with the lists' urls and the status whether enabling was successful or not.
+
+ 
+
+As the script runs you will see green lists' titles for which the enabling succeeded and red for those which failed (not all lists support versioning).
+  +
+
+
+You can customize the script by using the commented out tips.
+
+ 
From efb36efda1bad0d9737e6b9542848522beed3842 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 09:55:13 +0200
Subject: [PATCH 030/150] Create README.md
---
 .../README.md                                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
@@ -0,0 +1 @@
+.
From 0bc8a5a51fc796cfb4416f08e9c391a0f3986dd9 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 20:46:50 +0200
Subject: [PATCH 031/150] Update description.md
---
 .../description.md                                     | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md
index 6f6b9918..654c63bb 100644
--- a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md	
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md	
@@ -2,20 +2,22 @@ Powershell script that lists the 10 latest files or items a user has modified in
 
  
 
-How to use?
+### How to use?
 1. Download the script and open the file.
 
 2. Modify the following lines with appropriate paths to SharePoint SDKs:
 
  
 
-PowerShell
+```PowerShell
 #Paths to SDK 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+```
+
 3. Enter your data:
-PowerShell
+```PowerShell
 #Enter the data 
 $username = "Domain\SPAdmin" 
 $Url = "http://intranet.domain.com/sites/test" 
@@ -26,5 +28,5 @@ $UserDisplayName = "TestEditor"
  $url   - the url of your site collection/subsite
  $listtitle - the titleof our list
  $UserdisplayName - the name of the user who modified the files/items
-
+```
 The script will also create a report under "c:\users\public\TenItems.csv" with file names and last modified date: 
From 4fe830b4d6de61cdd4afbd9f3747d662a8a19a40 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 20:47:01 +0200
Subject: [PATCH 032/150] Update README.md
---
 .../README.md                                 | 33 ++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
index 9c558e35..654c63bb 100644
--- a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
@@ -1 +1,32 @@
-.
+Powershell script that lists the 10 latest files or items a user has modified in a given SharePoint Server list or library.
+
+ 
+
+### How to use?
+1. Download the script and open the file.
+
+2. Modify the following lines with appropriate paths to SharePoint SDKs:
+
+ 
+
+```PowerShell
+#Paths to SDK 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+```
+
+3. Enter your data:
+```PowerShell
+#Enter the data 
+$username = "Domain\SPAdmin" 
+$Url = "http://intranet.domain.com/sites/test" 
+$ListTitle = "test" 
+$UserDisplayName = "TestEditor" 
+ 
+ $username - user who is running the script and has appropriate rights over the website and list
+ $url   - the url of your site collection/subsite
+ $listtitle - the titleof our list
+ $UserdisplayName - the name of the user who modified the files/items
+```
+The script will also create a report under "c:\users\public\TenItems.csv" with file names and last modified date: 
From 8bc056cbf1ba281ba6a1c7509b9ff05654e1ca0e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 9 Mar 2021 10:00:47 +0200
Subject: [PATCH 033/150] Delete testmarkdown.md
---
 .../testmarkdown.md                           | 169 ------------------
 1 file changed, 169 deletions(-)
 delete mode 100644 Lists and Libraries Management/testmarkdown.md
diff --git a/Lists and Libraries Management/testmarkdown.md b/Lists and Libraries Management/testmarkdown.md
deleted file mode 100644
index 8da9ad7b..00000000
--- a/Lists and Libraries Management/testmarkdown.md	
+++ /dev/null
@@ -1,169 +0,0 @@
-New SharePoint Online Powershell cmdlet Get-SPOAllList which allows you to view and filter SPO list properties.
-
- 
-
-There is no equivalent in Graphic User Interface (GUI) of this cmdlet
-
- 
-
- 
-
- 
-
-Parameters
-
- 
-
-The cmdlet is using the following parameters:
-
- [string]$Username
-The string specifies admin of the site
-
-[string]$Url
-Specifies the url of a site where you have the list
-
-[string]$AdminPassword,       
-Admin's password
-
-[bool]$IncludeSubsites=$false
-Specifies whether the cmdlet should check for lists in the subsites as well, by default it is set to $false
-
-[bool]$IncludeAllProperties=$false
-Specifies whether you should view all the available properties or just the Title, Url and Created Date. By the default it is set to $false.
-
- 
-
- 
-
- 
-
- 
-
-Requirements
-
- 
-
-The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the .psm1 file!
-
- 
-
- 
-
- 
-
-PowerShell
-# Paths to SDK. Please verify location on your computer. 
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
- 
- 
-
- 
-
-Examples
-
- 
-
-Get a list of all lists and libraries in a site
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com/sites/sitecollection/subsite -AdminPassword Pass
-
-
+
+
+
+You can customize the script by using the commented out tips.
+
+ 
From efb36efda1bad0d9737e6b9542848522beed3842 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 09:55:13 +0200
Subject: [PATCH 030/150] Create README.md
---
 .../README.md                                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
@@ -0,0 +1 @@
+.
From 0bc8a5a51fc796cfb4416f08e9c391a0f3986dd9 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 20:46:50 +0200
Subject: [PATCH 031/150] Update description.md
---
 .../description.md                                     | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md
index 6f6b9918..654c63bb 100644
--- a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md	
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/description.md	
@@ -2,20 +2,22 @@ Powershell script that lists the 10 latest files or items a user has modified in
 
  
 
-How to use?
+### How to use?
 1. Download the script and open the file.
 
 2. Modify the following lines with appropriate paths to SharePoint SDKs:
 
  
 
-PowerShell
+```PowerShell
 #Paths to SDK 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+```
+
 3. Enter your data:
-PowerShell
+```PowerShell
 #Enter the data 
 $username = "Domain\SPAdmin" 
 $Url = "http://intranet.domain.com/sites/test" 
@@ -26,5 +28,5 @@ $UserDisplayName = "TestEditor"
  $url   - the url of your site collection/subsite
  $listtitle - the titleof our list
  $UserdisplayName - the name of the user who modified the files/items
-
+```
 The script will also create a report under "c:\users\public\TenItems.csv" with file names and last modified date: 
From 4fe830b4d6de61cdd4afbd9f3747d662a8a19a40 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 8 Mar 2021 20:47:01 +0200
Subject: [PATCH 032/150] Update README.md
---
 .../README.md                                 | 33 ++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md
index 9c558e35..654c63bb 100644
--- a/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
+++ b/Items Management/Get/List 10 latest items a user has modified in SharePoint Server list/README.md	
@@ -1 +1,32 @@
-.
+Powershell script that lists the 10 latest files or items a user has modified in a given SharePoint Server list or library.
+
+ 
+
+### How to use?
+1. Download the script and open the file.
+
+2. Modify the following lines with appropriate paths to SharePoint SDKs:
+
+ 
+
+```PowerShell
+#Paths to SDK 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+```
+
+3. Enter your data:
+```PowerShell
+#Enter the data 
+$username = "Domain\SPAdmin" 
+$Url = "http://intranet.domain.com/sites/test" 
+$ListTitle = "test" 
+$UserDisplayName = "TestEditor" 
+ 
+ $username - user who is running the script and has appropriate rights over the website and list
+ $url   - the url of your site collection/subsite
+ $listtitle - the titleof our list
+ $UserdisplayName - the name of the user who modified the files/items
+```
+The script will also create a report under "c:\users\public\TenItems.csv" with file names and last modified date: 
From 8bc056cbf1ba281ba6a1c7509b9ff05654e1ca0e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 9 Mar 2021 10:00:47 +0200
Subject: [PATCH 033/150] Delete testmarkdown.md
---
 .../testmarkdown.md                           | 169 ------------------
 1 file changed, 169 deletions(-)
 delete mode 100644 Lists and Libraries Management/testmarkdown.md
diff --git a/Lists and Libraries Management/testmarkdown.md b/Lists and Libraries Management/testmarkdown.md
deleted file mode 100644
index 8da9ad7b..00000000
--- a/Lists and Libraries Management/testmarkdown.md	
+++ /dev/null
@@ -1,169 +0,0 @@
-New SharePoint Online Powershell cmdlet Get-SPOAllList which allows you to view and filter SPO list properties.
-
- 
-
-There is no equivalent in Graphic User Interface (GUI) of this cmdlet
-
- 
-
- 
-
- 
-
-Parameters
-
- 
-
-The cmdlet is using the following parameters:
-
- [string]$Username
-The string specifies admin of the site
-
-[string]$Url
-Specifies the url of a site where you have the list
-
-[string]$AdminPassword,       
-Admin's password
-
-[bool]$IncludeSubsites=$false
-Specifies whether the cmdlet should check for lists in the subsites as well, by default it is set to $false
-
-[bool]$IncludeAllProperties=$false
-Specifies whether you should view all the available properties or just the Title, Url and Created Date. By the default it is set to $false.
-
- 
-
- 
-
- 
-
- 
-
-Requirements
-
- 
-
-The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the .psm1 file!
-
- 
-
- 
-
- 
-
-PowerShell
-# Paths to SDK. Please verify location on your computer. 
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
- 
- 
-
- 
-
-Examples
-
- 
-
-Get a list of all lists and libraries in a site
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com/sites/sitecollection/subsite -AdminPassword Pass
-
- -
-
-
-
-
-Get a list of all lists and libraries in a site collection and its subsites
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com/sites/sitecollection/subsite -AdminPassword Pass -IncludeSubsites $true
-
- 
-
-Export to CSV a list of all lists and libraries in a site collection and its subsites
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com/sites/sitecollection/subsite -AdminPassword Pass -IncludeSubsites $true | export-CSV -path c:\csv.csv
-
- 
-
- 
-
-Get a list of all lists and libraries with all their properties
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass -IncludeAllProperties $true
-
- 
-
-
-
- 
-
- 
-
-Get a specific list
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass -IncludeAllProperties $true | where {$_.Title -eq "ccc"}
-
- 
-
-
-
- 
-
- 
-
-Get lists based on criteria
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass -IncludeAllProperties $true | where {$_.Hidden -eq $true} | select Title, Created
-
- 
-
-
-
- 
-
- 
-
- 
-
-Get all document libraries
-The property that defines the type of list/library is called BaseTemplate. For all the ids check the MSDN List Template Types
-
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass -IncludeAllProperties $true | where {$_.BaseTemplate -eq 101} | select Title, Created
-
- 
-
-Get all lists and their corresponding types
-The property that defines the type of list/library is called BaseTemplate. For all the ids check the MSDN List Template Types
-
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass -IncludeAllProperties $true | where {$_.BaseTemplate -eq 101} | select Title, Created
-
- 
-
- 
-
-
-
- 
-
- 
-
- 
-
- 
-
- 
-
-How not to use the cmdlet:
-
-Get-SPOList -Username user@domain.com -Url https://domain.sharepoint.com -AdminPassword Pass | where {$_.Hidden -eq $false} 
-
-
-
-If you don't load the properties, you cannot search by them!
-
- 
-
- 
-
- 
-
- 
-
- 
-
- 
-
-Let me know about your experience in the Q&A section!
From 9976a4d687892527be49d326685f4df92a03f31f Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 20 Mar 2021 19:02:10 +0200
Subject: [PATCH 034/150] Create README.md
---
 .../README.md                                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 File Management/Create sample folder and file structure for testing/README.md
diff --git a/File Management/Create sample folder and file structure for testing/README.md b/File Management/Create sample folder and file structure for testing/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/File Management/Create sample folder and file structure for testing/README.md	
@@ -0,0 +1 @@
+.
From f78d79f46c6e0acf71a067c630611a36eaf73051 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 20 Mar 2021 19:02:24 +0200
Subject: [PATCH 035/150] Update README.md
---
 .../README.md                                 | 82 ++++++++++++++++++-
 1 file changed, 81 insertions(+), 1 deletion(-)
diff --git a/File Management/Create sample folder and file structure for testing/README.md b/File Management/Create sample folder and file structure for testing/README.md
index 9c558e35..06bebe35 100644
--- a/File Management/Create sample folder and file structure for testing/README.md	
+++ b/File Management/Create sample folder and file structure for testing/README.md	
@@ -1 +1,81 @@
-.
+A short script to create folder and file structure in a library.
+
+ 
+
+How to use?
+
+1. Download the script.
+
+2. Create a library.
+
+3. In the library create a sample file (.docx, .xlsx or .pptx) that will serve as a template for all other files.
+
+4. Open the script file (you can use Powershell ISE or e.g. NotePad).
+
+5. Edit the following lines, entering your values:
+
+ 
+
+ 
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+$admin="t@trial890.onmicrosoft.com" 
+$pass=Read-Host "Enter Password: " -AsSecureString 
+$site="https://trial890.sharepoint.com/sites/teamsitewithlibraries" 
+$fileURL="/sites/TeamsiteWithLibraries/tescik2/Presentation.pptx" 
+$libraryTitle="tescik2" 
+``` 
+ 
+
+6. Save and run the script. During execution it will ask you for a password.
+
+ 
+
+ 
+
+End results
+
+ 
+
+
+
+ 
+
+ 
+
+
+
+ 
+
+Not enough?
+
+Of course you can modify or expand the script. E.g. adding more values to these arrays will create more folders:
+
+ 
+
+```PowerShell
+$reports=@("Reports","Balance Sheets","Investments") 
+  $report=@("Report","Balance Sheet","Investment") 
+``` 
+Feel free also to adjust the naming to fit your scenario, e.g. $reports=@("Beaches","Tropical Islands","Seas","Yachts")  :) 
+
+ 
+
+ 
+
+ 
+
+Technicalities - how did it work?
+
+ I simply took the file and copied it under different names. All the file properties (managed metadata, lookup values, etc.) are copied as well.
+
+
+
+
+
+Enjoy and please share feedback!
From d536f35cfe4027884b5b8155b74626141d216935 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 21 Mar 2021 00:39:11 +0200
Subject: [PATCH 036/150] Update README.md
---
 .../Add-SPOWeb & Remove-SPOWeb/README.md      | 121 +++++++++++++++++-
 1 file changed, 120 insertions(+), 1 deletion(-)
diff --git a/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md b/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md
index 9c558e35..32083f2d 100644
--- a/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md	
+++ b/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md	
@@ -1 +1,120 @@
-.
+2 new SharePoint Online Powershell cmdlets to help you manage sites and subsites in your SharePoint Online subscription:
+
+## Add-SPOWeb
+
+Adds a subsite to an exisiting site collection
+
+ 
+
+## *Parameters*
+
+The cmdlet is using the following parameters:
+
+- [string]$Username
+
+The string specifies admin of the site
+
+- [string]$ParentUrl
+
+Specifies the url of the parent site
+
+- [string]$AdminPassword,       
+
+Admin's password
+
+- [string]$Title,      
+
+Specifies the title of the site
+
+- [bool]$UseSamePermissionsAsParentSite=$true,   
+
+Whether the site should use the same permissions as parent site. By default it is set to true
+
+- [string]$Description="",    
+
+Site description, not mandatory
+
+- [Int]$Language,  
+
+The language of the site. For English choose 1033. For other languages choose the correct [id](https://docs.microsoft.com/pl-pl/SharePoint/install/install-or-uninstall-language-packs?redirectedfrom=MSDN).
+
+- [string]$Url,      
+
+Url of the new site, avoid spaces.
+
+- [string]$WebTemplate="STS#0"
+
+Template of the site, e.g. teamsite, publishing portal, enterprise wiki. By default set to Teamsite template. For other template types, check [here](https://docs.microsoft.com/pl-pl/archive/blogs/)
+
+ 
+
+## Remove-SPOWeb
+
+Removes a subsite from a site collection.
+
+ 
+
+ 
+
+### *Parameters*
+
+The cmdlet is using the following parameters:
+
+- [string]$Username
+
+The string specifies admin of the site
+
+- [string]$Url
+
+Specifies the url of the site
+
+- [string]$AdminPassword,       
+
+Admin's password
+
+- [bool]$RemoveSubsites=$true
+
+If set to false, the cmdlet will ask for additional permissions if it encounters sub-sites of the site being removed. As long as one of the subsites exists, the site will never be removed. By default set to $true.
+
+ 
+
+ 
+
+*Examples* 
+
+ 
+
+Add-SPOWeb -Username trial@trialtrial123.onmicrosoft.com -ParentSiteUrl https://trialtrial123.sharepoint.com -AdminPassword Passs -Title psweb -UseSamePermissionsAsParentSite $true -Description psweb1 -Language 1033 -Url psweb -WebTemplate "STS#0
+
+ 
+
+ 
+
+Add-SPOWeb -Username trial@trialtrial123.onmicrosoft.com -ParentSiteUrl https://trialtrial123.sharepoint.com -AdminPassword Pass -Title psweb2 -UseSamePermissionsAsParentSite $true -Description psweb1 -Language1036 -Url psweb2 -WebTemplate "STS#0
+
+ 
+
+Remove-SPOWeb -Username trial@trialtrial123.onmicrosoft.com -AdminPassword Pass -Url https://trialtrial123.sharepoint.com/psweb
+
+ +
+*Requirements*
+
+ 
+
+The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the ```.psm1``` file!
+
+ 
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer.   
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"    
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+ ```
+ 
+
+ 
+
+## Let me know about your experience in the Q&A section!
From 65c6dba4304cb9c9312ebf662189f073e4ee4238 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 22 Mar 2021 18:11:22 +0200
Subject: [PATCH 037/150] Create README.md
---
 .../Set anonymous link access level for SPO tenant/README.md     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Tenant Settings/Set anonymous link access level for SPO tenant/README.md
diff --git a/Tenant Settings/Set anonymous link access level for SPO tenant/README.md b/Tenant Settings/Set anonymous link access level for SPO tenant/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Tenant Settings/Set anonymous link access level for SPO tenant/README.md	
@@ -0,0 +1 @@
+.
From a937bf4c270e88d18bc1af3e49f11f435d4bec76 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 25 Mar 2021 00:44:39 +0200
Subject: [PATCH 038/150] Update README.md
---
 .../README.md                                 | 38 ++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)
diff --git a/OTHER/Uninstall unwanted app from your site using Powershell/README.md b/OTHER/Uninstall unwanted app from your site using Powershell/README.md
index 9c558e35..89e6fb53 100644
--- a/OTHER/Uninstall unwanted app from your site using Powershell/README.md	
+++ b/OTHER/Uninstall unwanted app from your site using Powershell/README.md	
@@ -1 +1,37 @@
-.
+A simple solution to uninstall an unwanted app from a Sharepoint Online site using Powershell and the app GUID.
+
+ 
+
+1. Install [SharePoint Online SDK](http://www.microsoft.com/en-us/download/details.aspx?id=42038)
+
+2. Download the file and open (e.g. in NotePad)
+
+3. Scroll down to these lines
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
+# Insert the credentials and the name of the admin site 
+$Username="admin@tenant.onmicrosoft.com" 
+$AdminPassword=Read-Host -Prompt "Password" -AsSecureString 
+$Url="https://tenant.sharepoint.com/sites/teamsitewithlibraries" 
+$GUID="126d911b-b274-4b69-a52e-2a9e5bbae91b"
+ ```
+4. Check if the 2 libraries are in the same location on your computer. If yes, proceed on. If no, change the paths in the file. Usually you will be required to change folder name "15" into "16".
+
+5. Instead of admin@tenant.onmicrosoft.com, enter the name of your site collection admin.
+
+6. Instead of https://tenant.sharepint.com/sites/teamsitewithlibraries enter name of the site where the unwanted app is located
+
+7. Under GUID enter the app's guid. 
+
+
+Run the script in any Powershell module.
+
+It should ask you for your admin password and report success or detailed error:
+
+
+
+*Requirements*
+
+ 
+
+The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the ```.psm1``` file!
+
+ 
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer.   
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"    
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+ ```
+ 
+
+ 
+
+## Let me know about your experience in the Q&A section!
From 65c6dba4304cb9c9312ebf662189f073e4ee4238 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 22 Mar 2021 18:11:22 +0200
Subject: [PATCH 037/150] Create README.md
---
 .../Set anonymous link access level for SPO tenant/README.md     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Tenant Settings/Set anonymous link access level for SPO tenant/README.md
diff --git a/Tenant Settings/Set anonymous link access level for SPO tenant/README.md b/Tenant Settings/Set anonymous link access level for SPO tenant/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Tenant Settings/Set anonymous link access level for SPO tenant/README.md	
@@ -0,0 +1 @@
+.
From a937bf4c270e88d18bc1af3e49f11f435d4bec76 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 25 Mar 2021 00:44:39 +0200
Subject: [PATCH 038/150] Update README.md
---
 .../README.md                                 | 38 ++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)
diff --git a/OTHER/Uninstall unwanted app from your site using Powershell/README.md b/OTHER/Uninstall unwanted app from your site using Powershell/README.md
index 9c558e35..89e6fb53 100644
--- a/OTHER/Uninstall unwanted app from your site using Powershell/README.md	
+++ b/OTHER/Uninstall unwanted app from your site using Powershell/README.md	
@@ -1 +1,37 @@
-.
+A simple solution to uninstall an unwanted app from a Sharepoint Online site using Powershell and the app GUID.
+
+ 
+
+1. Install [SharePoint Online SDK](http://www.microsoft.com/en-us/download/details.aspx?id=42038)
+
+2. Download the file and open (e.g. in NotePad)
+
+3. Scroll down to these lines
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
+# Insert the credentials and the name of the admin site 
+$Username="admin@tenant.onmicrosoft.com" 
+$AdminPassword=Read-Host -Prompt "Password" -AsSecureString 
+$Url="https://tenant.sharepoint.com/sites/teamsitewithlibraries" 
+$GUID="126d911b-b274-4b69-a52e-2a9e5bbae91b"
+ ```
+4. Check if the 2 libraries are in the same location on your computer. If yes, proceed on. If no, change the paths in the file. Usually you will be required to change folder name "15" into "16".
+
+5. Instead of admin@tenant.onmicrosoft.com, enter the name of your site collection admin.
+
+6. Instead of https://tenant.sharepint.com/sites/teamsitewithlibraries enter name of the site where the unwanted app is located
+
+7. Under GUID enter the app's guid. 
+
+
+Run the script in any Powershell module.
+
+It should ask you for your admin password and report success or detailed error:
+
+ +
+**Please share your feedback in the Q&A section!**
From 1e11c525179873717db2c960f5a80d803cc7be00 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 26 Mar 2021 20:33:54 +0200
Subject: [PATCH 039/150] Update README.md
---
 Getting SPO objects with REST/README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Getting SPO objects with REST/README.md b/Getting SPO objects with REST/README.md
index 9c558e35..d486fe9b 100644
--- a/Getting SPO objects with REST/README.md	
+++ b/Getting SPO objects with REST/README.md	
@@ -1 +1,2 @@
-.
+Module that allows you to get properties of any of SharePoint objects.
+
From 85189307299267a7458725488d5c9330c0037bc2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 27 Mar 2021 15:08:57 +0200
Subject: [PATCH 040/150] Update README.md
---
 Getting SPO objects with REST/README.md | 1 +
 1 file changed, 1 insertion(+)
diff --git a/Getting SPO objects with REST/README.md b/Getting SPO objects with REST/README.md
index d486fe9b..5953f5be 100644
--- a/Getting SPO objects with REST/README.md	
+++ b/Getting SPO objects with REST/README.md	
@@ -1,2 +1,3 @@
 Module that allows you to get properties of any of SharePoint objects.
 
+ 
From 6469e9bc5497838f49754a5044b561dc1c59ed91 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 1 Apr 2021 22:00:30 +0300
Subject: [PATCH 041/150] Update README.md
From f38511e5e5204837c09b2bf12525fb8b9fe80fd2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 3 Apr 2021 22:42:28 +0300
Subject: [PATCH 042/150] Update README.md
---
 Tenant Settings/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Tenant Settings/README.md b/Tenant Settings/README.md
index 9c558e35..2413d9c4 100644
--- a/Tenant Settings/README.md	
+++ b/Tenant Settings/README.md	
@@ -1 +1 @@
-.
+Scripts related to tenant settings
From 8c97631df9b336b77a0201309fc7c7f50a5b14c0 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 4 Apr 2021 15:43:59 +0300
Subject: [PATCH 043/150] Update README.md
---
 Items Management/README.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Items Management/README.md b/Items Management/README.md
index 00ee058f..86082d1c 100644
--- a/Items Management/README.md	
+++ b/Items Management/README.md	
@@ -1,3 +1 @@
-.
- 
-   
+Scripts related to updating, deleting, adding SharePoint list items
From ab3a2a614375c8d61b1364aa045129adb9ef7893 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 7 Apr 2021 20:21:11 +0300
Subject: [PATCH 044/150] Create README.md
---
 .../Get/GetSpoListItems and GetSPOListFields/README.md           | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
diff --git a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
@@ -0,0 +1 @@
+.
From 1d96be75f819a12527bb563b87c4ed30d8c3f8ae Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 10 Apr 2021 12:08:51 +0300
Subject: [PATCH 045/150] Create README.md
---
 Pages/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Pages/README.md
diff --git a/Pages/README.md b/Pages/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Pages/README.md
@@ -0,0 +1 @@
+.
From de2a759194435f4fdce0a6815c76614a30e37b2f Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 12 Apr 2021 22:24:48 +0300
Subject: [PATCH 046/150] Update README.md
---
 .../README.md                                 | 135 +++++++++++++++++-
 1 file changed, 134 insertions(+), 1 deletion(-)
diff --git a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
index 9c558e35..18bec11b 100644
--- a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
+++ b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
@@ -1 +1,134 @@
-.
+2 new SharePoint Online Powershell cmdlets to help you view items in a SharePoint Online list:
+
+
+
 
+
+**Please share your feedback in the Q&A section!**
From 1e11c525179873717db2c960f5a80d803cc7be00 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 26 Mar 2021 20:33:54 +0200
Subject: [PATCH 039/150] Update README.md
---
 Getting SPO objects with REST/README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Getting SPO objects with REST/README.md b/Getting SPO objects with REST/README.md
index 9c558e35..d486fe9b 100644
--- a/Getting SPO objects with REST/README.md	
+++ b/Getting SPO objects with REST/README.md	
@@ -1 +1,2 @@
-.
+Module that allows you to get properties of any of SharePoint objects.
+
From 85189307299267a7458725488d5c9330c0037bc2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 27 Mar 2021 15:08:57 +0200
Subject: [PATCH 040/150] Update README.md
---
 Getting SPO objects with REST/README.md | 1 +
 1 file changed, 1 insertion(+)
diff --git a/Getting SPO objects with REST/README.md b/Getting SPO objects with REST/README.md
index d486fe9b..5953f5be 100644
--- a/Getting SPO objects with REST/README.md	
+++ b/Getting SPO objects with REST/README.md	
@@ -1,2 +1,3 @@
 Module that allows you to get properties of any of SharePoint objects.
 
+ 
From 6469e9bc5497838f49754a5044b561dc1c59ed91 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 1 Apr 2021 22:00:30 +0300
Subject: [PATCH 041/150] Update README.md
From f38511e5e5204837c09b2bf12525fb8b9fe80fd2 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 3 Apr 2021 22:42:28 +0300
Subject: [PATCH 042/150] Update README.md
---
 Tenant Settings/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Tenant Settings/README.md b/Tenant Settings/README.md
index 9c558e35..2413d9c4 100644
--- a/Tenant Settings/README.md	
+++ b/Tenant Settings/README.md	
@@ -1 +1 @@
-.
+Scripts related to tenant settings
From 8c97631df9b336b77a0201309fc7c7f50a5b14c0 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 4 Apr 2021 15:43:59 +0300
Subject: [PATCH 043/150] Update README.md
---
 Items Management/README.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Items Management/README.md b/Items Management/README.md
index 00ee058f..86082d1c 100644
--- a/Items Management/README.md	
+++ b/Items Management/README.md	
@@ -1,3 +1 @@
-.
- 
-   
+Scripts related to updating, deleting, adding SharePoint list items
From ab3a2a614375c8d61b1364aa045129adb9ef7893 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 7 Apr 2021 20:21:11 +0300
Subject: [PATCH 044/150] Create README.md
---
 .../Get/GetSpoListItems and GetSPOListFields/README.md           | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
diff --git a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
@@ -0,0 +1 @@
+.
From 1d96be75f819a12527bb563b87c4ed30d8c3f8ae Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 10 Apr 2021 12:08:51 +0300
Subject: [PATCH 045/150] Create README.md
---
 Pages/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Pages/README.md
diff --git a/Pages/README.md b/Pages/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Pages/README.md
@@ -0,0 +1 @@
+.
From de2a759194435f4fdce0a6815c76614a30e37b2f Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 12 Apr 2021 22:24:48 +0300
Subject: [PATCH 046/150] Update README.md
---
 .../README.md                                 | 135 +++++++++++++++++-
 1 file changed, 134 insertions(+), 1 deletion(-)
diff --git a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md
index 9c558e35..18bec11b 100644
--- a/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
+++ b/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md	
@@ -1 +1,134 @@
-.
+2 new SharePoint Online Powershell cmdlets to help you view items in a SharePoint Online list:
+
+
+
Get-SPOListItems
+
+Retrieves all items in a given list
+
+Parameters
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of a site where you have the list
+```powershell
+[string]$AdminPassword,
+```
+Admin's password
+```powershell
+[string]$ListName
+```
+ListName. To retrieve a table of list names, you can use [Get-SPOList](https://gallery.technet.microsoft.com/scriptcenter/GetSPOList-Module-to-view-cc4d3e9e)
+```powershell
+[bool]$IncludeAllProperties=$false
+```
+Specifies whether you should view all the available properties or just the Id and Title. By the default it is set to $false.
+
+The equivalent in Graphic User Interface (GUI) of this cmdlet would be a list view.
+
+Examples
+
++ Get all items in an announcements list
+```powershell
+Get-SPOListItems -Username  -Url -AdminPassword -ListName
+```
+ +
++ Get all items in a contacts list and their properties
+```powershell
+Get-SPOListItems -Username  -Url -AdminPassword -ListName -IncludeAllProperties $true   (example shows only one of multiple retrieved items)
+```
+
+
++ Get all items in a contacts list and their properties
+```powershell
+Get-SPOListItems -Username  -Url -AdminPassword -ListName -IncludeAllProperties $true   (example shows only one of multiple retrieved items)
+```
+ +
+Get all items in a list and their properties and export to CSV
+```powershell
+Get-SPOListItems -Username  -Url -AdminPassword -ListName -IncludeAllProperties $true | Export-CSV 
+```
+ 
++ Get all contacts from a contact list that belong to a specific company 
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Contacts list" -IncludeAllProperties $true | where {$_.Company -eq "Uogiavv"} | select Title, Company
+```
+
+
+
+Get all items in a list and their properties and export to CSV
+```powershell
+Get-SPOListItems -Username  -Url -AdminPassword -ListName -IncludeAllProperties $true | Export-CSV 
+```
+ 
++ Get all contacts from a contact list that belong to a specific company 
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Contacts list" -IncludeAllProperties $true | where {$_.Company -eq "Uogiavv"} | select Title, Company
+```
+
+ + 
++ Get all properties of a document as a list item* 
+
+
+ 
++ Get all properties of a document as a list item* 
+
+ +
+Get a list of all documents in a document library
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents" -IncludeAllProperties $true | select FileLeafRef
+```
+
+
+Get a list of all documents in a document library
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents" -IncludeAllProperties $true | select FileLeafRef
+```
+ +
++ Get a list of all documents in a document library, including folders and subfolders
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents" -IncludeAllProperties $true -Recursive | select FileLeafRef
+```
+
++ Get a list of all Excel documents in a document library
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents"  -IncludeAllProperties $true | where {$_.File_x0020_Type -eq "xlsx"} |select FileLeafRef
+```
+
+
++ Get a list of all documents in a document library, including folders and subfolders
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents" -IncludeAllProperties $true -Recursive | select FileLeafRef
+```
+
++ Get a list of all Excel documents in a document library
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents"  -IncludeAllProperties $true | where {$_.File_x0020_Type -eq "xlsx"} |select FileLeafRef
+```
+  +
++ Get a list of all Excel documents in a document library and export to CSV
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents"  -IncludeAllProperties $true | where {$_.File_x0020_Type -eq "xlsx"} |select FileLeafRef | export-csv
+```
+
+
++ Get a list of all Excel documents in a document library and export to CSV
+```powershell
+Get-SPOListItems -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Documents"  -IncludeAllProperties $true | where {$_.File_x0020_Type -eq "xlsx"} |select FileLeafRef | export-csv
+```
+ 
+
+## **Get-SPOListFields**
+
+Retrieves all columns in a given list. This includes hidden columns and excluded from views.
+
+Parameters
+
+ 
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of a site where you have the list
+```powershell
+[string]$AdminPassword,
+```
+Admin's password
+```powershell
+[string]$ListName
+```
+
+Examples
+
++ Get all fields of a links list
+```powershell
+Get-SPOListFields -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com/sites/teamsitewithlists -AdminPassword Pass -ListTitle "Links list"
+```
+ +
+
+
+Requirements
+
+The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the ```.psm1``` file!
+
+```powershell
+# Paths to SDK. Please verify location on your computer.  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"   
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+``` 
+
+
+
+### **Technicalities**
+Get-SPOListItems is using InternalName for item properties 
+18.01.15 Added recursion and -Recursive switch parameter
From 147ef36787ed6f00ca973f7c729afeae952fcf67 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 18 Apr 2021 11:51:51 +0300
Subject: [PATCH 047/150] Create README.md
---
 Lists and Libraries Management/Views/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Lists and Libraries Management/Views/README.md
diff --git a/Lists and Libraries Management/Views/README.md b/Lists and Libraries Management/Views/README.md
new file mode 100644
index 00000000..c926e415
--- /dev/null
+++ b/Lists and Libraries Management/Views/README.md	
@@ -0,0 +1 @@
+Scripts showcasing how to perform CRUD operations on list views using Powershell.
From b91a677477c0051c481616f59ea4cd2812ef6bbc Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 29 Apr 2021 19:17:49 +0300
Subject: [PATCH 048/150] Update AuditFolderStructureToXML.ps1
---
 .../Audit folder structure to XML/AuditFolderStructureToXML.ps1  | 1 -
 1 file changed, 1 deletion(-)
diff --git a/File Management/Audit folder structure/Audit folder structure to XML/AuditFolderStructureToXML.ps1 b/File Management/Audit folder structure/Audit folder structure to XML/AuditFolderStructureToXML.ps1
index 850576f4..6a00370f 100644
--- a/File Management/Audit folder structure/Audit folder structure to XML/AuditFolderStructureToXML.ps1	
+++ b/File Management/Audit folder structure/Audit folder structure to XML/AuditFolderStructureToXML.ps1	
@@ -2,7 +2,6 @@
 {
 
 param (
-
     [Parameter(Mandatory=$true,Position=0)]
     $higherLevelFolder,
     [Parameter(Mandatory=$true,Position=1)]
From 23ce0928bd0f21b473e6ed5891a8652ee8a801b6 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 6 May 2021 23:20:32 +0300
Subject: [PATCH 049/150] Update NewSPOListItem.psm1
---
 .../Create new list item using Powershell/NewSPOListItem.psm1  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Items Management/Create new list item using Powershell/NewSPOListItem.psm1 b/Items Management/Create new list item using Powershell/NewSPOListItem.psm1
index b57130e4..4837bf4c 100644
--- a/Items Management/Create new list item using Powershell/NewSPOListItem.psm1	
+++ b/Items Management/Create new list item using Powershell/NewSPOListItem.psm1	
@@ -28,12 +28,11 @@ function New-SPOListItem{
 
   $lici =New-Object Microsoft.SharePoint.Client.ListItemCreationInformation
   
-  
   $listItem = $ll.AddItem($lici)
   $listItem["Title"]=$ItemTitle
   
   if($AdditionalField -ne ""){
-   $listItem[$AdditionalField]=$AdditionalValue
+   	$listItem[$AdditionalField]=$AdditionalValue
   }
 
   $listItem.Update()
From 25529b073b91641a3378d6ede49ac9cf9c56fff3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 9 May 2021 22:01:19 +0300
Subject: [PATCH 050/150] Update disableFlows.ps1
From 3fd21e8019745a100488df682c06fa079ea07612 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Jun 2021 22:43:59 +0300
Subject: [PATCH 051/150] Update RemoveComments.ps1
---
 .../RemoveComments.ps1                                      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1 b/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1
index cd8a1665..0af9db09 100644
--- a/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1	
+++ b/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1	
@@ -2,9 +2,9 @@
 function Remove-Comments
 {
 param (
-  [Parameter(Mandatory=$true,Position=1)]
+  	[Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		$AdminPassword,
         [Parameter(Mandatory=$true,Position=3)]
 		[string]$Url
@@ -44,4 +44,4 @@ $AdminPassword=Read-Host -Prompt "Password" -AsSecureString
 $Url="https://etr56.sharepoint.com/sites/commsite"
 
 
-Remove-Comments -Username $Username -AdminPassword $AdminPassword -Url $Url
\ No newline at end of file
+Remove-Comments -Username $Username -AdminPassword $AdminPassword -Url $Url
From 66b81f05b1c1971321356383a9cce4c997ac04ba Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Jun 2021 11:46:31 +0300
Subject: [PATCH 052/150] Create README.md
---
 .../Get/List 5 latest items a user has created in list/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/List 5 latest items a user has created in list/README.md
diff --git a/Items Management/Get/List 5 latest items a user has created in list/README.md b/Items Management/Get/List 5 latest items a user has created in list/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/List 5 latest items a user has created in list/README.md	
@@ -0,0 +1 @@
+.
From 7dade7128ea4dbae5d12a243b93e69fedb818356 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Jun 2021 11:46:52 +0300
Subject: [PATCH 053/150] Update README.md
---
 .../README.md                                 | 34 ++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)
diff --git a/Items Management/Get/List 5 latest items a user has created in list/README.md b/Items Management/Get/List 5 latest items a user has created in list/README.md
index 9c558e35..0ec729bf 100644
--- a/Items Management/Get/List 5 latest items a user has created in list/README.md	
+++ b/Items Management/Get/List 5 latest items a user has created in list/README.md	
@@ -1 +1,33 @@
-.
+Powershell script that lists 5 latest files or items a user has created in a given SharePoint Online list or library.
+
+ 
+
+How to use?
+
+1.Download the script and open the file.
+
+2. Modify the following lines with appropriate paths to SharePoint SDKs:
+
+ 
+
+PowerShell
+#Paths to SDK 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+3. Enter data about your tenant:
+PowerShell
+#Enter the data 
+$username = "ana@etr56.onmicrosoft.com" 
+$Url = "https://etr56.sharepoint.com/sites/testflow" 
+$ListTitle = "Customers" 
+$UserDisplayName = "FR" 
+ $username - user who has administrative rights over the website/list
+ $url           - url of the site collection
+ $listtitle     - title of the list where you want to run the query
+ $userdisplayname  - display name of the user who modified the items
+The script will also create a report under "c:\users\public\FiveItems.csv" with file names and created date. 
+ 
+ 
+
+ 
From 647a62951df0f6edd94e72bbbca619818d936ac6 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Jun 2021 11:47:26 +0300
Subject: [PATCH 054/150] Update description.md
---
 .../description.md                                     | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/Items Management/Get/List 5 latest items a user has created in list/description.md b/Items Management/Get/List 5 latest items a user has created in list/description.md
index 0ec729bf..6f14b7d3 100644
--- a/Items Management/Get/List 5 latest items a user has created in list/description.md	
+++ b/Items Management/Get/List 5 latest items a user has created in list/description.md	
@@ -2,7 +2,7 @@ Powershell script that lists 5 latest files or items a user has created in a giv
 
  
 
-How to use?
+### How to use?
 
 1.Download the script and open the file.
 
@@ -10,13 +10,14 @@ How to use?
 
  
 
-PowerShell
+```PowerShell
 #Paths to SDK 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll"    
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.Office.Client.Policy.dll" 
+```
 3. Enter data about your tenant:
-PowerShell
+```PowerShell
 #Enter the data 
 $username = "ana@etr56.onmicrosoft.com" 
 $Url = "https://etr56.sharepoint.com/sites/testflow" 
@@ -26,6 +27,7 @@ $UserDisplayName = "FR"
  $url           - url of the site collection
  $listtitle     - title of the list where you want to run the query
  $userdisplayname  - display name of the user who modified the items
+ ```
 The script will also create a report under "c:\users\public\FiveItems.csv" with file names and created date. 
  
  
From 3e2e6e731d94b3740c39f68df4b3927b5d3f09bb Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 8 Jun 2021 18:23:59 +0300
Subject: [PATCH 055/150] Create README.md
---
 Items Management/Get/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Get/README.md
diff --git a/Items Management/Get/README.md b/Items Management/Get/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Get/README.md	
@@ -0,0 +1 @@
+.
From 7989349d2fcce4e5bb35b1347a11d9839fdaedf4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 9 Jun 2021 18:10:00 +0300
Subject: [PATCH 056/150] Create README.md
---
 Items Management/Module for item management/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Items Management/Module for item management/README.md
diff --git a/Items Management/Module for item management/README.md b/Items Management/Module for item management/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Items Management/Module for item management/README.md	
@@ -0,0 +1 @@
+.
From e8313e9d9b13eb9a769cc620471a9682cd1c4d12 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 11 Jun 2021 19:49:47 +0300
Subject: [PATCH 057/150] Update README.md
---
 .../Module for item management/README.md      | 232 +++++++++++++++++-
 1 file changed, 231 insertions(+), 1 deletion(-)
diff --git a/Items Management/Module for item management/README.md b/Items Management/Module for item management/README.md
index 9c558e35..62713602 100644
--- a/Items Management/Module for item management/README.md	
+++ b/Items Management/Module for item management/README.md	
@@ -1 +1,231 @@
-.
+5 cmdlets for item management:
+
+Update-SPOListItem
+
+Remove-SPOListItem
+
+Remove-SPOListItemPermissions
+
+Remove-SPOListItemInheritance
+
+Restore-SPOListItemInheritance
+
+ 
+
+## **Update-SPOListItem**
+
+Updates a property of an item
+
+### *Parameters*
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword,
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+```powershell
+[string]$FieldToUpdate
+```
+Mandatory. Specifies the name of the field to update. In order to get the internal names of the fields (more often than not they are different from column titles), you can use [Get-SPOListFields](https://gallery.technet.microsoft.com/scriptcenter/GetSpoListItems-and-a8ecd5fa)
+```powershell
+[string]$ValueToUpdate
+```
+Mandatory. Specifies the value of the field for this item
+
+ 
+
+## *Example:*
+
+ 
+
++ Change the name of an item (file in this example)
+
+ + 
+
++ Update a column for all items using [Get-SPOListItems cmdlet](https://gallery.technet.microsoft.com/scriptcenter/GetSpoListItems-and-a8ecd5fa)
+
+(Here we will be updating Title column to be called "Title" + the item ID number
+
+
+ 
+
++ Update a column for all items using [Get-SPOListItems cmdlet](https://gallery.technet.microsoft.com/scriptcenter/GetSpoListItems-and-a8ecd5fa)
+
+(Here we will be updating Title column to be called "Title" + the item ID number
+
+ + 
+
+And the result:
+
+
+ 
+
+And the result:
+
+ +
+
+
+
+
+## **Remove-SPOListItem**
+
+ Removes an item
+
+### *Parameters*
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword,
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+
+## *Example:*
+
+
++ Remove the item no 16 located in one of the subfolders
+
+ +
+## **Remove-SPOListItemPermissions**
+
+ Removes all permissions for an item. Only the user running the cmdlet will have access
+
+### *Parameters* 
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword,
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+
+ 
+
+## *Example:*
+
+ 
+
++ Remove the permissions
+
+Remove-SPOListItemPermissions -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com -AdminPassword Pass -ListTitle chc1 -ItemID 4
+
+
 
+
+## **Remove-SPOListItemPermissions**
+
+ Removes all permissions for an item. Only the user running the cmdlet will have access
+
+### *Parameters* 
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword,
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+
+ 
+
+## *Example:*
+
+ 
+
++ Remove the permissions
+
+Remove-SPOListItemPermissions -Username trial@trialtrial123.onmicrosoft.com -Url https://trialtrial123.sharepoint.com -AdminPassword Pass -ListTitle chc1 -ItemID 4
+
+ +
+
+
+
+
+## **Remove-SPOListItemInheritance**
+
+Stops inheriting permissions for an item
+
+### *Parameters*
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword,
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+
+
+
+## **Restore-SPOListItemInheritance**
+
+Deletes unique permissions for an item
+
+### *Parameters*
+
+ 
+
+The cmdlet is using the following parameters:
+```powershell
+ [string]$Username
+ ```
+The string specifies admin of the site
+```powershell
+[string]$Url
+```
+Specifies the url of the site
+```powershell
+[string]$AdminPassword, 
+```
+Admin's Password
+```powershell
+[string]$ListTitle
+```
+Mandatory. Specifies list title where the item is located
+```powershell
+[Int]$ItemID
+```
+Mandatory. Specifies item ID
+
+## *Requirements*
+
+ 
+
+The following libraries (SharePoint Online SDK) are required. If those libraries are in different location on your computer, please edit the .psm1 file!
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
+```
+
+
+ 
+Enjoy and please share feedback!
+ 
+
+ 
From 3c2ccc5ae7c2bc51c05e1e02c52533024aded5cb Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Nov 2021 18:20:15 +0200
Subject: [PATCH 058/150] Rename Script.ps1 to EnableVersions.ps1
---
 .../{Script.ps1 => EnableVersions.ps1}                            | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Versioning/Enable versions for selected sites and their subsites/{Script.ps1 => EnableVersions.ps1} (100%)
diff --git a/Versioning/Enable versions for selected sites and their subsites/Script.ps1 b/Versioning/Enable versions for selected sites and their subsites/EnableVersions.ps1
similarity index 100%
rename from Versioning/Enable versions for selected sites and their subsites/Script.ps1
rename to Versioning/Enable versions for selected sites and their subsites/EnableVersions.ps1
From 7bdb8dfa95785e0066b77a2d5a46e454a63f1c84 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Nov 2021 18:23:13 +0200
Subject: [PATCH 059/150] Update README.md
---
 .../README.md                                                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md b/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md
index f7154227..e13e67a2 100644
--- a/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md	
+++ b/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md	
@@ -22,8 +22,8 @@ From August 2016 and the CSOM version 16.1.5626.1200 there is an option to preve
 
  
 
-How to use?
-Download and open the .ps1 file.
+How to use?
+Download and open the .ps1 file. 
 Add correct SharePoint Online SDK libraries:
  
 
From c1de4ade8e0b9a9607bced20ddab27b1947f2c54 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Nov 2021 18:23:52 +0200
Subject: [PATCH 060/150] remove markup
---
 .../README.md                                                  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md b/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md
index e13e67a2..820d2088 100644
--- a/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md	
+++ b/Tenant Settings/Block download of all files for guests in SharePoint with Powershell and CSOM/README.md	
@@ -31,7 +31,8 @@ Add correct SharePoint Online SDK libraries:
 #Paths to SDK 
 Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "C:\Program Files\SharePoint Client Components\16.0\Assemblies\Microsoft.Online.SharePoint.Client.Tenant.dll" 
-``` Enter the correct url, the setting for the sync button, and admin login. You will be additionally prompted for the password. Do not enter it in the file: 
+``` 
+Enter the correct url, the setting for the sync button, and admin login. You will be additionally prompted for the password. Do not enter it in the file: 
  
 
 ```PowerShell
From 65940b48bcdfb55f97255a4625708ac37d10723e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Nov 2021 18:49:47 +0200
Subject: [PATCH 061/150] Create Create empty node with CSOM.ps1
---
 .../Create empty node (label)/Create empty node with CSOM.ps1    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1	
@@ -0,0 +1 @@
+.
From 4b1ed10c3ff252805c228b979a62110f861e9931 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 13 Nov 2021 18:50:11 +0200
Subject: [PATCH 062/150] Update Create empty node with CSOM.ps1
---
 .../Create empty node (label)/Create empty node with CSOM.ps1   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1
index 9c558e35..227cbe9f 100644
--- a/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1	
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1	
@@ -1 +1 @@
-.
+. it's coming :)
From 480989b4a8299c091bc71d65826fdbed859cee17 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 21 Nov 2021 18:31:02 +0200
Subject: [PATCH 063/150] Update enableFlows.ps1
---
 .../enableFlows.ps1                                            | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows.ps1
index e2055749..d5a9a080 100644
--- a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows.ps1	
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows.ps1	
@@ -1,4 +1,4 @@
-function Set-SiteColl{
+function Set-SiteColl{
 	param (
        		[Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
@@ -30,7 +30,6 @@
 
 
 
-
 #Paths to SDK
 Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"
 #Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
From 65def55d24696770e9704ce3205ee570f19e84ed Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 21 Nov 2021 18:32:38 +0200
Subject: [PATCH 064/150] Update GetSPOListEventReceivers.ps1
---
 .../GetSPOListEventReceivers.ps1                          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1 b/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1
index a946dd7d..98813942 100644
--- a/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1	
+++ b/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1	
@@ -18,10 +18,10 @@
 		Write-Host $Url " failed to connect to the site" $_.Exception.Message.ToString() -ForegroundColor Red
 	}
 
-	  $ctx.Load($ctx.Site)
-	  $ctx.Load($ctx.Web.Lists)
-	  $ctx.ExecuteQuery()
-	  Write-Host $ctx.Web.Lists.Count
+	$ctx.Load($ctx.Site)
+	$ctx.Load($ctx.Web.Lists)
+	$ctx.ExecuteQuery()
+	Write-Host $ctx.Web.Lists.Count
   
 	for($j=0;$j -lt $ctx.Web.Lists.Count;$j++){
 		  $lista=$ctx.Web.Lists[$j]
From 8e041c529af3286c8b80ed7814a388a66f05455c Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 24 Nov 2021 19:51:08 +0200
Subject: [PATCH 065/150] Update declareAsRecordsLargeLibraries.ps1
---
 .../declareAsRecordsLargeLibraries.ps1               | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1 b/File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1
index caaa592c..0ad10852 100644
--- a/File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1	
+++ b/File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1	
@@ -2,13 +2,13 @@
 {
 param (
         [Parameter(Mandatory=$true,Position=1)]
-		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
-		[string]$Url,
+	[string]$Username,
+	[Parameter(Mandatory=$true,Position=2)]
+	[string]$Url,
         [Parameter(Mandatory=$true,Position=3)]
-		$password,
+	$password,
         [Parameter(Mandatory=$true,Position=4)]
-		[string]$ListTitle
+	[string]$ListTitle
 		)
 
 
@@ -133,4 +133,4 @@ $ListTitle="Customers"
 
 
 
-Declare-Record -Username $username -Url $Url -password $AdminPassword -ListTitle $ListTitle 
\ No newline at end of file
+Declare-Record -Username $username -Url $Url -password $AdminPassword -ListTitle $ListTitle 
From 07fd14512b68f7a818dafc97b9035f6d808e3666 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 25 Nov 2021 23:38:11 +0200
Subject: [PATCH 066/150] Rename GetSPOListItems9.psm1 to GetSPOListItems.psm1
---
 .../{GetSPOListItems9.psm1 => GetSPOListItems.psm1}               | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Items Management/Get/GetSpoListItems and GetSPOListFields/{GetSPOListItems9.psm1 => GetSPOListItems.psm1} (100%)
diff --git a/Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems9.psm1 b/Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems.psm1
similarity index 100%
rename from Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems9.psm1
rename to Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems.psm1
From c2f79753dae3e09f163875ec495848978e39df94 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 26 Nov 2021 19:18:33 +0200
Subject: [PATCH 067/150] Update SetUniquePermissions for all lists.ps1
---
 .../SetUniquePermissions for all lists.ps1                      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Break inheritance for all SPO lists in a site/SetUniquePermissions for all lists.ps1 b/Lists and Libraries Management/Break inheritance for all SPO lists in a site/SetUniquePermissions for all lists.ps1
index cdc14935..1c193011 100644
--- a/Lists and Libraries Management/Break inheritance for all SPO lists in a site/SetUniquePermissions for all lists.ps1	
+++ b/Lists and Libraries Management/Break inheritance for all SPO lists in a site/SetUniquePermissions for all lists.ps1	
@@ -12,7 +12,7 @@ function Set-SPOListBreakRoleInheritance{
   
   
   
-   $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
+  $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
   $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
   $ctx.Load($ctx.Web.Lists)
From 95bd2c648c7664574909ae94880297172842cfe9 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 29 Nov 2021 23:01:13 +0200
Subject: [PATCH 068/150] Update NewTermSingle.ps1
---
 .../NewTermSingle.ps1                                          | 3 ---
 1 file changed, 3 deletions(-)
diff --git a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1 b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1
index 13d8a982..e50c1499 100644
--- a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
+++ b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
@@ -28,8 +28,6 @@
 	$ctx.ExecuteQuery()
 
 	Write-Host "Termstore" -ForegroundColor Green
-	#Write-Output $termstore
-	Write-Host "Term1"
 	$set=$termstore.GetTermSet($TermSetGuid)
 	$ctx.Load($set)
 	$ctx.Load($set.GetAllTerms())
@@ -39,7 +37,6 @@
 	$term=$set.CreateTerm($Term, $TermLanguage,$guid)
 
 	$termstore.CommitAll()
-
 	$ctx.ExecuteQuery()
 }
 
From 3c8417949dfe9d64fd85115cd13aaa04651720fa Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 1 Dec 2021 13:23:14 +0200
Subject: [PATCH 069/150] Rename desscription.md to description.md
---
 .../{desscription.md => description.md}                           | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename OneDrive for Business/Create a report on all file versions in OneDrive for Business/{desscription.md => description.md} (100%)
diff --git a/OneDrive for Business/Create a report on all file versions in OneDrive for Business/desscription.md b/OneDrive for Business/Create a report on all file versions in OneDrive for Business/description.md
similarity index 100%
rename from OneDrive for Business/Create a report on all file versions in OneDrive for Business/desscription.md
rename to OneDrive for Business/Create a report on all file versions in OneDrive for Business/description.md
From 74aa8a433f2928b5010852028b18e5802a285cec Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 3 Dec 2021 20:47:37 +0200
Subject: [PATCH 070/150] Update SetUniquePermissionsSingleList.ps1
---
 .../SetUniquePermissionsSingleList.ps1                        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Permissions/Powershell/Break role inheritance for a single list/SetUniquePermissionsSingleList.ps1 b/Permissions/Powershell/Break role inheritance for a single list/SetUniquePermissionsSingleList.ps1
index cc8d34a5..9285d759 100644
--- a/Permissions/Powershell/Break role inheritance for a single list/SetUniquePermissionsSingleList.ps1	
+++ b/Permissions/Powershell/Break role inheritance for a single list/SetUniquePermissionsSingleList.ps1	
@@ -4,7 +4,7 @@
    param (
         [Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		[string]$Url,
         [Parameter(Mandatory=$true,Position=3)]
 		$AdminPassword,
@@ -48,4 +48,4 @@ $listTitle = "Customers"
 
 # do not modify the lines below
 $AdminPassword = Read-Host "Enter password" -AsSecureString
-Set-SPOListBreakRoleInheritance -Username $username -Url $siteurl -AdminPassword $AdminPassword -ListTitle $listTitle
\ No newline at end of file
+Set-SPOListBreakRoleInheritance -Username $username -Url $siteurl -AdminPassword $AdminPassword -ListTitle $listTitle
From b9c6546de69e54e80c20c3251b8c143c4fb01a2d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 4 Dec 2021 18:31:17 +0200
Subject: [PATCH 071/150] Update RemoveComments.ps1
---
 .../RemoveComments.ps1                        | 35 +++++++++----------
 1 file changed, 16 insertions(+), 19 deletions(-)
diff --git a/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1 b/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1
index 0af9db09..161ab539 100644
--- a/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1	
+++ b/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1	
@@ -10,26 +10,23 @@ param (
 		[string]$Url
 )
 
-  $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
-  $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $AdminPassword)
-
-    try
-    {
-        $ctx.ExecuteQuery()
-    } 
-    catch [Net.WebException] 
-    {            
-        Write-Host $Url " failed to connect to the site" $_.Exception.Message.ToString() -ForegroundColor Red
-    }
-
-  $web = $ctx.Web  
-  $ctx.Load($web)
-  $ctx.ExecuteQuery()
-
-  $web.CommentsOnSitePagesDisabled = $true
-  $web.Update()
-  $ctx.ExecuteQuery()
+$ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
+$ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $AdminPassword)
+
+try{
+	$ctx.ExecuteQuery()
+} 
+catch [Net.WebException] {            
+	Write-Host $Url " failed to connect to the site" $_.Exception.Message.ToString() -ForegroundColor Red
+}
+
+$web = $ctx.Web  
+$ctx.Load($web)
+$ctx.ExecuteQuery()
 
+$web.CommentsOnSitePagesDisabled = $true
+$web.Update()
+$ctx.ExecuteQuery()
 
 }
 
From 313279c9253e1205d14fdb6f49941e0dffb1313f Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 4 Dec 2021 18:46:27 +0200
Subject: [PATCH 072/150] Create Create empty node with PnP.ps1
---
 .../Create empty node (label)/Create empty node with PnP.ps1     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1
new file mode 100644
index 00000000..f3229c5b
--- /dev/null
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1	
@@ -0,0 +1 @@
+..
From 6f02721da7fa10bb68b91c48792f5518bdf2147d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 4 Dec 2021 19:00:08 +0200
Subject: [PATCH 073/150] Update Create empty node with CSOM.ps1
---
 .../Create empty node with CSOM.ps1           | 48 ++++++++++++++++++-
 1 file changed, 47 insertions(+), 1 deletion(-)
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1
index 227cbe9f..930f52e7 100644
--- a/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1	
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1	
@@ -1 +1,47 @@
-. it's coming :)
+function New-SPONavigationNodeEmpty{ 
+	param (
+		[Parameter(Mandatory=$true,Position=1)]
+		[string]$Username,
+		[Parameter(Mandatory=$true,Position=2)]
+		$AdminPassword,
+		[Parameter(Mandatory=$true,Position=3)]
+		[string]$Url,
+		[Parameter(Mandatory=$true,Position=4)]
+		[string]$NavNodeTitle
+	)
+
+	$ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
+	$ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $AdminPassword)
+	# not necessary but I like to use it to check the connection and credentials
+  $ctx.ExecuteQuery() 
+
+	$ctx.Load($ctx.Web)
+	$ctx.ExecuteQuery()  
+
+  $quickLaunch = $Context.Web.Navigation.QuickLaunch
+  $Context.Load($Context.Web)
+  $Context.Load($quickLaunch)
+  $Context.ExecuteQuery()
+  
+  $NavigationNode = New-Object Microsoft.SharePoint.Client.NavigationNodeCreationInformation
+  $NavigationNode.Title = $NavNodeTitle
+  # The main trick :)  For SharePoint Server use an empty string for url
+  $NavigationNode.Url = "http://linkless.header/"
+  
+  $Ctx.Load($quickLaunch.Add($NavigationNode))
+  $Ctx.ExecuteQuery()
+
+}
+
+  # Paths to SDK. Please verify location on your computer.
+Add-Type -Path "c:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SharePoint.Client\v4.0_16.0.0.0__71e9bce111e9429c\Microsoft.SharePoint.Client.dll"
+Add-Type -Path "c:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SharePoint.Client.Runtime\v4.0_16.0.0.0__71e9bce111e9429c\Microsoft.SharePoint.Client.Runtime.dll"
+
+# Insert the credentials and the name of the admin site
+$Username="admin@tenant.onmicrosoft.com"
+$AdminPassword=Read-Host -Prompt "Password" -AsSecureString
+$Url = "https://tenant.sharepoint.com/sites/mysite"
+$NavNodeTitle = "Extra link to my site"
+
+
+New-SPONavigationNodeEmpty -Username $Username -AdminPassword $AdminPassword -Url $Url -NavNodeTitle $NavNodeTitle
From b4114b1129c26b3e0071f3a2f9377719873e0c74 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 4 Dec 2021 19:06:00 +0200
Subject: [PATCH 074/150] Update Create empty node with PnP.ps1
---
 .../Create empty node with PnP.ps1            | 23 ++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1
index f3229c5b..aaa626c7 100644
--- a/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1	
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1	
@@ -1 +1,22 @@
-..
+$NavNodeTitle = "Header"
+
+Connect-PnPOnline
+
+
+## SharePoint Online
+
+# add an empty link (header) to quick launch on SharePoint Online site 
+Add-PnPNavigationNode -Title $NavNodeTitle -Location QuickLaunch -Url "http://linkless.header/"
+
+# add an empty link (header) to top navigation on SharePoint Online site 
+Add-PnPNavigationNode -Title $NavNodeTitle -Location TopNavigationBar -Url "http://linkless.header/"
+
+
+
+## SharePoint Server 2016
+
+# add an empty link (header) to quick launch on SharePoint Server 2016 site
+Add-PnPNavigationNode -Title $NavNodeTitle -Location QuickLaunch -Url ""
+
+# add an empty link (header) to top navigation on SharePoint Server 2016 site
+Add-PnPNavigationNode -Title $NavNodeTitle -Location TopNavigationBar -Url ""
From 025e15640bc59449741674fb22c0bdc7c5071b08 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 4 Dec 2021 19:07:38 +0200
Subject: [PATCH 075/150] Update Create empty node with PnP.ps1
---
 .../Create empty node (label)/Create empty node with PnP.ps1     | 1 +
 1 file changed, 1 insertion(+)
diff --git a/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1 b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1
index aaa626c7..aac4a2ff 100644
--- a/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1	
+++ b/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1	
@@ -1,3 +1,4 @@
+# It's way easier than with CSOM :)
 $NavNodeTitle = "Header"
 
 Connect-PnPOnline
From 0b41815025428923dbe65fb3c2a5fb04d9fba1a6 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 5 Dec 2021 17:31:17 +0200
Subject: [PATCH 076/150] Update NoCrawlForAllLists.ps1
---
 .../NoCrawlForAllLists.ps1                                   | 5 -----
 1 file changed, 5 deletions(-)
diff --git a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawlForAllLists.ps1 b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawlForAllLists.ps1
index 403a7a96..bb22aaff 100644
--- a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawlForAllLists.ps1	
+++ b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawlForAllLists.ps1	
@@ -42,11 +42,6 @@ function Set-SPOListsNoCrawl{
 
 
 
-
-
-
-
-
 # Paths to SDK. Please verify location on your computer.
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" 
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll" 
From 4f8de340c66fbd77a55d58019dd50dfcbd9be6c3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 11 Dec 2021 22:11:55 +0200
Subject: [PATCH 077/150] Update ODBAccessRequests.ps1
---
 .../ODBAccessRequests.ps1                                | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/Tenant Settings/Globally set OneDrive for Business Access Requests and Members Can Share/ODBAccessRequests.ps1 b/Tenant Settings/Globally set OneDrive for Business Access Requests and Members Can Share/ODBAccessRequests.ps1
index 70a663da..bec2fa66 100644
--- a/Tenant Settings/Globally set OneDrive for Business Access Requests and Members Can Share/ODBAccessRequests.ps1	
+++ b/Tenant Settings/Globally set OneDrive for Business Access Requests and Members Can Share/ODBAccessRequests.ps1	
@@ -3,7 +3,7 @@
 param (
         [Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		[string]$Url,
         [Parameter(Mandatory=$true,Position=3)]
 		$password,
@@ -30,9 +30,6 @@ param (
 
 }
 
-
-
-
 #Paths to SDK
 Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"
 Add-Type -Path "C:\Program Files\SharePoint Online Management Shell\Microsoft.Online.SharePoint.PowerShell\Microsoft.Online.SharePoint.Client.Tenant.dll"  
@@ -49,6 +46,4 @@ $ODBAccessRequests="Unspecified" #On, Off, Unspecified
 
 
 
-
-
-Set-SiteColl -Username $username -Url $Url -password $AdminPassword -ODBMembersCanShare $ODBMembersCanShare -ODBAccessRequests $ODBAccessRequests
\ No newline at end of file
+Set-SiteColl -Username $username -Url $Url -password $AdminPassword -ODBMembersCanShare $ODBMembersCanShare -ODBAccessRequests $ODBAccessRequests
From 8193a93a86e33fdee9c4737f7d42e9f83204a912 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 15 Dec 2021 16:18:07 +0200
Subject: [PATCH 078/150] Update README.md
---
 Pages/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Pages/README.md b/Pages/README.md
index 9c558e35..a0dbc24c 100644
--- a/Pages/README.md
+++ b/Pages/README.md
@@ -1 +1 @@
-.
+Scripts related to SharePoint Online pages
From c30191d6479a50735c8a6062b94674a5aafd4284 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 18 Dec 2021 13:29:15 +0200
Subject: [PATCH 079/150] Update NewColumnWithProperties.psm1
---
 .../NewColumnWithProperties.psm1                       | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Lists and Libraries Management/Column Management/Create new column with properties/NewColumnWithProperties.psm1 b/Lists and Libraries Management/Column Management/Create new column with properties/NewColumnWithProperties.psm1
index 12e702c0..ac0d8040 100644
--- a/Lists and Libraries Management/Column Management/Create new column with properties/NewColumnWithProperties.psm1	
+++ b/Lists and Libraries Management/Column Management/Create new column with properties/NewColumnWithProperties.psm1	
@@ -28,7 +28,7 @@ function New-SPOListColumnWithProperties
 		[string]$Version="1"
 	)
 
-$password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
+  $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
   $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
   $ctx.Load($ctx.Web)
@@ -39,8 +39,8 @@ $password = ConvertTo-SecureString -string $AdminPassword -AsPlainText -Force
    $FieldOptions=[Microsoft.SharePoint.Client.AddFieldOptions]::AddToAllContentTypes 
    $xml=""    
    Write-Host $xml
-$List.Fields.AddFieldAsXml($xml,$true,$FieldOptions) 
-$List.Update() 
+  $List.Fields.AddFieldAsXml($xml,$true,$FieldOptions) 
+  $List.Update() 
  
   try{
          $ctx.ExecuteQuery()
@@ -51,8 +51,8 @@ $List.Update()
   }
 }
 
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
-Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+  Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+  Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
  
 
 
From e831e72ba8b23ade1d235c5a0e7a6e74919750a4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 21 Dec 2021 18:30:08 +0200
Subject: [PATCH 080/150] Update GetSPOObjects.psm1
---
 .../Unrestricted Module/GetSPOObjects.psm1                    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1 b/Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1
index 199b322a..22e9bbe9 100644
--- a/Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1	
+++ b/Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1	
@@ -13,7 +13,7 @@ param (
 
 	  $Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Username, $password)
 	  $RestUrl=$url+"/_api/"
-	  
+	   
 	  if($object -ne "")
 	  {
 	    $RestUrl+=$object
@@ -29,6 +29,7 @@ param (
         $requestStream = $response.GetResponseStream() 
         $read = New-Object System.IO.StreamReader $requestStream 
         $data=$read.ReadToEnd() 
+	
  # Because the string contains duplicate 'ID' keys.
         $results = $data.ToString().Replace("ID", "_ID") | ConvertFrom-Json 
         $objekty=$results.d.results 
@@ -43,7 +44,6 @@ param (
 
         }
         
-
   }
 
 
From be5dc51d0318eaca9d13f454da1ae89741211052 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 26 Dec 2021 20:16:28 +0200
Subject: [PATCH 081/150] Create README.md
---
 .../Enable minor versions using Powershell and CSOM/README.md    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md
diff --git a/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md b/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md	
@@ -0,0 +1 @@
+.
From 1c991766c64389133bc16c933e85ccbd89a73486 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 26 Dec 2021 20:16:52 +0200
Subject: [PATCH 082/150] Update README.md
---
 .../README.md                                 | 52 ++++++++++++++++++-
 1 file changed, 51 insertions(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md b/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md
index 9c558e35..29a817ef 100644
--- a/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md	
+++ b/Lists and Libraries Management/Versioning/Enable minor versions using Powershell and CSOM/README.md	
@@ -1 +1,51 @@
-.
+Powershell script that enables major and minor versioning for SharePoint Online library.
+
+ 
+
+ 
+
+It requires installed  [SharePoint Online SDK ](http://www.microsoft.com/en-us/download/details.aspx?id=42038)
+
+You have to enter the library data before running the script:
+
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
+# Insert the credentials and the name of the site and list 
+$AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString 
+$username="trial@trialtrial125.onmicrosoft.com" 
+$Url="https://trialtrial125.sharepoint.com/sites/teamsitewithlibraries" 
+$ListTitle="Not-Empty-Document-Library" 
+$Versioning=$true
+``` 
+ 
+
+Full description of the script is available in the article  [Versioning and SharePoint: the Powershell perspective](https://social.technet.microsoft.com/wiki/contents/articles/30115.versioning-and-sharepoint-the-powershell-perspective-part-1.aspx)
+
+ 
+
+ 
+
+## Related scripts
+ 
+
+[Enable minor versions for all SharePoint Online lists using Powershell](https://gallery.technet.microsoft.com/scriptcenter/Enable-minor-versions-for-431d4a7e)
+
+[Enable versioning for all SharePoint Online lists using Powershell](https://gallery.technet.microsoft.com/scriptcenter/Enable-versioning-for-all-ae5cfb5d)
+
+[Powershell Module for Managing SPO Lists](https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-for-b88bc2d9https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-for-b88bc2d9)
+
+[SharePoint Module for lists, items and files](https://gallery.technet.microsoft.com/scriptcenter/SharePoint-Module-for-5ecbbcf0)
+
+[Disable versioning for all lists in SharePoint Online tenant (C#)](https://gallery.technet.microsoft.com/scriptcenter/Disable-versioning-for-all-c8d11c71)
+
+[Enable versioning for all lists in SharePoint Online tenant (C#)](https://gallery.technet.microsoft.com/scriptcenter/Enable-versioning-for-all-e17ebcd0)
+
+
+
+ 
+Enjoy and please share feedback!
From 397e64368af83f25d0d9aca8b497d15e07d7ab44 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 28 Dec 2021 09:42:03 +0200
Subject: [PATCH 083/150] Create README.md
---
 .../Versioning/Get versioning settings for all lists/README.md   | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md
diff --git a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md	
@@ -0,0 +1 @@
+.
From 5d75ff2415f5b7cb0f1d74e86a48d6c8710d2e5b Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 7 Jan 2022 20:05:15 +0200
Subject: [PATCH 084/150] Create README.md
---
 .../Remove permission groups from personal files/README.md       | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Permissions/Powershell/Remove permission groups from personal files/README.md
diff --git a/Permissions/Powershell/Remove permission groups from personal files/README.md b/Permissions/Powershell/Remove permission groups from personal files/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Permissions/Powershell/Remove permission groups from personal files/README.md	
@@ -0,0 +1 @@
+.
From 42cd3f5a6d131dbc96b33ceea99f1025005ee4d5 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 7 Jan 2022 20:05:46 +0200
Subject: [PATCH 085/150] Update README.md
---
 .../README.md                                 | 49 ++++++++++++++++++-
 1 file changed, 48 insertions(+), 1 deletion(-)
diff --git a/Permissions/Powershell/Remove permission groups from personal files/README.md b/Permissions/Powershell/Remove permission groups from personal files/README.md
index 9c558e35..14965d95 100644
--- a/Permissions/Powershell/Remove permission groups from personal files/README.md	
+++ b/Permissions/Powershell/Remove permission groups from personal files/README.md	
@@ -1 +1,48 @@
-.
+The script is still in testing phase. Please beware of the side effects
+
+ 
+
+
+### Requirements
+ 
+The following script requires [SharePoint Online SDK.](https://www.microsoft.com/en-us/download/details.aspx?id=42038)
+
+ 
+
+### How to use?
+**1.** Open the following location:
+
+```"c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\"```
+
+If the location exists and you can see
+
+```Microsoft.SharePoint.Client.dll```    and
+
+```Microsoft.SharePoint.Client.Runtime.dll```
+
+Skip the next step and go to Step 3.
+
+ 
+
+**2.** If the dlls are not in this location, find them, open the file with the script and correct the following paths to the locations on your computer:
+
+```PowerShell
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+``` 
+ 
+**3.** Run the script. You will be asked for credentials and the group name during the script execution.
+
+**4.** The script will display all visible groups for the site collection (every personal site)
+
+**5.** For the personal sites where the permission group does not exist you will receive an error:
+
+ +
+ 
+
+ 
+
+ 
+
+ 
From 6c1600163ab94f79b21856ea71416a8c788cb732 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 7 Jan 2022 20:14:02 +0200
Subject: [PATCH 086/150] Update description.md
---
 .../Remove permission groups from personal files/description.md | 2 --
 1 file changed, 2 deletions(-)
diff --git a/Permissions/Powershell/Remove permission groups from personal files/description.md b/Permissions/Powershell/Remove permission groups from personal files/description.md
index 77bab2dc..c627f332 100644
--- a/Permissions/Powershell/Remove permission groups from personal files/description.md	
+++ b/Permissions/Powershell/Remove permission groups from personal files/description.md	
@@ -2,8 +2,6 @@ The script is still in testing phase. Please beware of the side effects
 
  
 
- 
-
 ### Requirements
  
 The following script requires [SharePoint Online SDK.](https://www.microsoft.com/en-us/download/details.aspx?id=42038)
From 91e1f5a966191941f1518dd736adf250e8d58406 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 18 Jan 2022 14:16:00 +0200
Subject: [PATCH 087/150] Update README.md
---
 .../README.md                                 | 33 ++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md
index 9c558e35..8ac15997 100644
--- a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md	
+++ b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md	
@@ -1 +1,32 @@
-.
+A short script that checks versioning settings for all the libraries and lists in the whole tenant.
+
+ 
+
+It requires SharePoint Online Management Shell and SharePoint SDK installed.
+
+ 
+
+It uses recurrence to find all sites in all site collections and then goes through all the lists.
+
+At the end, a csv file is generated with the lists' urls and settings:
+
+
+
+ 
+
+As the script runs you will see green lists' titles for which the setting was successfully retrieved and red for those which failed.
+
+ 
+
+ 
+
+### How to use?
+Download and open the .ps1 file.
+Add correct SharePoint Online SDK libraries:
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
From 1bfe1b212e6eea6051a1a3207186a7f3e65b8429 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 19 Jan 2022 12:08:56 +0200
Subject: [PATCH 088/150] Update GetVersioningSettings.ps1
---
 .../GetVersioningSettings.ps1                 | 47 ++++++++++---------
 1 file changed, 24 insertions(+), 23 deletions(-)
diff --git a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1 b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1
index 9210a2d5..97c5acbb 100644
--- a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1	
+++ b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1	
@@ -1,33 +1,35 @@
-function getall($urelek)
+function Get-All($Url)
 {
-  $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($urelek)
+  $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
   $ctx.Load($ctx.Web.Lists)
   $ctx.Load($ctx.Web)
   $ctx.Load($ctx.Web.Webs)
   $ctx.ExecuteQuery()
-  Write-Host 
+  
   Write-Host $ctx.Url -BackgroundColor White -ForegroundColor DarkGreen
+  
   foreach( $list in $ctx.Web.Lists)
   {
     $ctx.Load($list)
     
-        try
-        {
-        $ctx.ExecuteQuery() 
-        $VersioningDetails = New-Object PSObject -Property @{
-        'List' = $list.Title
-        'Url'= $list.ParentWebUrl
-        'Require Content Approval' = $list.EnableModeration
-        'Versioning Enabled' = $list.EnableVersioning
-        'Major Version limit' = $list.MajorVersionLimit
-        'Draft Version limit' = $list.MajorWithMinorVersionsLimit
-        'Drafts visible to' = $list.DraftVersionVisibility
-        'Checkout required' = $list.ForceCheckout
-        }
-        Write-Host $list.Title -ForegroundColor DarkGreen
+        try  {
+          $ctx.ExecuteQuery() 
+          
+          $VersioningDetails = New-Object PSObject -Property @{
+          'List' = $list.Title
+          'Url'= $list.ParentWebUrl
+          'Require Content Approval' = $list.EnableModeration
+          'Versioning Enabled' = $list.EnableVersioning
+          'Major Version limit' = $list.MajorVersionLimit
+          'Draft Version limit' = $list.MajorWithMinorVersionsLimit
+          'Drafts visible to' = $list.DraftVersionVisibility
+          'Checkout required' = $list.ForceCheckout
+          }
+        
+          Write-Host $list.Title -ForegroundColor DarkGreen
         
-        $Global:csv+= $VersioningDetails       
+          $Global:csv+= $VersioningDetails       
         }
 
         catch
@@ -37,14 +39,13 @@
         }
         
         
-
   }
 
   if($ctx.Web.Webs.Count -gt 0)
   {
     for($i=0; $i -lt $ctx.Web.Webs.Count ; $i++)
     {
-        getall($ctx.Web.Webs[$i].Url)
+        Get-All($ctx.Web.Webs[$i].Url)
     }
 
   }
@@ -63,15 +64,15 @@ Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extens
 $siteUrl = Read-Host -Prompt "Enter https://tenant-admin.sharepoint.com”
 $username = Read-Host -Prompt "Enter admin's login, e.g. admin@domain.onmicrosoft.com"
 $password = Read-Host -Prompt "Enter password" -AsSecureString
-$credy= New-Object System.Management.Automation.PSCredential($username,$password) 
-Connect-SPOService -Credential $credy -Url $siteUrl 
+$credential= New-Object System.Management.Automation.PSCredential($username,$password) 
+Connect-SPOService -Credential $credential -Url $siteUrl 
 
 $sitecollections=get-SPOSite
 $Global:csv=@()
 
 foreach($sitecoll in $sitecollections)
 {
-    getall($sitecoll.Url)
+    Get-All($sitecoll.Url)
 }
 
 # Specify the path where the log file will be published
From 5007bcada5b0a64ad800a470d13fbf8a16e13c72 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 25 Jan 2022 18:09:41 +0200
Subject: [PATCH 089/150] Create README.md
---
 Content Types/Display Forms/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Content Types/Display Forms/README.md
diff --git a/Content Types/Display Forms/README.md b/Content Types/Display Forms/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Content Types/Display Forms/README.md	
@@ -0,0 +1 @@
+.
From 6b987a65c8f8224f0c8ca11286af4e76e95de409 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 26 Jan 2022 20:04:43 +0200
Subject: [PATCH 090/150] Update README.md
---
 Content Types/Display Forms/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Content Types/Display Forms/README.md b/Content Types/Display Forms/README.md
index 9c558e35..5ce829e1 100644
--- a/Content Types/Display Forms/README.md	
+++ b/Content Types/Display Forms/README.md	
@@ -1 +1 @@
-.
+Scripts regarding SharePoint item display form 
From c7662b66b01babecb986890d12009eab8ac7bc3e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:40:21 +0200
Subject: [PATCH 091/150] Create disableFlows_UsingPnP.ps1
---
 .../disableFlows_UsingPnP.ps1                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1
diff --git a/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1 b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1	
@@ -0,0 +1 @@
+.
From a8e303ca7c07de255c62642bd47e77ce1c3da67e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:40:49 +0200
Subject: [PATCH 092/150] Create disableFlows_UsingSPOManagementShell.ps1
---
 .../disableFlows_UsingSPOManagementShell.ps1                     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1
diff --git a/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1 b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1	
@@ -0,0 +1 @@
+.
From 26bc7af906cd51dae28bbabadb9bba49d0bfe873 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:41:23 +0200
Subject: [PATCH 093/150] Create enableFlows_usingPnP.ps1
---
 .../enableFlows_usingPnP.ps1                                     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 3c783cc154beefbb23f3640fbef56ce2f3c80137 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:41:52 +0200
Subject: [PATCH 094/150] Create enableFlows_usingSPOManagementShell.ps1
---
 .../enableFlows_usingSPOManagementShell.ps1                      | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1	
@@ -0,0 +1 @@
+.
From 70012be71fa1e816d6368c069dd30c1dc4989e7c Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 29 Jan 2022 22:30:20 +0200
Subject: [PATCH 095/150] Create GetFlowsPolicy_usingPnP.ps1
---
 .../Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1   | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1
diff --git a/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1 b/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 52f5a1430d489aaebd5e4f61d0220f62e5aefb33 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 2 Feb 2022 18:37:50 +0200
Subject: [PATCH 096/150] Update RemovePermissionGroups.ps1
---
 .../RemovePermissionGroups.ps1                              | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1 b/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1
index 1b69e1ea..7ed7d3ff 100644
--- a/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1	
+++ b/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1	
@@ -16,7 +16,7 @@ function Remove-SPOPermissionGroup{
 	  $ctx.Load($ctx.Web)
 	  $ctx.ExecuteQuery()
 	  $Groups = $ctx.Web.SiteGroups
-	 $ctx.Load($Groups)
+	  $ctx.Load($Groups)
 	  $ctx.ExecuteQuery()
    
 	foreach($group in $Groups){
@@ -28,10 +28,6 @@ function Remove-SPOPermissionGroup{
      $ctx.ExecuteQuery()
  } 
 
-  
-  
-  
-
 
   # Paths to SDK. Please verify location on your computer.
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" 
From f5a0f352866d8740f2acb706c1852c69da617aab Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 4 Feb 2022 21:28:48 +0200
Subject: [PATCH 097/150] Create README.md
---
 Content Types/Content Types Management Setting/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Content Types/Content Types Management Setting/README.md
diff --git a/Content Types/Content Types Management Setting/README.md b/Content Types/Content Types Management Setting/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Content Types/Content Types Management Setting/README.md	
@@ -0,0 +1 @@
+.
From 3453941e34e68103cad68c4829e014244bbefb81 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Feb 2022 19:13:01 +0200
Subject: [PATCH 098/150] Update README.md
---
 Content Types/Content Types Management Setting/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Content Types/Content Types Management Setting/README.md b/Content Types/Content Types Management Setting/README.md
index 9c558e35..a8613259 100644
--- a/Content Types/Content Types Management Setting/README.md	
+++ b/Content Types/Content Types Management Setting/README.md	
@@ -1 +1 @@
-.
+Scripts allowing you to enable / disable content type management.
From d56717c3d8153ec8a96865e6122514653ade2da4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 6 Feb 2022 21:33:43 +0200
Subject: [PATCH 099/150] Create NoCrawl_usingPnP.ps1
---
 .../NoCrawl_usingPnP.ps1                                         | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
diff --git a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1 b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 12d0111cfa920c8fba8ca8f46e2cf49d53d8e6df Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 10 Feb 2022 20:47:22 +0200
Subject: [PATCH 100/150] Create README.md
---
 .../Records Management/Undeclare files as records/README.md      | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 File Management/Records Management/Undeclare files as records/README.md
diff --git a/File Management/Records Management/Undeclare files as records/README.md b/File Management/Records Management/Undeclare files as records/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/File Management/Records Management/Undeclare files as records/README.md	
@@ -0,0 +1 @@
+.
From 0e613f5c64257e6584bb1b21c4178c886e2b05c3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:54:43 +0200
Subject: [PATCH 101/150] Update README.md
---
 .../README.md                                 | 20 -------------------
 1 file changed, 20 deletions(-)
diff --git a/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md b/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md
index 28d672ea..bcf24a4e 100644
--- a/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md	
+++ b/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md	
@@ -34,23 +34,3 @@ Enter your credentials and the site where you want to modify the inheritance.
 Verify if the SharePoint Online SDK is installed in the same location on your computer
  
 
- 
-
- 
-
- 
-
- 
-
-Related scripts:
-
-Delete unique permissions in all items in one single list using Powershell 
-
-Delete unique permissions for all lists
-
-Break inheritance for all lists
-
-Modify inherited permissions for a SharePoint Online site (module)
-
-Modify list permissions with Powershell cmdlets (module)
-
From e088e7fbe8686b7607b418ad7074a1e694ecf8e6 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:55:30 +0200
Subject: [PATCH 102/150] Update FindLargeLists.ps1
---
 .../Get large SharePoint Online lists/FindLargeLists.ps1     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1 b/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1
index 1ad2ff58..5ef32536 100644
--- a/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1	
+++ b/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1	
@@ -2,9 +2,9 @@
 function Get-LargeLists
 {
 param (
-  [Parameter(Mandatory=$true,Position=1)]
+  	[Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		$AdminPassword,
         [Parameter(Mandatory=$true,Position=3)]
 		[string]$Url,
@@ -84,4 +84,3 @@ foreach($site in $sites)
 }
 
 
-
From 14dca804d9a3918e33ac7cd28346923d41eb5aeb Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:56:50 +0200
Subject: [PATCH 103/150] Update README.md
---
 .../README.md                                 | 25 ++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/User Profiles/Export all user profiles using Powershell/README.md b/User Profiles/Export all user profiles using Powershell/README.md
index 9c558e35..34f308f6 100644
--- a/User Profiles/Export all user profiles using Powershell/README.md	
+++ b/User Profiles/Export all user profiles using Powershell/README.md	
@@ -1 +1,24 @@
-.
+The script retrieves all user profile properties for SharePoint Online users within one site.
+
+The script uses the following endpoint to retrieve a user property:
+
+```/_api/SP.UserProfiles.PeopleManager/GetPropertiesFor(accountName=@v)?@v=''```
+
+
+For more details, please consult:
+
+[User profiles REST API reference](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-rest-reference/dn790354(v=office.15)?redirectedfrom=MSDN)
+
+## How to use?
+
+Download, open the script and enter correct values in the following lines:
+
+```PowerShell
+$SiteUrl="https://t321.sharepoint.com" 
+$AdminCenter="https://t321-admin.sharepoint.com" 
+$ExportTo="C:\Users\Arletka\Documents\SpUsers3.csv"
+ ```
+ 
+## Expected results
+
+
+
+ 
+
+ 
+
+ 
+
+ 
From 6c1600163ab94f79b21856ea71416a8c788cb732 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 7 Jan 2022 20:14:02 +0200
Subject: [PATCH 086/150] Update description.md
---
 .../Remove permission groups from personal files/description.md | 2 --
 1 file changed, 2 deletions(-)
diff --git a/Permissions/Powershell/Remove permission groups from personal files/description.md b/Permissions/Powershell/Remove permission groups from personal files/description.md
index 77bab2dc..c627f332 100644
--- a/Permissions/Powershell/Remove permission groups from personal files/description.md	
+++ b/Permissions/Powershell/Remove permission groups from personal files/description.md	
@@ -2,8 +2,6 @@ The script is still in testing phase. Please beware of the side effects
 
  
 
- 
-
 ### Requirements
  
 The following script requires [SharePoint Online SDK.](https://www.microsoft.com/en-us/download/details.aspx?id=42038)
From 91e1f5a966191941f1518dd736adf250e8d58406 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 18 Jan 2022 14:16:00 +0200
Subject: [PATCH 087/150] Update README.md
---
 .../README.md                                 | 33 ++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md
index 9c558e35..8ac15997 100644
--- a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md	
+++ b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md	
@@ -1 +1,32 @@
-.
+A short script that checks versioning settings for all the libraries and lists in the whole tenant.
+
+ 
+
+It requires SharePoint Online Management Shell and SharePoint SDK installed.
+
+ 
+
+It uses recurrence to find all sites in all site collections and then goes through all the lists.
+
+At the end, a csv file is generated with the lists' urls and settings:
+
+
+
+ 
+
+As the script runs you will see green lists' titles for which the setting was successfully retrieved and red for those which failed.
+
+ 
+
+ 
+
+### How to use?
+Download and open the .ps1 file.
+Add correct SharePoint Online SDK libraries:
+ 
+
+```PowerShell
+# Paths to SDK. Please verify location on your computer. 
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"  
+Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  
+ 
From 1bfe1b212e6eea6051a1a3207186a7f3e65b8429 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 19 Jan 2022 12:08:56 +0200
Subject: [PATCH 088/150] Update GetVersioningSettings.ps1
---
 .../GetVersioningSettings.ps1                 | 47 ++++++++++---------
 1 file changed, 24 insertions(+), 23 deletions(-)
diff --git a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1 b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1
index 9210a2d5..97c5acbb 100644
--- a/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1	
+++ b/Lists and Libraries Management/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1	
@@ -1,33 +1,35 @@
-function getall($urelek)
+function Get-All($Url)
 {
-  $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($urelek)
+  $ctx=New-Object Microsoft.SharePoint.Client.ClientContext($Url)
   $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
   $ctx.Load($ctx.Web.Lists)
   $ctx.Load($ctx.Web)
   $ctx.Load($ctx.Web.Webs)
   $ctx.ExecuteQuery()
-  Write-Host 
+  
   Write-Host $ctx.Url -BackgroundColor White -ForegroundColor DarkGreen
+  
   foreach( $list in $ctx.Web.Lists)
   {
     $ctx.Load($list)
     
-        try
-        {
-        $ctx.ExecuteQuery() 
-        $VersioningDetails = New-Object PSObject -Property @{
-        'List' = $list.Title
-        'Url'= $list.ParentWebUrl
-        'Require Content Approval' = $list.EnableModeration
-        'Versioning Enabled' = $list.EnableVersioning
-        'Major Version limit' = $list.MajorVersionLimit
-        'Draft Version limit' = $list.MajorWithMinorVersionsLimit
-        'Drafts visible to' = $list.DraftVersionVisibility
-        'Checkout required' = $list.ForceCheckout
-        }
-        Write-Host $list.Title -ForegroundColor DarkGreen
+        try  {
+          $ctx.ExecuteQuery() 
+          
+          $VersioningDetails = New-Object PSObject -Property @{
+          'List' = $list.Title
+          'Url'= $list.ParentWebUrl
+          'Require Content Approval' = $list.EnableModeration
+          'Versioning Enabled' = $list.EnableVersioning
+          'Major Version limit' = $list.MajorVersionLimit
+          'Draft Version limit' = $list.MajorWithMinorVersionsLimit
+          'Drafts visible to' = $list.DraftVersionVisibility
+          'Checkout required' = $list.ForceCheckout
+          }
+        
+          Write-Host $list.Title -ForegroundColor DarkGreen
         
-        $Global:csv+= $VersioningDetails       
+          $Global:csv+= $VersioningDetails       
         }
 
         catch
@@ -37,14 +39,13 @@
         }
         
         
-
   }
 
   if($ctx.Web.Webs.Count -gt 0)
   {
     for($i=0; $i -lt $ctx.Web.Webs.Count ; $i++)
     {
-        getall($ctx.Web.Webs[$i].Url)
+        Get-All($ctx.Web.Webs[$i].Url)
     }
 
   }
@@ -63,15 +64,15 @@ Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extens
 $siteUrl = Read-Host -Prompt "Enter https://tenant-admin.sharepoint.com”
 $username = Read-Host -Prompt "Enter admin's login, e.g. admin@domain.onmicrosoft.com"
 $password = Read-Host -Prompt "Enter password" -AsSecureString
-$credy= New-Object System.Management.Automation.PSCredential($username,$password) 
-Connect-SPOService -Credential $credy -Url $siteUrl 
+$credential= New-Object System.Management.Automation.PSCredential($username,$password) 
+Connect-SPOService -Credential $credential -Url $siteUrl 
 
 $sitecollections=get-SPOSite
 $Global:csv=@()
 
 foreach($sitecoll in $sitecollections)
 {
-    getall($sitecoll.Url)
+    Get-All($sitecoll.Url)
 }
 
 # Specify the path where the log file will be published
From 5007bcada5b0a64ad800a470d13fbf8a16e13c72 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 25 Jan 2022 18:09:41 +0200
Subject: [PATCH 089/150] Create README.md
---
 Content Types/Display Forms/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Content Types/Display Forms/README.md
diff --git a/Content Types/Display Forms/README.md b/Content Types/Display Forms/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Content Types/Display Forms/README.md	
@@ -0,0 +1 @@
+.
From 6b987a65c8f8224f0c8ca11286af4e76e95de409 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 26 Jan 2022 20:04:43 +0200
Subject: [PATCH 090/150] Update README.md
---
 Content Types/Display Forms/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Content Types/Display Forms/README.md b/Content Types/Display Forms/README.md
index 9c558e35..5ce829e1 100644
--- a/Content Types/Display Forms/README.md	
+++ b/Content Types/Display Forms/README.md	
@@ -1 +1 @@
-.
+Scripts regarding SharePoint item display form 
From c7662b66b01babecb986890d12009eab8ac7bc3e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:40:21 +0200
Subject: [PATCH 091/150] Create disableFlows_UsingPnP.ps1
---
 .../disableFlows_UsingPnP.ps1                                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1
diff --git a/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1 b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1	
@@ -0,0 +1 @@
+.
From a8e303ca7c07de255c62642bd47e77ce1c3da67e Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:40:49 +0200
Subject: [PATCH 092/150] Create disableFlows_UsingSPOManagementShell.ps1
---
 .../disableFlows_UsingSPOManagementShell.ps1                     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1
diff --git a/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1 b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1	
@@ -0,0 +1 @@
+.
From 26bc7af906cd51dae28bbabadb9bba49d0bfe873 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:41:23 +0200
Subject: [PATCH 093/150] Create enableFlows_usingPnP.ps1
---
 .../enableFlows_usingPnP.ps1                                     | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 3c783cc154beefbb23f3640fbef56ce2f3c80137 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 27 Jan 2022 20:41:52 +0200
Subject: [PATCH 094/150] Create enableFlows_usingSPOManagementShell.ps1
---
 .../enableFlows_usingSPOManagementShell.ps1                      | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1	
@@ -0,0 +1 @@
+.
From 70012be71fa1e816d6368c069dd30c1dc4989e7c Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 29 Jan 2022 22:30:20 +0200
Subject: [PATCH 095/150] Create GetFlowsPolicy_usingPnP.ps1
---
 .../Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1   | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1
diff --git a/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1 b/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 52f5a1430d489aaebd5e4f61d0220f62e5aefb33 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 2 Feb 2022 18:37:50 +0200
Subject: [PATCH 096/150] Update RemovePermissionGroups.ps1
---
 .../RemovePermissionGroups.ps1                              | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1 b/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1
index 1b69e1ea..7ed7d3ff 100644
--- a/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1	
+++ b/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1	
@@ -16,7 +16,7 @@ function Remove-SPOPermissionGroup{
 	  $ctx.Load($ctx.Web)
 	  $ctx.ExecuteQuery()
 	  $Groups = $ctx.Web.SiteGroups
-	 $ctx.Load($Groups)
+	  $ctx.Load($Groups)
 	  $ctx.ExecuteQuery()
    
 	foreach($group in $Groups){
@@ -28,10 +28,6 @@ function Remove-SPOPermissionGroup{
      $ctx.ExecuteQuery()
  } 
 
-  
-  
-  
-
 
   # Paths to SDK. Please verify location on your computer.
 Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll" 
From f5a0f352866d8740f2acb706c1852c69da617aab Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Fri, 4 Feb 2022 21:28:48 +0200
Subject: [PATCH 097/150] Create README.md
---
 Content Types/Content Types Management Setting/README.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Content Types/Content Types Management Setting/README.md
diff --git a/Content Types/Content Types Management Setting/README.md b/Content Types/Content Types Management Setting/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Content Types/Content Types Management Setting/README.md	
@@ -0,0 +1 @@
+.
From 3453941e34e68103cad68c4829e014244bbefb81 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Feb 2022 19:13:01 +0200
Subject: [PATCH 098/150] Update README.md
---
 Content Types/Content Types Management Setting/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Content Types/Content Types Management Setting/README.md b/Content Types/Content Types Management Setting/README.md
index 9c558e35..a8613259 100644
--- a/Content Types/Content Types Management Setting/README.md	
+++ b/Content Types/Content Types Management Setting/README.md	
@@ -1 +1 @@
-.
+Scripts allowing you to enable / disable content type management.
From d56717c3d8153ec8a96865e6122514653ade2da4 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sun, 6 Feb 2022 21:33:43 +0200
Subject: [PATCH 099/150] Create NoCrawl_usingPnP.ps1
---
 .../NoCrawl_usingPnP.ps1                                         | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
diff --git a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1 b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
@@ -0,0 +1 @@
+.
From 12d0111cfa920c8fba8ca8f46e2cf49d53d8e6df Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Thu, 10 Feb 2022 20:47:22 +0200
Subject: [PATCH 100/150] Create README.md
---
 .../Records Management/Undeclare files as records/README.md      | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 File Management/Records Management/Undeclare files as records/README.md
diff --git a/File Management/Records Management/Undeclare files as records/README.md b/File Management/Records Management/Undeclare files as records/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/File Management/Records Management/Undeclare files as records/README.md	
@@ -0,0 +1 @@
+.
From 0e613f5c64257e6584bb1b21c4178c886e2b05c3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:54:43 +0200
Subject: [PATCH 101/150] Update README.md
---
 .../README.md                                 | 20 -------------------
 1 file changed, 20 deletions(-)
diff --git a/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md b/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md
index 28d672ea..bcf24a4e 100644
--- a/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md	
+++ b/Lists and Libraries Management/Delete unique permissions in all items in a large list (5000+ items)/README.md	
@@ -34,23 +34,3 @@ Enter your credentials and the site where you want to modify the inheritance.
 Verify if the SharePoint Online SDK is installed in the same location on your computer
  
 
- 
-
- 
-
- 
-
- 
-
-Related scripts:
-
-Delete unique permissions in all items in one single list using Powershell 
-
-Delete unique permissions for all lists
-
-Break inheritance for all lists
-
-Modify inherited permissions for a SharePoint Online site (module)
-
-Modify list permissions with Powershell cmdlets (module)
-
From e088e7fbe8686b7607b418ad7074a1e694ecf8e6 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:55:30 +0200
Subject: [PATCH 102/150] Update FindLargeLists.ps1
---
 .../Get large SharePoint Online lists/FindLargeLists.ps1     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1 b/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1
index 1ad2ff58..5ef32536 100644
--- a/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1	
+++ b/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1	
@@ -2,9 +2,9 @@
 function Get-LargeLists
 {
 param (
-  [Parameter(Mandatory=$true,Position=1)]
+  	[Parameter(Mandatory=$true,Position=1)]
 		[string]$Username,
-		[Parameter(Mandatory=$true,Position=2)]
+	[Parameter(Mandatory=$true,Position=2)]
 		$AdminPassword,
         [Parameter(Mandatory=$true,Position=3)]
 		[string]$Url,
@@ -84,4 +84,3 @@ foreach($site in $sites)
 }
 
 
-
From 14dca804d9a3918e33ac7cd28346923d41eb5aeb Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:56:50 +0200
Subject: [PATCH 103/150] Update README.md
---
 .../README.md                                 | 25 ++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/User Profiles/Export all user profiles using Powershell/README.md b/User Profiles/Export all user profiles using Powershell/README.md
index 9c558e35..34f308f6 100644
--- a/User Profiles/Export all user profiles using Powershell/README.md	
+++ b/User Profiles/Export all user profiles using Powershell/README.md	
@@ -1 +1,24 @@
-.
+The script retrieves all user profile properties for SharePoint Online users within one site.
+
+The script uses the following endpoint to retrieve a user property:
+
+```/_api/SP.UserProfiles.PeopleManager/GetPropertiesFor(accountName=@v)?@v=''```
+
+
+For more details, please consult:
+
+[User profiles REST API reference](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-rest-reference/dn790354(v=office.15)?redirectedfrom=MSDN)
+
+## How to use?
+
+Download, open the script and enter correct values in the following lines:
+
+```PowerShell
+$SiteUrl="https://t321.sharepoint.com" 
+$AdminCenter="https://t321-admin.sharepoint.com" 
+$ExportTo="C:\Users\Arletka\Documents\SpUsers3.csv"
+ ```
+ 
+## Expected results
+
+ From f30eee476665cfc8fe7ec81c228d0ef3932c4a96 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:58:13 +0200
Subject: [PATCH 104/150] Update ExportSPOUserAllPropertiesWithREST.ps1
---
 .../ExportSPOUserAllPropertiesWithREST.ps1             | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1 b/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1
index 374e29b6..54db5977 100644
--- a/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1	
+++ b/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1	
@@ -45,13 +45,13 @@ $users=Get-SPOUser -Site $SiteUrl
 
 foreach($user in $users){
     Write-Verbose $user.LoginName
-    $props=Get-SPOUserProperty -Username $cred.UserName -Url $SiteUrl -password $cred.Password -userLogin $user.LoginName 
-    $uss=New-Object PSObject
+    $properties=Get-SPOUserProperty -Username $cred.UserName -Url $SiteUrl -password $cred.Password -userLogin $user.LoginName 
+    $userObject=New-Object PSObject
     
-    foreach($prop in $props){
-        $uss | Add-Member -MemberType NoteProperty -Name $prop.Key -Value $prop.Value
+    foreach($property in $properties){
+        $userObject | Add-Member -MemberType NoteProperty -Name $prop.Key -Value $prop.Value
     }
     
-    $uss | Export-Csv -Path $ExportTo -Append -Force
+    $userObject | Export-Csv -Path $ExportTo -Append -Force
 }
 
From ef2f35e91a836cab11aab381c36828a4bd5f0263 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:16:06 +0100
Subject: [PATCH 105/150] Create ListAllFlowsUsingPnP
---
 Power Automate/ListAllFlowsUsingPnP | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 Power Automate/ListAllFlowsUsingPnP
diff --git a/Power Automate/ListAllFlowsUsingPnP b/Power Automate/ListAllFlowsUsingPnP
new file mode 100644
index 00000000..9c225507
--- /dev/null
+++ b/Power Automate/ListAllFlowsUsingPnP	
@@ -0,0 +1,13 @@
+
+Connect-PnPOnline
+
+$environment = Get-PnPPowerPlatformEnvironment
+
+# lists all the flows in environment
+Get-PnPFlow -Environment $environment -AsAdmin
+
+#lists all the flows available to you as a user
+Get-PnPFlow -Environment $environment
+
+
+# I am afraid that's it :)    PnP is really simple
From 029351551983e30f2a789a9d51c4767bfab6dfd1 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:17:11 +0100
Subject: [PATCH 106/150] Create ListAllFlowsUsingPnP.ps1
---
 Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
@@ -0,0 +1 @@
+.
From c46d90fca53bc618ce8fd669983871a3d1c7ef32 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:17:42 +0100
Subject: [PATCH 107/150] Update ListAllFlowsUsingPnP.ps1
---
 .../ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
index 9c558e35..9c225507 100644
--- a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
+++ b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
@@ -1 +1,13 @@
-.
+
+Connect-PnPOnline
+
+$environment = Get-PnPPowerPlatformEnvironment
+
+# lists all the flows in environment
+Get-PnPFlow -Environment $environment -AsAdmin
+
+#lists all the flows available to you as a user
+Get-PnPFlow -Environment $environment
+
+
+# I am afraid that's it :)    PnP is really simple
From 0dd7e891a799fd21030f6f40698c064c8f812431 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:18:01 +0100
Subject: [PATCH 108/150] Delete ListAllFlowsUsingPnP
---
 Power Automate/ListAllFlowsUsingPnP | 13 -------------
 1 file changed, 13 deletions(-)
 delete mode 100644 Power Automate/ListAllFlowsUsingPnP
diff --git a/Power Automate/ListAllFlowsUsingPnP b/Power Automate/ListAllFlowsUsingPnP
deleted file mode 100644
index 9c225507..00000000
--- a/Power Automate/ListAllFlowsUsingPnP	
+++ /dev/null
@@ -1,13 +0,0 @@
-
-Connect-PnPOnline
-
-$environment = Get-PnPPowerPlatformEnvironment
-
-# lists all the flows in environment
-Get-PnPFlow -Environment $environment -AsAdmin
-
-#lists all the flows available to you as a user
-Get-PnPFlow -Environment $environment
-
-
-# I am afraid that's it :)    PnP is really simple
From b54a0ed9eacba8253bfb2c2c75681404a6507b6d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:18:33 +0100
Subject: [PATCH 109/150] Rename Power
 Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 to Power
 Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
---
 .../ListAllFlowsUsingPnP.ps1                                      | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Power Automate/{ListAllFlowsUsingPnP2 => ListAllFlowsUsingPnP}/ListAllFlowsUsingPnP.ps1 (100%)
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
similarity index 100%
rename from Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
rename to Power Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
From 44c88f0c6d3e47f96efcbb931481380659a1d38d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Mar 2022 21:36:43 +0100
Subject: [PATCH 110/150] Update NewTermSingle.ps1
---
 .../NewTermSingle.ps1                                          | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1 b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1
index e50c1499..d2b91962 100644
--- a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
+++ b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
@@ -27,13 +27,12 @@
 	$ctx.Load($termstore)
 	$ctx.ExecuteQuery()
 
-	Write-Host "Termstore" -ForegroundColor Green
 	$set=$termstore.GetTermSet($TermSetGuid)
 	$ctx.Load($set)
 	$ctx.Load($set.GetAllTerms())
 	$ctx.ExecuteQuery()
 	$guid = [guid]::NewGuid()
-	Write-Host $guid
+	Write-Host "Creating term with the following guid: $guid"
 	$term=$set.CreateTerm($Term, $TermLanguage,$guid)
 
 	$termstore.CommitAll()
From b90fef0773b525b2759fe1b5b97b850e208df243 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:24:41 +0200
Subject: [PATCH 111/150] Update README.md
---
 User Profiles/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/User Profiles/README.md b/User Profiles/README.md
index 9c558e35..3e9d7d9e 100644
--- a/User Profiles/README.md	
+++ b/User Profiles/README.md	
@@ -1 +1 @@
-.
+Scripts related to SharePoint user profiles. 
From 4ebd47cf6c5da1a52be914e4d7f3a6b96b5622a3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:25:14 +0200
Subject: [PATCH 112/150] Create README.md
---
 .../Get MUI Languages for multiple users using REST/README.md    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 User Profiles/Get MUI Languages for multiple users using REST/README.md
diff --git a/User Profiles/Get MUI Languages for multiple users using REST/README.md b/User Profiles/Get MUI Languages for multiple users using REST/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/User Profiles/Get MUI Languages for multiple users using REST/README.md	
@@ -0,0 +1 @@
+.
From b88e2a372728813f0b861096d0ec1e92c338b02a Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:25:52 +0200
Subject: [PATCH 113/150] Update README.md
---
 .../README.md                                 | 27 ++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/User Profiles/Get MUI Languages for multiple users using REST/README.md b/User Profiles/Get MUI Languages for multiple users using REST/README.md
index 9c558e35..8cf1df11 100644
--- a/User Profiles/Get MUI Languages for multiple users using REST/README.md	
+++ b/User Profiles/Get MUI Languages for multiple users using REST/README.md	
@@ -1 +1,26 @@
-.
+The script retrieves a SPS-MUILanguages property for specified SharePoint Online users.
+
+The script uses the following endpoint to retrieve a user property:
+
+```/getuserprofilepropertyfor(accountname=@v, propertyname='')?@v=''```
+
+For more details, please consult:
+
+[User profiles REST API reference](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-rest-reference/dn790354(v=office.15)?redirectedfrom=MSDN)
+
+## How to use?
+ 
+Download, open the script and enter correct values in the following lines:
+
+```PowerShell
+#Enter the data 
+$AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString 
+$username="t@t321.onmicrosoft.com" 
+$Url="https://t321.sharepoint.com" 
+ 
+ 
+$userLogins=("t@t321.onmicrosoft.com","user1@t321.onmicrosoft.com","user2@t321.onmicrosoft.com","user5@t321.onmicrosoft.com","yasen@t321.onmicrosoft.com") 
+ ```
+## Expected results
+ 
+
From f30eee476665cfc8fe7ec81c228d0ef3932c4a96 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Feb 2022 18:58:13 +0200
Subject: [PATCH 104/150] Update ExportSPOUserAllPropertiesWithREST.ps1
---
 .../ExportSPOUserAllPropertiesWithREST.ps1             | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1 b/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1
index 374e29b6..54db5977 100644
--- a/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1	
+++ b/User Profiles/Export all user profiles using Powershell/ExportSPOUserAllPropertiesWithREST.ps1	
@@ -45,13 +45,13 @@ $users=Get-SPOUser -Site $SiteUrl
 
 foreach($user in $users){
     Write-Verbose $user.LoginName
-    $props=Get-SPOUserProperty -Username $cred.UserName -Url $SiteUrl -password $cred.Password -userLogin $user.LoginName 
-    $uss=New-Object PSObject
+    $properties=Get-SPOUserProperty -Username $cred.UserName -Url $SiteUrl -password $cred.Password -userLogin $user.LoginName 
+    $userObject=New-Object PSObject
     
-    foreach($prop in $props){
-        $uss | Add-Member -MemberType NoteProperty -Name $prop.Key -Value $prop.Value
+    foreach($property in $properties){
+        $userObject | Add-Member -MemberType NoteProperty -Name $prop.Key -Value $prop.Value
     }
     
-    $uss | Export-Csv -Path $ExportTo -Append -Force
+    $userObject | Export-Csv -Path $ExportTo -Append -Force
 }
 
From ef2f35e91a836cab11aab381c36828a4bd5f0263 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:16:06 +0100
Subject: [PATCH 105/150] Create ListAllFlowsUsingPnP
---
 Power Automate/ListAllFlowsUsingPnP | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 Power Automate/ListAllFlowsUsingPnP
diff --git a/Power Automate/ListAllFlowsUsingPnP b/Power Automate/ListAllFlowsUsingPnP
new file mode 100644
index 00000000..9c225507
--- /dev/null
+++ b/Power Automate/ListAllFlowsUsingPnP	
@@ -0,0 +1,13 @@
+
+Connect-PnPOnline
+
+$environment = Get-PnPPowerPlatformEnvironment
+
+# lists all the flows in environment
+Get-PnPFlow -Environment $environment -AsAdmin
+
+#lists all the flows available to you as a user
+Get-PnPFlow -Environment $environment
+
+
+# I am afraid that's it :)    PnP is really simple
From 029351551983e30f2a789a9d51c4767bfab6dfd1 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:17:11 +0100
Subject: [PATCH 106/150] Create ListAllFlowsUsingPnP.ps1
---
 Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
@@ -0,0 +1 @@
+.
From c46d90fca53bc618ce8fd669983871a3d1c7ef32 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:17:42 +0100
Subject: [PATCH 107/150] Update ListAllFlowsUsingPnP.ps1
---
 .../ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
index 9c558e35..9c225507 100644
--- a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
+++ b/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1	
@@ -1 +1,13 @@
-.
+
+Connect-PnPOnline
+
+$environment = Get-PnPPowerPlatformEnvironment
+
+# lists all the flows in environment
+Get-PnPFlow -Environment $environment -AsAdmin
+
+#lists all the flows available to you as a user
+Get-PnPFlow -Environment $environment
+
+
+# I am afraid that's it :)    PnP is really simple
From 0dd7e891a799fd21030f6f40698c064c8f812431 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:18:01 +0100
Subject: [PATCH 108/150] Delete ListAllFlowsUsingPnP
---
 Power Automate/ListAllFlowsUsingPnP | 13 -------------
 1 file changed, 13 deletions(-)
 delete mode 100644 Power Automate/ListAllFlowsUsingPnP
diff --git a/Power Automate/ListAllFlowsUsingPnP b/Power Automate/ListAllFlowsUsingPnP
deleted file mode 100644
index 9c225507..00000000
--- a/Power Automate/ListAllFlowsUsingPnP	
+++ /dev/null
@@ -1,13 +0,0 @@
-
-Connect-PnPOnline
-
-$environment = Get-PnPPowerPlatformEnvironment
-
-# lists all the flows in environment
-Get-PnPFlow -Environment $environment -AsAdmin
-
-#lists all the flows available to you as a user
-Get-PnPFlow -Environment $environment
-
-
-# I am afraid that's it :)    PnP is really simple
From b54a0ed9eacba8253bfb2c2c75681404a6507b6d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Tue, 1 Mar 2022 16:18:33 +0100
Subject: [PATCH 109/150] Rename Power
 Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 to Power
 Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
---
 .../ListAllFlowsUsingPnP.ps1                                      | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename Power Automate/{ListAllFlowsUsingPnP2 => ListAllFlowsUsingPnP}/ListAllFlowsUsingPnP.ps1 (100%)
diff --git a/Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1 b/Power Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
similarity index 100%
rename from Power Automate/ListAllFlowsUsingPnP2/ListAllFlowsUsingPnP.ps1
rename to Power Automate/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1
From 44c88f0c6d3e47f96efcbb931481380659a1d38d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 5 Mar 2022 21:36:43 +0100
Subject: [PATCH 110/150] Update NewTermSingle.ps1
---
 .../NewTermSingle.ps1                                          | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1 b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1
index e50c1499..d2b91962 100644
--- a/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
+++ b/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1	
@@ -27,13 +27,12 @@
 	$ctx.Load($termstore)
 	$ctx.ExecuteQuery()
 
-	Write-Host "Termstore" -ForegroundColor Green
 	$set=$termstore.GetTermSet($TermSetGuid)
 	$ctx.Load($set)
 	$ctx.Load($set.GetAllTerms())
 	$ctx.ExecuteQuery()
 	$guid = [guid]::NewGuid()
-	Write-Host $guid
+	Write-Host "Creating term with the following guid: $guid"
 	$term=$set.CreateTerm($Term, $TermLanguage,$guid)
 
 	$termstore.CommitAll()
From b90fef0773b525b2759fe1b5b97b850e208df243 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:24:41 +0200
Subject: [PATCH 111/150] Update README.md
---
 User Profiles/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/User Profiles/README.md b/User Profiles/README.md
index 9c558e35..3e9d7d9e 100644
--- a/User Profiles/README.md	
+++ b/User Profiles/README.md	
@@ -1 +1 @@
-.
+Scripts related to SharePoint user profiles. 
From 4ebd47cf6c5da1a52be914e4d7f3a6b96b5622a3 Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:25:14 +0200
Subject: [PATCH 112/150] Create README.md
---
 .../Get MUI Languages for multiple users using REST/README.md    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 User Profiles/Get MUI Languages for multiple users using REST/README.md
diff --git a/User Profiles/Get MUI Languages for multiple users using REST/README.md b/User Profiles/Get MUI Languages for multiple users using REST/README.md
new file mode 100644
index 00000000..9c558e35
--- /dev/null
+++ b/User Profiles/Get MUI Languages for multiple users using REST/README.md	
@@ -0,0 +1 @@
+.
From b88e2a372728813f0b861096d0ec1e92c338b02a Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Sat, 12 Mar 2022 20:25:52 +0200
Subject: [PATCH 113/150] Update README.md
---
 .../README.md                                 | 27 ++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/User Profiles/Get MUI Languages for multiple users using REST/README.md b/User Profiles/Get MUI Languages for multiple users using REST/README.md
index 9c558e35..8cf1df11 100644
--- a/User Profiles/Get MUI Languages for multiple users using REST/README.md	
+++ b/User Profiles/Get MUI Languages for multiple users using REST/README.md	
@@ -1 +1,26 @@
-.
+The script retrieves a SPS-MUILanguages property for specified SharePoint Online users.
+
+The script uses the following endpoint to retrieve a user property:
+
+```/getuserprofilepropertyfor(accountname=@v, propertyname='')?@v=''```
+
+For more details, please consult:
+
+[User profiles REST API reference](https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-rest-reference/dn790354(v=office.15)?redirectedfrom=MSDN)
+
+## How to use?
+ 
+Download, open the script and enter correct values in the following lines:
+
+```PowerShell
+#Enter the data 
+$AdminPassword=Read-Host -Prompt "Enter password" -AsSecureString 
+$username="t@t321.onmicrosoft.com" 
+$Url="https://t321.sharepoint.com" 
+ 
+ 
+$userLogins=("t@t321.onmicrosoft.com","user1@t321.onmicrosoft.com","user2@t321.onmicrosoft.com","user5@t321.onmicrosoft.com","yasen@t321.onmicrosoft.com") 
+ ```
+## Expected results
+ 
+ From 88054825a793cb9c082c882a89cb4be824ee1f9d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 19:38:51 +0100
Subject: [PATCH 114/150] Update NoCrawl_usingPnP.ps1
---
 .../NoCrawl_usingPnP.ps1                      | 32 ++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1 b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
index 9c558e35..e1f1d60e 100644
--- a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
+++ b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
@@ -1 +1,31 @@
-.
+# fill this bit out
+
+$ListTitle = "MyList"
+$SiteUrl = "https://contoso.sharepoint.com"
+
+
+# do not touch this bit below
+
+$credential = Get-Credential
+
+Connect-PNPOnline -Url $SiteUrl -Credentials $credential
+
+$list = Get-PnPList -Identity $ListTitle
+
+if(-not $list){
+  Write-Host "List does not exist"
+  return;
+}
+
+
+$list.NoCrawl = $true
+$list.Update()
+
+try{
+  $list.context.ExecuteQuery()
+  Invoke-PnPQuery 
+  Write-Host "Updated nicely"
+}
+catch{
+  Write-Host "No luck this time"
+}
From 3668d7f93e7030beac2aa1b756dd2c90ed08e70d Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:00:02 +0100
Subject: [PATCH 115/150] Update enableFlows_usingPnP.ps1
---
 .../enableFlows_usingPnP.ps1                        | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
index 9c558e35..3e822e96 100644
--- a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
@@ -1 +1,12 @@
-.
+# Get the environment. You can't do anything without it in Flow (Power Automate) cmdlets
+
+$environment = Get-PnPFlowEnvironment
+
+
+# Find your flow if you don't know the id by heart
+# $Flow = Get-PnPFlow -Environment $environment
+# or
+# $Flow = Get-PnPFlow -Environment $environment | Where {$_.properties.DisplayName -match "MyFlow"}
+
+
+Enable-PnPFlow -Environment $environment -Identity $Flow.Id
From a324782309384569b9e11c10857064ba32970a5c Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:00:53 +0100
Subject: [PATCH 116/150] Create DisableFlowUsingPnP.ps1
---
 .../Disable Single Flow/DisableFlowUsingPnP.ps1      | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1
diff --git a/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1 b/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1
new file mode 100644
index 00000000..4def94af
--- /dev/null
+++ b/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1	
@@ -0,0 +1,12 @@
+# Get the environment. You can't do anything without it in Flow (Power Automate) cmdlets
+
+$environment = Get-PnPFlowEnvironment
+
+
+# Find your flow if you don't know the id by heart
+# $Flow = Get-PnPFlow -Environment $environment
+# or
+# $Flow = Get-PnPFlow -Environment $environment | Where {$_.properties.DisplayName -match "MyFlow"}
+
+
+Disable-PnPFlow -Environment $environment -Identity $Flow.Id
From e7735bc33d2023e8486a770f4fad63857d36166d Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:01:30 +0100
Subject: [PATCH 117/150] Create readme.md
---
 Power Automate/Disable Single Flow/readme.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Single Flow/readme.md
diff --git a/Power Automate/Disable Single Flow/readme.md b/Power Automate/Disable Single Flow/readme.md
new file mode 100644
index 00000000..1ef78e0a
--- /dev/null
+++ b/Power Automate/Disable Single Flow/readme.md	
@@ -0,0 +1 @@
+Disables single flow. 
From b64be6eabbbf69a558ccead9c702db6746d0e321 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 13 Apr 2022 21:12:21 +0200
Subject: [PATCH 118/150] Update README.md
---
 README.md | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index bcb6872c..b3ac0cf1 100644
--- a/README.md
+++ b/README.md
@@ -22,18 +22,18 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
From 88054825a793cb9c082c882a89cb4be824ee1f9d Mon Sep 17 00:00:00 2001
From: PowershellScripts <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 19:38:51 +0100
Subject: [PATCH 114/150] Update NoCrawl_usingPnP.ps1
---
 .../NoCrawl_usingPnP.ps1                      | 32 ++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1 b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1
index 9c558e35..e1f1d60e 100644
--- a/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
+++ b/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl_usingPnP.ps1	
@@ -1 +1,31 @@
-.
+# fill this bit out
+
+$ListTitle = "MyList"
+$SiteUrl = "https://contoso.sharepoint.com"
+
+
+# do not touch this bit below
+
+$credential = Get-Credential
+
+Connect-PNPOnline -Url $SiteUrl -Credentials $credential
+
+$list = Get-PnPList -Identity $ListTitle
+
+if(-not $list){
+  Write-Host "List does not exist"
+  return;
+}
+
+
+$list.NoCrawl = $true
+$list.Update()
+
+try{
+  $list.context.ExecuteQuery()
+  Invoke-PnPQuery 
+  Write-Host "Updated nicely"
+}
+catch{
+  Write-Host "No luck this time"
+}
From 3668d7f93e7030beac2aa1b756dd2c90ed08e70d Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:00:02 +0100
Subject: [PATCH 115/150] Update enableFlows_usingPnP.ps1
---
 .../enableFlows_usingPnP.ps1                        | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1 b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1
index 9c558e35..3e822e96 100644
--- a/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
+++ b/Power Automate/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingPnP.ps1	
@@ -1 +1,12 @@
-.
+# Get the environment. You can't do anything without it in Flow (Power Automate) cmdlets
+
+$environment = Get-PnPFlowEnvironment
+
+
+# Find your flow if you don't know the id by heart
+# $Flow = Get-PnPFlow -Environment $environment
+# or
+# $Flow = Get-PnPFlow -Environment $environment | Where {$_.properties.DisplayName -match "MyFlow"}
+
+
+Enable-PnPFlow -Environment $environment -Identity $Flow.Id
From a324782309384569b9e11c10857064ba32970a5c Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:00:53 +0100
Subject: [PATCH 116/150] Create DisableFlowUsingPnP.ps1
---
 .../Disable Single Flow/DisableFlowUsingPnP.ps1      | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1
diff --git a/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1 b/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1
new file mode 100644
index 00000000..4def94af
--- /dev/null
+++ b/Power Automate/Disable Single Flow/DisableFlowUsingPnP.ps1	
@@ -0,0 +1,12 @@
+# Get the environment. You can't do anything without it in Flow (Power Automate) cmdlets
+
+$environment = Get-PnPFlowEnvironment
+
+
+# Find your flow if you don't know the id by heart
+# $Flow = Get-PnPFlow -Environment $environment
+# or
+# $Flow = Get-PnPFlow -Environment $environment | Where {$_.properties.DisplayName -match "MyFlow"}
+
+
+Disable-PnPFlow -Environment $environment -Identity $Flow.Id
From e7735bc33d2023e8486a770f4fad63857d36166d Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 16 Mar 2022 20:01:30 +0100
Subject: [PATCH 117/150] Create readme.md
---
 Power Automate/Disable Single Flow/readme.md | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Power Automate/Disable Single Flow/readme.md
diff --git a/Power Automate/Disable Single Flow/readme.md b/Power Automate/Disable Single Flow/readme.md
new file mode 100644
index 00000000..1ef78e0a
--- /dev/null
+++ b/Power Automate/Disable Single Flow/readme.md	
@@ -0,0 +1 @@
+Disables single flow. 
From b64be6eabbbf69a558ccead9c702db6746d0e321 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Wed, 13 Apr 2022 21:12:21 +0200
Subject: [PATCH 118/150] Update README.md
---
 README.md | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index bcb6872c..b3ac0cf1 100644
--- a/README.md
+++ b/README.md
@@ -22,18 +22,18 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
  
  
    
-Content Type Management Setting 
+            Content Type Management Setting 
  
  
 
-  * Allow content type management for all lists in a site
-  * Allow content type management for all lists in site collection
-  * Set content type management setting for a single list
+  *      Allow content type management for all lists in a site
+  *      Allow content type management for all lists in site collection
+  *      Set content type management setting for a single list
   
    
-  
+    
   
-Create 
+    Create 
  
  
  
@@ -49,7 +49,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
   
   
   
-Display Forms 
+    Display Forms 
  
  
  
@@ -61,7 +61,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
   
   
   
-Get 
+    Get 
  
  
  
@@ -91,7 +91,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
   
   
   
-Set 
+    Set 
  
  
  
@@ -106,7 +106,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
   
   
   
-Modules 
+    Modules 
  
  
 
@@ -115,7 +115,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
      
     
   
-Remove 
+    Remove 
  
  
  
@@ -125,7 +125,7 @@ Their new home at GitHub is still relatively recent, so if you find any issues,
      
     
   
-Set 
+    Set 
  
  
 
From 16295a75bca85032a614581046881977eed2fc63 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 09:12:18 +0200
Subject: [PATCH 119/150] Create FindSitesWithOutstandingAccessRequests.md
---
 .../FindSitesWithOutstandingAccessRequests.md                    | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 Site Management/Access Requests/SitesWithOutstandingAccessRequests/FindSitesWithOutstandingAccessRequests.md
diff --git a/Site Management/Access Requests/SitesWithOutstandingAccessRequests/FindSitesWithOutstandingAccessRequests.md b/Site Management/Access Requests/SitesWithOutstandingAccessRequests/FindSitesWithOutstandingAccessRequests.md
new file mode 100644
index 00000000..d44e18fb
--- /dev/null
+++ b/Site Management/Access Requests/SitesWithOutstandingAccessRequests/FindSitesWithOutstandingAccessRequests.md	
@@ -0,0 +1 @@
+start
From 82e0b9d80c611e0523f2ab5290912086570b7062 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 09:15:10 +0200
Subject: [PATCH 120/150] Create readme.md
---
 .../SitesWithOutstandingAccessRequests/readme.md       | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md
diff --git a/Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md b/Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md
new file mode 100644
index 00000000..cfe427d2
--- /dev/null
+++ b/Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md	
@@ -0,0 +1,10 @@
+Find sites with ignored access requests, older than XXX.
+
+
+
+How does the script work?
+
+The script loops through your sites, verifies access requests, and compares their dates.
+
+
+
From b59f387aec8ca60d276d5df752cabc3fdff17f20 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 09:18:13 +0200
Subject: [PATCH 121/150] Update README.md
---
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index b3ac0cf1..c17360c2 100644
--- a/README.md
+++ b/README.md
@@ -7,11 +7,13 @@ Over 200 SharePoint Online scripts
 * bulk updates
 * provide automation script samples to address IT Pros' frequently asked IT tasks.
 
-The scripts use Powershell, C#, CSOM and REST. They include copies of existing scripts from Technet Gallery years 2013-2019 - the transfer is in progress and the documentation/description is still taking shape.
+The scripts use Powershell, C#, CSOM and REST. They include copies of existing scripts from Technet Gallery years 2013-2019.
 
 Most of them were tested and verified by hundreds and thousands of users of [Technet Gallery, where you can still find these scripts](https://gallery.technet.microsoft.com/office/site/search?f%5B0%5D.Type=User&f%5B0%5D.Value=Arleta%20Wanat) 
 
 Their new home at GitHub is still relatively recent, so if you find any issues, please do let me know. I appreciate every comment and every feedback.
+
+Have an idea for a useful script? Can't find it here? Open an issue and let's discuss it together!
  
 
 ## Full index
From ac8bf31136196106c21adbf6540eb0ca1853abae Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 10:24:37 +0200
Subject: [PATCH 122/150] Create GetPoliciesAppliedToYourSitesUsingPnP.ps1
---
 .../GetPoliciesAppliedToYourSitesUsingPnP.ps1          | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1
diff --git a/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1 b/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1
new file mode 100644
index 00000000..b61b146b
--- /dev/null
+++ b/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1	
@@ -0,0 +1,10 @@
+# Site Policy is a special content type, inheriting from Content Type called "Project Policy"  with Content Type ID 0x010085EC78BE64F9478AAE3ED069093B9963
+
+#url of the site where you want to check your policies
+$SiteUrl = "https://EXAMPLE.sharepoint.com/sites/EXAMPLE
+
+# Connect to your tenant
+$creds = Get-Credential
+Connect-PnPOnline -Url $SiteUrl -Credentials $creds
+
+$Sites
From 21d42cf75863b71b6ff39e990332541fb5c94858 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 14:22:33 +0200
Subject: [PATCH 123/150] Update GetPoliciesAppliedToYourSitesUsingPnP.ps1
---
 .../GetPoliciesAppliedToYourSitesUsingPnP.ps1 | 24 ++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1 b/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1
index b61b146b..e108a8bd 100644
--- a/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1	
+++ b/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1	
@@ -1,5 +1,8 @@
 # Site Policy is a special content type, inheriting from Content Type called "Project Policy"  with Content Type ID 0x010085EC78BE64F9478AAE3ED069093B9963
 
+
+
+### For a single site
 #url of the site where you want to check your policies
 $SiteUrl = "https://EXAMPLE.sharepoint.com/sites/EXAMPLE
 
@@ -7,4 +10,23 @@ $SiteUrl = "https://EXAMPLE.sharepoint.com/sites/EXAMPLE
 $creds = Get-Credential
 Connect-PnPOnline -Url $SiteUrl -Credentials $creds
 
-$Sites
+Get-PnPContentType | where {($_.Id -match "0x010085EC78BE64F9478AAE3ED069093B9963") -and ($_.Id -notlike "0x010085EC78BE64F9478AAE3ED069093B9963")} | select name, id
+
+
+
+
+
+
+
+
+
+### For multiple sites with export to csv
+
+$ContentTypeID = "0x010085EC78BE64F9478AAE3ED069093B9963"
+$Sites = Get-PnPTenantSite
+
+foreach($site in $sites){ 
+  Connect-PnPOnline -Url $site.Url -Credentials $creds; 
+  Get-PnPContentType `
+  | where {($_.Id -match $ContentTypeID) -and ($_.Id -notlike $ContentTypeID)} `
+  | Export-CSV -Path C:\Users\ArletaWanat\Exportedpolicies.csv -Append}
From b03ccad40a286b0b3b4fa7516b71f92a399483fc Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 14:35:21 +0200
Subject: [PATCH 124/150] Create RemovePolicyFromSingleSiteUsingPnP.ps1
---
 .../RemovePolicyFromSingleSiteUsingPnP.ps1           | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1
diff --git a/Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1 b/Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1
new file mode 100644
index 00000000..30cbe5b5
--- /dev/null
+++ b/Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1	
@@ -0,0 +1,12 @@
+Connect-PnPOnline
+
+# First see the policies currently applied on the site
+
+$ContentTypeID = "0x010085EC78BE64F9478AAE3ED069093B9963"
+Get-PnPContentType | where {($_.Id -match $ContentTypeID) -and ($_.Id -notlike $ContentTypeID)} | select name, id
+
+# Remove the policy you want
+
+Remove-PnPContentType -Identity  NAMEOFYOURPOLICYFROMPREVIOUSCMDLET
+
+# That's it :)
From eaee7e98c1dd922cfcd81913fae06069a618b320 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 14:40:37 +0200
Subject: [PATCH 125/150] Create readme.md
---
 Site Management/Site Policy/RemovePolicy/readme.md | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 Site Management/Site Policy/RemovePolicy/readme.md
diff --git a/Site Management/Site Policy/RemovePolicy/readme.md b/Site Management/Site Policy/RemovePolicy/readme.md
new file mode 100644
index 00000000..603721d6
--- /dev/null
+++ b/Site Management/Site Policy/RemovePolicy/readme.md	
@@ -0,0 +1,3 @@
+These scripts remove a policy from site policies.
+
+You should see the results under /_layouts/15/ProjectPolicies.aspx
From b4e4200e4574b5d1e0852439c3f108aa68f0d928 Mon Sep 17 00:00:00 2001
From: Arleta Wanat <42035526+PowershellScripts@users.noreply.github.com>
Date: Mon, 18 Apr 2022 14:40:54 +0200
Subject: [PATCH 126/150] Add files via upload
---
 .../Site Policy/RemovePolicy/sitepolicies2.PNG  | Bin 0 -> 86845 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 Site Management/Site Policy/RemovePolicy/sitepolicies2.PNG
diff --git a/Site Management/Site Policy/RemovePolicy/sitepolicies2.PNG b/Site Management/Site Policy/RemovePolicy/sitepolicies2.PNG
new file mode 100644
index 0000000000000000000000000000000000000000..73f56401b721283cfd25aa6b3575b66142820592
GIT binary patch
literal 86845
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