├── .gitignore ├── Content Types ├── Content Types Management Setting │ ├── Allow content type management for all lists in a site │ │ ├── AllowContentTypeManagementUsingPnPInvokeQuery.ps1 │ │ ├── ContentTypeManagementUsingCSOM.ps1 │ │ ├── README.md │ │ ├── contentTypeManagement.png │ │ └── description.md │ ├── Allow content type management for all lists in site collection with subsites │ │ ├── ContentTypeManagementSubsitesIncluded.ps1 │ │ ├── ReadMe.md │ │ ├── contentTypeManagement.png │ │ └── description.md │ ├── README.md │ └── Set content type management setting for a single list │ │ ├── EnableContentTypeManagementUsingCSOM.ps1 │ │ ├── EnableContentTypeManagementUsingPnP.ps1 │ │ ├── ReadMe.md │ │ ├── contentTypeManagement.png │ │ └── description.md ├── Create │ ├── Add Content Type to Lists with Workflows │ │ ├── AddContentTypetoListsWithWorkflows.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Add Content Type to Task Lists │ │ ├── AddContentTypetoTaskLists.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Add existing content type directly to SPO list │ │ ├── AddExistingContentTypetoOneList.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Create a content type │ │ ├── CreateContentType.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Create and add content type to a content type hub │ │ ├── CreateContentTypeToCTH.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Create content type and add directly to SPO list │ │ ├── CreateContentTypeToList.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ └── Create content type and add it to all lists in one site │ │ ├── CreateContentTypeToAllLists.ps1 │ │ ├── ReadMe.md │ │ └── description.md ├── Display Forms │ ├── Find Custom Display Forms Deployed │ │ ├── DisplayFormUrl3.png │ │ ├── ModifyDisplayFormUrl-FindCustomFormsDeployed.ps1 │ │ ├── ReadMe.md │ │ └── description.md │ ├── Modify the Display Form Template Name │ │ ├── ModifyDisplayFormTemplateName.ps1 │ │ ├── Readme.md │ │ └── description.md │ ├── README.md │ └── Unable to view items- modify the DisplayFormUrl back to default one │ │ ├── DisplayFormUrl4.png │ │ ├── ModifyDisplayFormUrl-BackToDefault.ps1 │ │ ├── ReadMe.md │ │ └── description.md ├── Get │ ├── All Content Types from a Content Type Hub and their DisplayFormTemplate │ │ ├── ModifyDisplayFormTemplateName-ContentTypeHub.ps1 │ │ └── description.md │ ├── Compare Web.AvailableContentTypes vs Web.ContentTypes │ │ ├── CompareAvVSCT.ps1 │ │ ├── SubsiteCT2.PNG │ │ └── description.md │ ├── Find content types added to your lists (recursive) │ │ ├── Error.PNG │ │ ├── RecursiveContentTypes.ps1 │ │ ├── description.md │ │ ├── recursiveResult.PNG │ │ └── recursiveResult2.PNG │ ├── Find content types added to your lists │ │ ├── Error.PNG │ │ ├── checkallcontenttypes.ps1 │ │ ├── description.md │ │ └── result.PNG │ ├── Get All Detailed Properties of All Content Types │ │ ├── ContentTypesWithoutPSObject.ps1 │ │ ├── GetPropertiesWITHOUTExtr.PNG │ │ ├── GetPropertiesWITHOUTExtr2.PNG │ │ └── description.md │ ├── Get All Hidden Content Types added to the site │ │ ├── GetSingleContentTypeLoop.ps1 │ │ └── description.md │ ├── Get All Properties of All Content Types in All Lists (Detailed) across one site │ │ ├── GetContentTypeProperties.ps1 │ │ ├── GetPropertiesWITHOUTExtr.PNG │ │ ├── GetPropertiesWITHOUTExtr2.PNG │ │ └── description.md │ ├── Get Content Types Derived From One Parent │ │ ├── GetSingleContentTypeLoopParentName.ps1 │ │ ├── description.md │ │ └── readme.md │ ├── Get Content Types with a particular column │ │ ├── GetSingleContentTypeLoopFields.ps1 │ │ └── description.md │ ├── Get Names of All Content Types │ │ ├── GetAllContentTypes.ps1 │ │ ├── GetAv.PNG │ │ ├── GetAv2.PNG │ │ └── description.md │ ├── Get Names of all Available Content Types │ │ ├── GetAllAvailableContentTypesName.ps1 │ │ ├── GetAv.PNG │ │ ├── GetAv2.PNG │ │ └── description.md │ ├── Get Names of all content types added to your lists │ │ ├── Error0.PNG │ │ ├── GetCTNamesinAllLists.ps1 │ │ ├── description.md │ │ ├── readme.md │ │ └── result0.PNG │ ├── Get Single Content Type - Array Method │ │ ├── GetSingleContentType.ps1 │ │ └── description.md │ ├── Get all columns associated to a SINGLE content type in a list │ │ ├── OneContentTypeFieldLinks.ps1 │ │ ├── Przechwytywanie24.PNG │ │ ├── Przechwytywanie25.PNG │ │ └── description.md │ ├── Get all properties of all content types in a site │ │ ├── ContentTypesWithoutPSObjectWithoutEXtraProperties.ps1 │ │ ├── GetPropertiesWITHOUTExtra.PNG │ │ ├── GetPropertiesWITHOUTExtra2.PNG │ │ └── description.md │ ├── Get content types belonging to a group │ │ ├── GetSingleContentTypeLoopGroup.ps1 │ │ └── description.md │ ├── Get content types which cannot be modified │ │ ├── GetSingleContentTypeLoopSealed.ps1 │ │ └── description.md │ ├── Get properties of a single content type by its ID │ │ ├── GetContentTypePropertiesByID.ps1 │ │ ├── GetPropertiesWITHOUTExt.PNG │ │ └── description.md │ ├── Lists where a given content type is added │ │ ├── Error.PNG │ │ ├── RecursiveContentTypesName.ps1 │ │ ├── description.md │ │ ├── resultName.PNG │ │ └── resultName2.PNG │ └── Verify the content types used in your lists against the default ones │ │ ├── ModifyDisplayFormTemplateName-ReturnToAllDefault-Verify.ps1 │ │ └── description.md ├── Modules │ └── SharePoint Online module for managing content types │ │ ├── SPOModContentTypes.psm1 │ │ └── description.md ├── README.md ├── Remove │ ├── Remove a content type from all lists in a site │ │ ├── Error.PNG │ │ ├── RemoveContentType.PNG │ │ ├── ReportOnDeleted.ps1 │ │ └── description.md │ └── Remove content type from SharePoint site │ │ ├── ContentType.ps1 │ │ └── description.md └── Set │ ├── Add column (fieldlink) to a content type │ ├── ModifyFieldsvsFieldLinks.ps1 │ ├── description.md │ └── readme.md │ ├── Assign your Content Types back to their default Groups │ ├── ModifyGroup-BackToDefault.ps1 │ └── description.md │ ├── Modify the description of a list content type │ ├── Edit-Description.png │ ├── Edit-Description2.png │ ├── Edit-Description3.png │ ├── ModifyDescription.ps1 │ └── description.md │ ├── Modify the description of a site content type │ ├── ModifyDescriptionSiteByID.ps1 │ └── description.md │ ├── Reset default content types │ ├── Edit-DisplayFormTemplateName5.PNG │ ├── ModifyDisplayFormTemplateName-ReturnToAllDefault-Modify.ps1 │ └── description.md │ ├── Unseal a content type │ └── UnsealCT.ps1 │ └── Unseal sealed content types in site │ ├── Edit-Sealed.PNG │ ├── Edit-Sealed2.PNG │ ├── UnsealAllCT.ps1 │ ├── description.md │ └── readme.md ├── File Management ├── Add thousands of documents to your SPO library │ ├── DocLibrary2.rar │ ├── LibHowItRuns.png │ ├── README.md │ ├── description.md │ └── solution.cs ├── Audit folder structure │ ├── Audit SharePoint Online folder structure to XML │ │ ├── AuditFolderStructureToXMLMoreAttributes.ps1 │ │ ├── README.md │ │ ├── capture.PNG │ │ └── description.md │ ├── Audit Sharepoint folder structure to XML │ │ ├── AuditFolderStructureToXMLServer.ps1 │ │ ├── Przechwytywanie.PNG │ │ ├── README.md │ │ └── description.md │ ├── Audit folder structure to XML │ │ ├── AuditFolderStructureToXML.ps1 │ │ ├── Przechwytywanie281.PNG │ │ ├── README.md │ │ └── description.md │ ├── Get the structure of your SharePoint library (folders and files) to XML │ │ ├── AuditFolderStructureWithFilesToXML.ps1 │ │ ├── Przechwytywanie.PNG │ │ └── description.md │ └── README.md ├── CountFiles │ ├── InAList │ │ ├── countfilesinRootFolder.ps1 │ │ └── countfilesrecursivelyinalibrary.ps1 │ ├── InSpecificFolder │ │ └── countfilesrecursively.ps1 │ ├── Readme.md │ └── WithUniquePermissions │ │ ├── InFolder.ps1 │ │ └── InLibrary.ps1 ├── Create sample folder and file structure for testing │ ├── MultiplyFiles.ps1 │ ├── README.md │ ├── createFolderFileStructure.PNG │ ├── createFolderFileStructure2.PNG │ └── description.md ├── Get SPO Files from a folder │ ├── GetSPOFolderFiles.psm1 │ ├── README.md │ ├── description.md │ └── images │ │ ├── GetSPOFolderFiles.PNG │ │ ├── GetSPOFolderFiles2.PNG │ │ ├── GetSPOFolderFiles3.PNG │ │ └── img.png ├── Get SPO Folder and File │ ├── GetSPOFileAndFolderModule.psm1 │ ├── GetSPOFileandFolder.PNG │ ├── GetSPOFileandFolder2.PNG │ ├── README.md │ └── description.md ├── Module for checking in and checking out the files │ ├── FileFile1.psm1 │ ├── Filefile1.PNG │ ├── Filefile11.PNG │ └── description.md ├── Module for easy file management │ ├── FileFile10.psm1 │ ├── README.md │ ├── description.md │ └── images │ │ ├── Filefile2.PNG │ │ ├── Filefile21.PNG │ │ ├── Filefile22.PNG │ │ ├── Filefile23.PNG │ │ ├── Filefile24.PNG │ │ ├── Filefile25.PNG │ │ ├── Filefile251.PNG │ │ ├── Filefile26.PNG │ │ ├── Filefile27.PNG │ │ └── test.png ├── Powershell cmdlet for getting the number of files in a folder │ ├── FolderFilesCount.PNG │ ├── GetSPOFolderFilesCount.psm1 │ ├── README.md │ └── description.md ├── Readme.md ├── Records Management │ ├── Declare files as records │ │ ├── CaptureDeclare.PNG │ │ ├── DeclareAsRecord.ps1 │ │ ├── README.md │ │ ├── declareAsRecordsLargeLibraries.ps1 │ │ └── description.md │ └── Undeclare files as records │ │ ├── Captureundeclare.PNG │ │ ├── README.md │ │ ├── description.md │ │ ├── undeclareAsRecords.ps1 │ │ └── undeclareAsRecordsLargeLibraries.ps1 └── Restore previous versions in selected files the entire library │ ├── README.md │ ├── RestorePreviousVersionsInSelectedFiles.ps1 │ └── description.md ├── Getting SPO objects with REST ├── Module for getting SharePoint Online objects with Powershell │ ├── Untitled11.png │ ├── Untitled12.png │ ├── Untitled13.png │ ├── description.md │ └── getSPOobjectWithRestModule.psm1 ├── Module for getting SharePoint objects with Powershell (limited) │ ├── README.md │ ├── description.md │ └── getSPOobjectWithRestModuleLimited.psm1 ├── README.md ├── Script to get SharePoint objects with REST │ ├── README.md │ ├── description.md │ └── getSPOobjectWithRest.ps1 └── Unrestricted Module │ ├── GetSPOObjects.psm1 │ ├── Untitled21.png │ ├── Untitled22.png │ ├── Untitled23.png │ ├── Untitled24.png │ └── description.md ├── Items Management ├── Attachments │ ├── Add size of SharePoint item attachments to list view │ │ ├── AddSizeOfAttachmentsToView.ps1 │ │ ├── README.md │ │ ├── capture.PNG │ │ └── description.md │ ├── Copy all SharePoint Online list item attachments │ │ ├── CopyAllAttachments.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Copy list attachments to a separate library │ │ ├── Capture.PNG │ │ ├── Capture2.PNG │ │ ├── Capture3.PNG │ │ ├── CopyAttachments.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Delete all your list attachments (data loss involved) │ │ ├── DeleteAllAttachments.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Disable or enable attachments to list items │ │ ├── AttachmentsForAllLists.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Enable or disable attachments to items of a chosen list │ │ ├── ListAttachments.ps1 │ │ ├── attachments-nobutton.png │ │ ├── attachments3.png │ │ └── description.md │ ├── Get size of attachments per SharePoint Online list item │ │ ├── Capture.PNG │ │ ├── SizeOfAttachmentsPerListItem.ps1 │ │ └── description.md │ ├── Get the size of all attachments in a list │ │ ├── ListAllAttachments.ps1 │ │ ├── Przechwytywanie.PNG │ │ └── description.md │ ├── List all SharePoint Online list items with attachments │ │ ├── CAmlQueryGetOnlyListItemsWithAttachments.ps1 │ │ ├── Przechwytywanie.PNG │ │ └── description.md │ ├── List all attachments from SharePoint Online list to CSV file │ │ ├── ListAllAttachments.ps1 │ │ ├── Przechwytywanie.PNG │ │ ├── description.md │ │ └── readme.md │ └── README.md ├── Bulk update all items in a list │ ├── BulkUpdate.ps1 │ ├── README.md │ ├── bulkupdate2.png │ └── description.md ├── Create new list item using Powershell │ ├── NewSPOListItem.psm1 │ ├── Newlistitem.PNG │ ├── README.md │ └── description.md ├── Get │ ├── Get the number of items in a list │ │ ├── GetSPOListItemCount.psm1 │ │ ├── GetSpoListCount.png │ │ └── description.md │ ├── GetSpoListItems and GetSPOListFields │ │ ├── GetSPOListItems.psm1 │ │ ├── README.md │ │ ├── description.md │ │ └── images │ │ │ ├── GEtspolistitems.png │ │ │ ├── getspolistitems2.png │ │ │ ├── getspolistitems3.png │ │ │ ├── getspolistitems5.png │ │ │ ├── getspolistitems6.png │ │ │ ├── getspolistitems7.png │ │ │ ├── getspolistitems8.png │ │ │ └── img.png │ ├── List 10 latest items a user has modified in SharePoint Server list │ │ ├── Przechwytywanie104.PNG │ │ ├── Przechwytywanie204.PNG │ │ ├── README.md │ │ ├── description.md │ │ └── getrecentitemsSPServer.ps1 │ ├── List 10 latest items a user has modified │ │ ├── description.md │ │ └── gettenrecentitems.ps1 │ ├── List 5 latest items a user has created in list │ │ ├── README.md │ │ ├── description.md │ │ └── get5lastcreated.ps1 │ └── README.md ├── Module for item management │ ├── README.md │ ├── SPOListItemFunctions.psm1 │ ├── description.md │ └── images │ │ ├── LisItemFunctionsRemove.png │ │ ├── LisItemFunctionsUpdate.png │ │ ├── LisItemFunctionsUpdate2.png │ │ ├── LisItemFunctionsUpdate3.png │ │ └── RemoveItemPermissions.png ├── README.md └── Remove permissions from SharePoint Online items │ ├── README.md │ ├── RemoveItemPermissions.png │ ├── RemovePermissionsFromItems.ps1 │ └── description.md ├── Licensing ├── Check User Licenses using plan type │ ├── Capture14.PNG │ ├── Capture15.PNG │ ├── CheckingLicensesWithPlanType.ps1 │ └── readme.md ├── Check user licenses using Service Name │ ├── Capture14.PNG │ ├── Capture15.PNG │ ├── CheckLicensesWithServiceName.ps1 │ ├── README.md │ └── description.md ├── Export all assigned licenses and services provisioning statuses │ ├── GetLicensesProvisioningStatusDoubleLicenses.ps1 │ ├── README.md │ ├── description.md │ └── images │ │ ├── Capture72.PNG │ │ ├── Capture73.PNG │ │ ├── Capture74.PNG │ │ └── txt.txt ├── Get user licenses and services provisioning statuses │ ├── Capture72.PNG │ ├── Capture73.PNG │ ├── GetLicensesProvisioningStatus.ps1 │ └── README.md ├── README.md └── Remove SharePoint Online licenses for all users │ ├── NOSPO.PNG │ ├── NoSpoLicense.ps1 │ ├── README.md │ └── description.md ├── Lists and Libraries Management ├── Allow list to be deleted │ ├── AllowListDeletion.ps1 │ ├── README.md │ └── description.md ├── Allow or disallow list items to appear in search │ ├── NoCrawl.png │ ├── NoCrawl.ps1 │ ├── README.md │ └── description.md ├── Allow or disallow users to create folders │ ├── EnableFolderCreation.png │ ├── FolderCreationForAllLists.ps1 │ ├── README.md │ └── description.md ├── Break inheritance for all SPO lists in a site │ ├── README.md │ ├── SetUniquePermissions for all lists.ps1 │ ├── description.md │ └── uniquepermS.png ├── Change search setting for all lists in a site │ ├── NoCrawl.png │ ├── NoCrawlForAllLists.ps1 │ ├── NoCrawl_usingPnP.ps1 │ ├── README.md │ ├── description.md │ └── nocrawlAllLists.png ├── Checkout │ └── Powershell │ │ ├── Find all checked out files in SharePoint Online library and check them in │ │ ├── FindcheckedoutfilesANDcheckthemIN.ps1 │ │ └── description.md │ │ ├── Find all checked out files in SharePoint library and check them in │ │ ├── Capture7.PNG │ │ ├── FindCheckedOutFilesandCheckThemInSPServer.ps1 │ │ └── description.md │ │ ├── Find all files in library checked out by a specific user and check them in │ │ ├── Capture.PNG │ │ ├── FindcheckedoutfilesbyONEUSERANDcheckthemIN.ps1 │ │ └── description.md │ │ ├── Force checkout on a list │ │ ├── ListCheckout.psm1 │ │ └── description.md │ │ ├── Force document checkout on the whole tenant │ │ ├── ForceCheckout.ps1 │ │ ├── RequireCheckout.png │ │ ├── RequireCheckoutResults2.png │ │ └── description.md │ │ ├── Force your users to checkout documents using Powershell │ │ ├── CheckOutModule.psm1 │ │ ├── RequireCheckout.png │ │ ├── RequireCheckoutResults.png │ │ └── description.md │ │ ├── Get the number of checked out files per list │ │ ├── HowManyCheckedOutFilesPerList.ps1 │ │ ├── Przechwytywanie57.PNG │ │ ├── Przechwytywanie58.PNG │ │ └── description.md │ │ ├── How many checked out files per user in a library │ │ ├── HowManyCheckedOutFilesPerUser.ps1 │ │ ├── Przechwytywanie59.PNG │ │ ├── Przechwytywanie60.PNG │ │ └── description.md │ │ └── SPServer │ │ └── Find all checked out files in SharePoint library and check them in │ │ ├── Capture7.PNG │ │ ├── FindCheckedOutFilesandCheckThemInSPServer.ps1 │ │ └── description.md ├── Column Management │ ├── Add a geolocation column │ │ ├── AddGeolocationField.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Add a library column with file extension │ │ ├── AddColumnWithFullName.ps1 │ │ ├── Capture2.PNG │ │ ├── README.md │ │ └── description.md │ ├── Add a library column with file name and extension │ │ ├── AddColumnWithFullName2.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Create a new choice column │ │ ├── NewChoiceColumn.psm1 │ │ ├── README.md │ │ ├── choicecolumn.png │ │ ├── choicecolumn2.png │ │ └── description.md │ ├── Create a new column in list │ │ ├── NewColumnModule.psm1 │ │ ├── NewspoList.png │ │ ├── README.md │ │ ├── SPOLisstColumn6.PNG │ │ └── description.md │ ├── Create new column with properties │ │ ├── NewColumnWithProperties.psm1 │ │ ├── README.md │ │ └── description.md │ ├── Get all columns associated to a SINGLE content type in a list │ │ ├── OneContentTypeFieldLinks.ps1 │ │ ├── Przechwytywanie24.PNG │ │ ├── Przechwytywanie25.PNG │ │ ├── README.md │ │ └── description.md │ ├── Module for list column management │ │ ├── ListColumnFunctions.psm1 │ │ ├── README.md │ │ ├── description.md │ │ └── images │ │ │ ├── SPOLisstColumn.PNG │ │ │ ├── SPOLisstColumn3.PNG │ │ │ ├── SPOLisstColumn4.PNG │ │ │ ├── SPOLisstColumn6-1.PNG │ │ │ ├── SPOLisstColumn6.PNG │ │ │ ├── SPOLisstColumn7.PNG │ │ │ ├── choicecolumn.png │ │ │ ├── choicecolumn2.png │ │ │ ├── getspolistcolumn.png │ │ │ └── img.png │ └── Remove list column │ │ ├── README.md │ │ ├── RemoveSPOListColumn.ps1 │ │ └── description.md ├── Create SPO list with a Powershell cmdlet │ ├── NewSPOList.psm1 │ ├── README.md │ ├── description.md │ └── images │ │ ├── NEWSPOList2.PNG │ │ ├── NEWSPOList3.PNG │ │ ├── NEWSPOList4.PNG │ │ └── img.png ├── Delete unique permissions for all lists in a site collection │ ├── DeleteUniquePermissionsfor all lists.ps1 │ ├── README.md │ └── description.md ├── Delete unique permissions in all items in a large list (5000+ items) │ ├── README.md │ ├── ResetPermissionInheritanceLargeLists.ps1 │ └── description.md ├── FolderStructure │ ├── Copy folder structure across SharePoint Online sites │ │ ├── CopyListFolderStruAcross.PNG │ │ ├── CopyListFolderStruAcross2.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Copy folder structure across SharePoint Online tenants │ │ ├── CopyListFolderStruAcrossTenants.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Copy folder structure from one library to another (SharePoint Online) 2 │ │ ├── CopyFolderStructure1.ps1 │ │ └── description.md │ └── Copy folder structure from one library to another │ │ ├── CopyListFolderStru.ps1 │ │ └── description.md ├── Get all event receivers on your lists in a site │ ├── GetSPOEventReceivers.PNG │ ├── GetSPOListEventReceivers.ps1 │ ├── README.md │ └── description.md ├── Get all lists not used since │ ├── GetUnusedLists.ps1 │ ├── Przechwytywanie61.PNG │ ├── README.md │ └── description.md ├── Get large SharePoint Online lists v2 │ ├── FindLargeListsShorterReport.ps1 │ ├── README.md │ └── description.md ├── Get large SharePoint Online lists │ ├── FindLargeLists.ps1 │ ├── README.md │ └── description.md ├── Get the number of files and folders in library │ ├── Capture30.PNG │ ├── README.md │ ├── TotalNoOfItems.ps1 │ └── description.md ├── Get-SPOListTemplates to retrieve list templates on a SharePoint Online site │ ├── Get-SPOListTemplate.PNG │ ├── Get-SPOListTemplate.ps1 │ ├── README.md │ └── description.md ├── GetSPOList Module to view and filter SPO list properties │ ├── GETSPOALLListsNoProperties.PNG │ ├── GetListTemplates.PNG │ ├── GetSPOALLLists.PNG │ ├── GetSPOALLListsHidden.PNG │ ├── GetSPOListModule.psm1 │ ├── GetSPOListOne.PNG │ ├── NOTTO.PNG │ ├── README.md │ └── description.md ├── GetSPOListCount cmdlet │ ├── GetListCount.PNG │ ├── GetListCountCSV.PNG │ ├── GetListCounttenant.PNG │ ├── GetSPOListCountModule.psm1 │ ├── README.md │ └── description.md ├── Modern or Classic │ ├── Set all lists to New or Classic Experience │ │ ├── Capture465.PNG │ │ ├── Capture466.PNG │ │ ├── README.md │ │ ├── SetExperience.ps1 │ │ └── description.md │ ├── Set single list to New or Classic Experience │ │ ├── Capture.PNG │ │ ├── Capture2.PNG │ │ ├── README.md │ │ ├── SetExperienceSingleList.ps1 │ │ └── description.md │ ├── Verify which lists have the new UI using Powershell and REST │ │ ├── GetExperienceWithREST.ps1 │ │ ├── README.md │ │ ├── description.md │ │ └── images │ │ │ ├── Capture471.PNG │ │ │ ├── Capture472.PNG │ │ │ ├── Capture473.PNG │ │ │ └── test.txt │ └── Verify which lists have the new UI │ │ ├── GetExperience.ps1 │ │ ├── README.md │ │ ├── description.md │ │ └── images │ │ ├── Capture435.PNG │ │ ├── Capture436.PNG │ │ ├── Capture437.PNG │ │ ├── Capture438.PNG │ │ └── test.txt ├── Powershell Module for Managing SPO Lists │ ├── LibSettings.png │ ├── README.md │ ├── SetListFunctions.psm1 │ ├── description.md │ └── lif.png ├── README.md ├── Set the direction of the reading order │ ├── For All Lists │ │ ├── Direction.png │ │ ├── DirectionForAllLists.ps1 │ │ ├── README.md │ │ └── description.md │ └── For a single list │ │ ├── ListDirection.ps1 │ │ ├── README.md │ │ └── description.md ├── Set the major version limit for all the lists and libraries (data loss involved) │ ├── Capture21.PNG │ ├── README.md │ ├── Set-VersionLimit.ps1 │ ├── description.md │ └── versioningPS2.png ├── Versioning │ ├── Create a report on all file versions in the library │ │ ├── README.md │ │ ├── ReportOnVersions2AllFolders.PNG │ │ ├── SPOFolderFilesVersions.ps1 │ │ └── description.md │ ├── Create a report on file versions in library or folder │ │ ├── ReportOnVersions.PNG │ │ ├── SPOFolderFilesVersions.ps1 │ │ └── description.md │ ├── Delete all previous file versions in a library │ │ ├── DeleteFileVersions.ps1 │ │ ├── DeleteVersionsAllFolders.PNG │ │ └── description.md │ ├── Enable minor and major versions for all lists in one site │ │ ├── EnableMinorVersionsOneSite.ps1 │ │ ├── MinorVersioningOneSite2.PNG │ │ └── description.md │ ├── Enable minor versions using Powershell and CSOM │ │ ├── MinorVersioningForOneList.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Enable versioning for all lists in one site │ │ ├── VersioningForOneSite.ps1 │ │ └── description.md │ ├── Enable versioning for one list │ │ ├── VersioningForOneList.ps1 │ │ └── description.md │ └── Get versioning settings for all lists │ │ ├── Capture431.PNG │ │ ├── GetVersioningSettings.ps1 │ │ ├── README.md │ │ └── description.md └── Views │ ├── Get all list view properties using view GUID │ ├── GetListViewByID.ps1 │ ├── Przechwytywanie.PNG │ ├── README.md │ └── description.md │ ├── Get all list view properties using view name │ ├── GetViewByTitle.ps1 │ ├── Przechwytywanie124.PNG │ └── description.md │ ├── Get all views from a single list and their properties │ ├── GetViews.PNG │ ├── GetViews.ps1 │ └── description.md │ ├── README.md │ └── Remove view from SharePoint Online list │ ├── Readme.md │ ├── Remove-SPOListView.ps1 │ └── description.md ├── Managed Metadata ├── Create a new SharePoint Online taxonomy term │ ├── NewTermSingle.ps1 │ ├── README.md │ └── description.md ├── Pull all groups, termsets, terms from your default SharePoint Online termstore │ ├── PullAll2.PNG │ ├── PullAllTerms.ps1 │ ├── README.md │ └── UsingPnP.ps1 ├── README.md └── Taxonomy cmdlets module to manage your term store in SharePoint Online │ ├── README.md │ ├── TaxonomyModule.psm1 │ └── description.md ├── OTHER ├── BigData.rar ├── C# Create a contact list with internal user data │ ├── description.md │ ├── intern.png │ └── sample.cs ├── Change the default language for all the SharePoint Online users │ ├── 1.0.rar │ ├── changedeflg.PNG │ └── description.md ├── CreativeDestruction │ ├── CreativeDestruction.rar │ ├── Description.md │ └── excerpt.cs ├── Get all event receivers on your lists in a site │ ├── GetSPOEventReceivers.PNG │ ├── GetSPOListEventReceivers.ps1 │ ├── README.md │ └── description.md ├── README.md ├── Remove a single event receiver │ ├── DeleteSingleReceiver.ps1 │ ├── deletesinglereceiver.PNG │ └── description.md ├── Unified Groups Storage Report │ ├── UnifiedGroupStorageWithCSOM.ps1 │ ├── UnifiedGroups.PNG │ └── description.md └── Uninstall unwanted app from your site using Powershell │ ├── README.md │ ├── RemoveSPOApp.PNG │ ├── RemoveSPOApp.ps1 │ └── description.md ├── OneDrive for Business ├── Add BCC to all sharing invitations in OneDrive for Business │ ├── BccExternalSharingInvitations.ps1 │ ├── README.md │ ├── Untitled099.png │ └── description.md ├── Create OneDrive for Business usage report for all users │ ├── ODB Report.rar │ ├── WithCSOM.PNG │ └── description.md ├── Create a report on all file versions in OneDrive for Business │ ├── Capture1511.PNG │ ├── GetVersionsinOneDrive.ps1 │ └── description.md ├── Enable versioning for all lists in OneDrive sites │ ├── Capture204.PNG │ ├── Enable versioning in ODB lists.ps1 │ ├── README.md │ └── description.md ├── Enable versioning for all lists in selected OneDrive sites │ ├── Capture.PNG │ ├── EnableVersioningForAllODBListsForSelectedUsers.ps1 │ ├── Przechwytywanie.PNG │ ├── README.md │ └── description.md ├── Globally set OneDrive for Business Access Requests and Members Can Share │ ├── ODBAccessRequests.PNG │ ├── ODBAccessRequests.ps1 │ ├── README.md │ └── description.md ├── Hide OneDrive for Business Sync button using PS and CSOM │ ├── HideSyncButtonOnODB.ps1 │ ├── ODBAccessRequests.222ENG.PNG │ ├── description.md │ └── readme.md ├── Notify OneDrive for Business owner if anonymous link to their content is created │ ├── OwnerAnonymousNotification.ps1 │ └── description.md ├── Notify OneDrive for Business owner if their content is reshared │ ├── NotifyOwnersWhenItemsReshared.ps1 │ └── description.md ├── Set the version limit for OneDrive for Business lists (data loss involved) for all users │ ├── EnableVersionLimitForODBListsForAllUsers.ps1 │ ├── description.md │ └── versioningPS2.png ├── Set the version limit for OneDrive for Business lists (data loss involved) │ ├── EnableVersionLimitForODBListsForSelectedUsers.ps1 │ ├── Przechwytywanie.PNG │ ├── description.md │ └── versioningPS2.png ├── Update locale id for all personal sites │ ├── LocaleID.ps1 │ ├── README.md │ └── description.md └── readme.md ├── Pages ├── ClassicWebparts │ ├── Delete all web parts from a single page │ │ ├── DeleteAllWebParts.ps1 │ │ ├── README.md │ │ ├── RemoveAllWebpartsResult.PNG │ │ └── description.md │ ├── Delete single web part │ │ ├── DeleteSingleWebPart.ps1 │ │ └── description.md │ ├── Get all web parts and their details from a single page │ │ ├── GetAllWebParts.ps1 │ │ ├── GetAllWebpartsResult.PNG │ │ └── description.md │ └── Report on all web parts in all site pages │ │ ├── ReportAll.PNG │ │ ├── ReportAll2.PNG │ │ ├── ReportAllPages.ps1 │ │ └── description.md ├── README.md └── Remove comments on modern pages in entire SharePoint site │ ├── Przechwytywanie151.png │ ├── README.md │ ├── RemoveComments.ps1 │ └── description.md ├── Permissions ├── C# │ ├── Break Inheritance for all items in site │ │ ├── BreakInheritance.rar │ │ ├── breakinheritance.png │ │ ├── description.md │ │ ├── description.txt │ │ └── fullMainFunction.cs │ ├── Delete all unique permissions in site │ │ ├── DeleteUniki.png │ │ ├── ResetRoleInheritance.rar │ │ ├── description.md │ │ ├── description.txt │ │ └── fullMainFunction.cs │ ├── Get Items with Unique Permissions in site collection │ │ ├── DetailedUnique.rar │ │ ├── description.md │ │ ├── description.txt │ │ └── fullMainFunction.cs1 │ └── Get Lists with Unique Permissions │ │ ├── UniqueListsPermissions.rar │ │ ├── description.md │ │ ├── sample.cs │ │ └── uniquelists.png ├── Powershell │ ├── Break role inheritance for a single list │ │ ├── README.md │ │ ├── SetUniquePermissionsSingleList.ps1 │ │ └── description.md │ ├── Delete unique permissions in all items in a large list (5000+ items) │ │ ├── README.md │ │ ├── ResetPermissionInheritanceLargeLists.ps1 │ │ └── description.md │ ├── Get items with unique permissions SharePoint Server │ │ ├── Capture211.PNG │ │ ├── OnlyUnique.ps1 │ │ ├── description.md │ │ └── readme.md │ ├── Get items, folders, lists with unique permissions (SharePoint Server 2013-2016) │ │ ├── Capture209.PNG │ │ ├── OnlyUniqueFLI.ps1 │ │ ├── README.md │ │ └── description.md │ ├── Remove permission groups from personal files │ │ ├── README.md │ │ ├── RemovePermissionGroups.ps1 │ │ ├── SolutionForPropic.PNG │ │ └── description.md │ └── Report on what permission group the user belongs to │ │ ├── PermissionGroup.PNG │ │ ├── PermissionGroups.ps1 │ │ └── description.md └── readme.md ├── Power Automate ├── Enable or Disable │ ├── Disable Flows in all lists on SharePoint site │ │ ├── NoFlows.PNG │ │ ├── NoFlows3.PNG │ │ ├── README.md │ │ ├── disableFlows.ps1 │ │ ├── disableFlows_UsingPnP.ps1 │ │ └── disableFlows_UsingSPOManagementShell.ps1 │ ├── Disable Single Flow │ │ ├── DisableFlowUsingPnP.ps1 │ │ └── readme.md │ └── Enable Microsoft Flow in all lists on SharePoint modern site │ │ ├── NoFlows.PNG │ │ ├── NoFlows3.PNG │ │ ├── README.md │ │ ├── description.md │ │ ├── enableFlows.ps1 │ │ ├── enableFlows_usingPnP.ps1 │ │ └── enableFlows_usingSPOManagementShell.ps1 ├── Get │ ├── Get FlowsPolicy using REST API │ │ ├── GetFlowsPolicy_usingPnP.ps1 │ │ ├── README.md │ │ ├── description.md │ │ ├── flowsWithRest.ps1 │ │ └── images │ │ │ ├── NoFlows.PNG │ │ │ ├── NoFlows3.PNG │ │ │ ├── NoFlows4.PNG │ │ │ └── txt.txt │ ├── GetFlows │ │ ├── GetFlowsCreatedBy.ps1 │ │ ├── GetFlowsOlderOrNewerThan.md │ │ ├── GetFlowsOlderOrNewerThan.ps1 │ │ ├── GetMostProlificFlowCreators.md │ │ ├── GetMostProlificFlowCreators.ps1 │ │ ├── Images │ │ │ ├── flow21.PNG │ │ │ └── ini.txt │ │ └── readme.md │ └── ListAllFlowsUsingPnP │ │ ├── ListAllFlowsUsingPnP.ps1 │ │ └── readme.md └── README.md ├── README.md ├── Site Management ├── Access Requests │ ├── Get SharePoint Online Access Requests Settings with REST API │ │ ├── Capture31.PNG │ │ ├── GetSPOAccessRequestsWithREST.ps1 │ │ ├── description.md │ │ └── readme.md │ ├── Get SharePoint Online Access Requests with REST API │ │ ├── Capture34.PNG │ │ ├── GetSPOAccessRequestsItemsWithREST.ps1 │ │ ├── description.md │ │ └── readme.md │ ├── Get SharePoint Server 2013-2016 Access Requests with REST API │ │ ├── Capture34.PNG │ │ ├── GetSPServerAccessRequestsItemsWithREST.ps1 │ │ ├── description.md │ │ └── readme.md │ ├── Set RequestAccessEmail for all subsites in one site collection │ │ ├── AccessRequestEmail.PNG │ │ ├── RequestEmailAddress.ps1 │ │ └── description.md │ ├── SitesWithOutstandingAccessRequests │ │ ├── FindSitesWithOutstandingAccessRequests.md │ │ └── readme.md │ └── readme.md ├── Add Supported Language for multiple site collections │ ├── README.md │ ├── SetLGforAllSites.ps1 │ └── description.md ├── Add-SPOWeb & Remove-SPOWeb │ ├── AddandRemoveSPOWeb.png │ ├── README.md │ ├── RemoveANDAddSPOWeb1.psm1 │ └── description.md ├── ChangeLog │ ├── Create a report on all changes for all your site collections │ │ ├── changecollection.ps1 │ │ ├── description.md │ │ ├── error.PNG │ │ └── results.PNG │ └── Create a report on all changes for one site collection │ │ ├── changecollection.ps1 │ │ ├── description.md │ │ ├── error.PNG │ │ └── results.PNG ├── Enable page editing when master page editing has been disabled for this site │ ├── AllowMasterPageEditing.PNG │ ├── AllowMasterPageEditing.ps1 │ └── description.md ├── Export site collection properties using Powershell and CSOM │ ├── Capture405.PNG │ ├── SiteCollPropertiesWithCSOM.ps1 │ └── description.md ├── Features │ ├── Activate or deactivate a SPO feature for a single site │ │ ├── description.md │ │ └── enablefeatureForASingleSite.ps1 │ ├── Activate or deactivate a SPO feature for direct subsites in site collection │ │ ├── description.md │ │ └── enablefeature.ps1 │ ├── Activate or deactivate a feature for a site and its subsites │ │ ├── description.md │ │ └── enablefeatureWithRecursion.ps1 │ ├── Activate or deactivate a site collection feature │ │ ├── description.md │ │ └── enablefeatureWithRecursion.ps1 │ ├── Add or Remove Site Features from all Personal Sites │ │ ├── AddFeaturesToPersonal.ps1 │ │ └── description.md │ ├── Get all features from a site collection │ │ ├── GetSPOSIteFeatures.PNG │ │ ├── GetSPOSiteFeatures.ps1 │ │ └── description.md │ └── Get all features from a site │ │ ├── GetSPOWebFeatures.ps1 │ │ └── description.md ├── Get SharePoint Online Site Properties │ ├── GetSiteProperties.PNG │ ├── GetSiteProperties.ps1 │ └── description.md ├── Get all site collections and their subsites │ ├── GetAllSiteandSubsitesRecursive.ps1 │ ├── GetAllSitesandSubsites.PNG │ └── description.md ├── Get site groups from root and subsites │ ├── Capture432.PNG │ ├── Get-SPOAllSiteGroups.ps1 │ └── description.md ├── Get unused SharePoint Online webs │ ├── GetUnusedWebs.ps1 │ └── description.md ├── Get-SPOWeb to retrieve subsites and their properties │ ├── GetSPOWebModule.psm1 │ ├── description.md │ ├── images │ │ ├── GetSpoWEb.png │ │ ├── GetSpoWEb2.png │ │ ├── GetSpoWEb3.png │ │ ├── GetSpoWEb4.png │ │ └── img.png │ └── readme.md ├── Modify Web Inherited Permissions │ ├── SPOWebInheritance.psm1 │ ├── description.md │ └── images │ │ ├── WEbInheritance.PNG │ │ ├── WEbInheritance2.PNG │ │ ├── WEbInheritance3.PNG │ │ └── img.png ├── Navigation │ ├── Create empty node (label) │ │ ├── Create empty node with CSOM.ps1 │ │ └── Create empty node with PnP.ps1 │ └── Get all quick launch nodes │ │ ├── GetAllQuickLaunchNodesWithChildren.ps1 │ │ ├── Przechwytywanie52.PNG │ │ ├── Przechwytywanie53.PNG │ │ └── description.md ├── Powershell cmdlet Set-SpoWeb to manage site properties │ ├── Set-SPOWeb.psm1 │ ├── description.md │ └── setspoweb.png ├── Recycle Bin │ ├── Detailed report on all recycle bin items across all site collections │ │ ├── RecycleAllSiteColl.PNG │ │ ├── RecycleAllSiteCollReportWithDetails.PNG │ │ ├── WhereIsMyFileWithDetails.ps1 │ │ └── description.md │ ├── Move items from first to second stage recycle bin │ │ ├── Capture49.PNG │ │ ├── MovingtoSecondStage.ps1 │ │ └── description.md │ ├── Remove all items from second stage recycle bin (involves data loss) │ │ ├── RemovingSecondStage.ps1 │ │ └── description.md │ ├── Remove permanently all items from recycle bins (data loss involved) │ │ ├── DeleteAll.ps1 │ │ └── description.md │ ├── Report on all deleted items across all site collections │ │ ├── RecycleAllSiteCollReportOnly.PNG │ │ ├── RecycleAllSiteCollReportOnly2.PNG │ │ ├── WhereIsMyFileWithDetails3.ps1 │ │ └── description.md │ ├── Report on deleted files within one site │ │ ├── ReportOnDeleted.ps1 │ │ └── description.md │ ├── Restore All Files from a Given Site │ │ ├── RestoreAllDeletedGroupFiles.ps1 │ │ └── description.md │ ├── Restore all files, items, lists deleted by a single employee │ │ ├── RestoreBasedAllSiteCollections.PNG │ │ ├── RestoreBasedAllSiteCollections2.PNG │ │ ├── WhereIsMyFileWithDetails3BasedRestore.ps1 │ │ └── description.md │ ├── Restore all reycle bin items across all site collections │ │ ├── RestoreAllRecycleBinItems.ps1 │ │ ├── RestoreBasedAllSiteCollections-1.PNG │ │ ├── RestoreBasedAllSiteCollections2-1.PNG │ │ └── description.md │ ├── Restore deleted items from a single subsite │ │ ├── Capture8.PNG │ │ ├── Capture9.PNG │ │ ├── description.md │ │ └── restoreDeletedFromOneSite.ps1 │ ├── Restore one file from a Given Site │ │ ├── RestoreDeletedItem.ps1 │ │ └── description.md │ ├── Retrieve all reycle bin items across all site collections │ │ ├── RecycleAllSiteColl.PNG │ │ ├── RecycleAllSiteCollReport.PNG │ │ ├── WhereIsMyFile.ps1 │ │ └── description.md │ ├── Retrieve all reycle bin items across all sites incl group sites │ │ ├── RecycleAllSiteColl.PNG │ │ ├── RecycleAllSiteCollReport.PNG │ │ ├── WithUnifiedGroups.ps1 │ │ └── description.md │ └── SPServer │ │ └── Restore all files items lists deleted by a single employee │ │ ├── GetDeletedItemsSPServer.ps1 │ │ ├── description.md │ │ ├── images │ │ ├── Capture5.PNG │ │ ├── Capture6.PNG │ │ ├── RestoreBasedAllSiteCollections1.PNG │ │ ├── RestoreBasedAllSiteCollections21.PNG │ │ └── tobedeleted.txt │ │ └── readme.md ├── Remove SPO subsite │ ├── Remove SPO subsite.ps1 │ └── description.md ├── Set theme of your SharePoint Online site │ ├── Capture.PNG │ ├── Capture2-1.PNG │ ├── Theme.ps1 │ └── description.md ├── Site Policy │ ├── GetPoliciesAppliedToYourSitesUsingPnP.ps1 │ └── RemovePolicy │ │ ├── RemovePolicyFromSingleSiteUsingPnP.ps1 │ │ ├── readme.md │ │ ├── sitepolicies2-1.png │ │ └── sitepolicies2.PNG ├── Site designs │ └── Verify where a site design is applied │ │ ├── VerifyWhatSiteDesignsAreAppliedWhere (2).ps1 │ │ └── description.md ├── TimeZone │ └── Update the time zones in all personal sites │ │ ├── PersonalRegSettings.ps1 │ │ └── description.md ├── Update locale id for all personal sites │ ├── Get all time zones from a site │ │ ├── GetAllTimeZones.ps1 │ │ └── description.md │ ├── LocaleID.ps1 │ └── description.md └── readme.md ├── SiteMailboxes ├── AddMailboxtoSingleSite.ps1 ├── Readme.txt ├── mailb.ps1 └── mailbox1.ps1 ├── Tenant Settings ├── Add BCC to all sharing invitations in OneDrive for Business │ ├── BccExternalSharingInvitations.ps1 │ ├── README.md │ ├── Untitled099.png │ └── description.md ├── Allow external sharing only with specific domains │ ├── README.md │ ├── SharingAllowedDomainList.ps1 │ └── description.md ├── Block download of all files for guests in SharePoint with Powershell and CSOM │ ├── 0882BlockDownload.png │ ├── 1462BlockDownload2.png │ ├── BlockDownloadOfAllFilesForGuests.ps1 │ ├── README.md │ └── description.md ├── Compare2tenants │ ├── compare2tenantsCSOM.ps1 │ ├── compare2tenantsPNPPowershell.ps1 │ └── compare2tenantsSPOManagementShell.ps1 ├── Force external users to accept sharing invitations with the same account │ ├── 0042.png │ ├── README.md │ ├── RequireAcceptingAccountMatchInvitedAccount.ps1 │ └── description.md ├── Get SharePoint Online tenant properties using Powershell and CSOM │ ├── README.md │ ├── Untitled101.png │ └── tenantProps.ps1 ├── Globally set OneDrive for Business Access Requests and Members Can Share │ ├── ODBAccessRequests.PNG │ ├── ODBAccessRequests.ps1 │ ├── README.md │ └── description.md ├── Hide OneDrive for Business Sync button using PS and CSOM │ ├── HideSyncButtonOnODB.ps1 │ ├── ODBAccessRequests.222ENG.PNG │ ├── README.md │ └── description.md ├── Modify external sharing setting │ ├── README.md │ ├── SharingCapability.ps1 │ └── description.md ├── Notify OneDrive for Business owner if anonymous link to their content is created │ ├── OwnerAnonymousNotification.ps1 │ ├── README.md │ └── description.md ├── Notify OneDrive for Business owner if their content is reshared │ ├── NotifyOwnersWhenItemsReshared.ps1 │ ├── README.md │ └── description.md ├── Prevent external users from resharing │ ├── PreventExternalUsersFromResharing.ps1 │ ├── additionalSettings.png │ └── description.md ├── README.md ├── Report on SharePoint Online tenant properties │ ├── Untitled103.png │ ├── description.md │ └── tenantProps.ps1 ├── Set Anonymous access for SPO tenant using PS and CSOM │ ├── SetAnonymousAccess.ps1 │ └── description.md ├── Set anonymous link access level for SPO tenant │ ├── AnonymousLinkType.ps1 │ ├── README.md │ └── description.md ├── Set default link type for SharePoint Online tenant sharing settings │ ├── LinkType.PNG │ ├── README.md │ ├── SharingLinkType.ps1 │ └── description.md └── Set expiration for anonymous links in SPO │ ├── SetExpirationForAnonymousLinks (1).ps1 │ ├── description.md │ └── readme.md ├── User Profiles ├── Export all user profiles using Powershell │ ├── Capture401.PNG │ ├── ExportSPOUserAllPropertiesWithREST.ps1 │ ├── README.md │ └── description.md ├── Get MUI Languages for multiple users using REST │ ├── Capture68.PNG │ ├── GetSPOUserLanguagesWithREST.ps1 │ ├── README.md │ └── description.md ├── Get all user profile properties using Powershell and REST │ ├── Capture69.PNG │ ├── GetSPOUserAllPropertiesWithREST.ps1 │ └── description.md ├── Get user work email using Powershell and REST │ ├── Capture67.PNG │ ├── GetSPOUserEmailWithREST.ps1 │ └── description.md ├── README.md └── Retrieve all user profiles and their properties using C# and CSOM │ ├── 2.0.rar │ └── description.md ├── Versioning ├── Create a report on all file versions in OneDrive for Business │ ├── Capture1511.PNG │ ├── GetVersionsinOneDrive.ps1 │ ├── README.md │ └── description.md ├── Enable minor versions for all lists │ ├── MinorVersioningCSOM.ps1 │ ├── MinorVersioningPnP.ps1 │ ├── description.md │ ├── minorversioning.png │ ├── minorversioning2.png │ └── readme.md ├── Enable versioning for all SharePoint Online lists │ ├── VersioningCSOM.ps1 │ ├── VersioningPnP.ps1 │ ├── description.md │ ├── enableversioning.ps1 │ ├── readme.md │ ├── versioningPS.png │ ├── versioningPS2.png │ └── versioningPS3.png ├── Enable versioning for all lists in OneDrive sites │ ├── Capture204.PNG │ ├── Enable versioning in ODB lists.ps1 │ ├── description.md │ └── readme.md ├── Enable versions for selected sites and their subsites │ ├── EnableVersions.ps1 │ ├── README.md │ └── description.md ├── Get versioning settings for all lists │ ├── Capture431.PNG │ ├── GetVersioningSettings.ps1 │ ├── description.md │ └── readme.md ├── README.md ├── Restore previous versions in selected files the entire library │ ├── RestorePreviousVersionsInSelectedFiles.ps1 │ ├── description.md │ └── readme.md ├── Restore previous versions in the entire library │ ├── Restore previous versions.ps1 │ ├── Restorelast.PNG │ ├── description.md │ └── readme.md └── Set the major version limit for all the lists and libraries (data loss involved) │ ├── Capture21.PNG │ ├── Set-VersionLimit.ps1 │ ├── description.md │ ├── readme.md │ └── versioningPS2.png ├── Workflows ├── Get workflow report for a site collection │ ├── README.md │ ├── Report workflows in one site collection.ps1 │ ├── SampleResults.csv │ └── wf1.png ├── Get workflow report for all site collections │ ├── README.md │ ├── SampleResults.csv │ ├── Workflows.ps1 │ ├── description.md │ └── wf1.png ├── Get workflow report for one site │ ├── SampleResults.csv │ ├── description.md │ ├── readme.md │ ├── wf1.png │ └── workflows in one site.ps1 ├── README.md ├── Remove list workflow associations │ ├── RemoveListWFs.ps1 │ └── readme.md ├── Remove workflow site associations │ └── RemoveSiteWFs.ps1 └── test.txt └── todo.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Content Types/Content Types Management Setting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Content Types Management Setting/README.md -------------------------------------------------------------------------------- /Content Types/Create/Add Content Type to Lists with Workflows/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add Content Type to Lists with Workflows/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Add Content Type to Lists with Workflows/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add Content Type to Lists with Workflows/description.md -------------------------------------------------------------------------------- /Content Types/Create/Add Content Type to Task Lists/AddContentTypetoTaskLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add Content Type to Task Lists/AddContentTypetoTaskLists.ps1 -------------------------------------------------------------------------------- /Content Types/Create/Add Content Type to Task Lists/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add Content Type to Task Lists/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Add Content Type to Task Lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add Content Type to Task Lists/description.md -------------------------------------------------------------------------------- /Content Types/Create/Add existing content type directly to SPO list/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add existing content type directly to SPO list/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Add existing content type directly to SPO list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Add existing content type directly to SPO list/description.md -------------------------------------------------------------------------------- /Content Types/Create/Create a content type/CreateContentType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create a content type/CreateContentType.ps1 -------------------------------------------------------------------------------- /Content Types/Create/Create a content type/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create a content type/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Create a content type/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create a content type/description.md -------------------------------------------------------------------------------- /Content Types/Create/Create and add content type to a content type hub/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create and add content type to a content type hub/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Create and add content type to a content type hub/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create and add content type to a content type hub/description.md -------------------------------------------------------------------------------- /Content Types/Create/Create content type and add directly to SPO list/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create content type and add directly to SPO list/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Create content type and add directly to SPO list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create content type and add directly to SPO list/description.md -------------------------------------------------------------------------------- /Content Types/Create/Create content type and add it to all lists in one site/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create content type and add it to all lists in one site/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Create/Create content type and add it to all lists in one site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Create/Create content type and add it to all lists in one site/description.md -------------------------------------------------------------------------------- /Content Types/Display Forms/Find Custom Display Forms Deployed/DisplayFormUrl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Display Forms/Find Custom Display Forms Deployed/DisplayFormUrl3.png -------------------------------------------------------------------------------- /Content Types/Display Forms/Find Custom Display Forms Deployed/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Display Forms/Find Custom Display Forms Deployed/ReadMe.md -------------------------------------------------------------------------------- /Content Types/Display Forms/Find Custom Display Forms Deployed/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Display Forms/Find Custom Display Forms Deployed/description.md -------------------------------------------------------------------------------- /Content Types/Display Forms/Modify the Display Form Template Name/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Display Forms/Modify the Display Form Template Name/Readme.md -------------------------------------------------------------------------------- /Content Types/Display Forms/Modify the Display Form Template Name/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Display Forms/Modify the Display Form Template Name/description.md -------------------------------------------------------------------------------- /Content Types/Display Forms/README.md: -------------------------------------------------------------------------------- 1 | Scripts regarding SharePoint item display form 2 | -------------------------------------------------------------------------------- /Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/CompareAvVSCT.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/CompareAvVSCT.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/SubsiteCT2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/SubsiteCT2.PNG -------------------------------------------------------------------------------- /Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Compare Web.AvailableContentTypes vs Web.ContentTypes/description.md -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists (recursive)/Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists (recursive)/Error.PNG -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists (recursive)/RecursiveContentTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists (recursive)/RecursiveContentTypes.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists (recursive)/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists (recursive)/description.md -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists (recursive)/recursiveResult.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists (recursive)/recursiveResult.PNG -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists (recursive)/recursiveResult2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists (recursive)/recursiveResult2.PNG -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists/Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists/Error.PNG -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists/checkallcontenttypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists/checkallcontenttypes.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists/description.md -------------------------------------------------------------------------------- /Content Types/Get/Find content types added to your lists/result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Find content types added to your lists/result.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get All Detailed Properties of All Content Types/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get All Detailed Properties of All Content Types/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get All Hidden Content Types added to the site/GetSingleContentTypeLoop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get All Hidden Content Types added to the site/GetSingleContentTypeLoop.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get All Hidden Content Types added to the site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get All Hidden Content Types added to the site/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Content Types Derived From One Parent/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Content Types Derived From One Parent/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Content Types Derived From One Parent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Content Types Derived From One Parent/readme.md -------------------------------------------------------------------------------- /Content Types/Get/Get Content Types with a particular column/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Content Types with a particular column/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Names of All Content Types/GetAllContentTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of All Content Types/GetAllContentTypes.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get Names of All Content Types/GetAv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of All Content Types/GetAv.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Names of All Content Types/GetAv2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of All Content Types/GetAv2.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Names of All Content Types/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of All Content Types/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all Available Content Types/GetAllAvailableContentTypesName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all Available Content Types/GetAllAvailableContentTypesName.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all Available Content Types/GetAv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all Available Content Types/GetAv.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all Available Content Types/GetAv2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all Available Content Types/GetAv2.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all Available Content Types/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all Available Content Types/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all content types added to your lists/Error0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all content types added to your lists/Error0.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all content types added to your lists/GetCTNamesinAllLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all content types added to your lists/GetCTNamesinAllLists.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all content types added to your lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all content types added to your lists/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all content types added to your lists/readme.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Content Types/Get/Get Names of all content types added to your lists/result0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Names of all content types added to your lists/result0.PNG -------------------------------------------------------------------------------- /Content Types/Get/Get Single Content Type - Array Method/GetSingleContentType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Single Content Type - Array Method/GetSingleContentType.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get Single Content Type - Array Method/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get Single Content Type - Array Method/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get all columns associated to a SINGLE content type in a list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get all columns associated to a SINGLE content type in a list/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get all properties of all content types in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get all properties of all content types in a site/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get content types belonging to a group/GetSingleContentTypeLoopGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get content types belonging to a group/GetSingleContentTypeLoopGroup.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Get content types belonging to a group/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get content types belonging to a group/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get content types which cannot be modified/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get content types which cannot be modified/description.md -------------------------------------------------------------------------------- /Content Types/Get/Get properties of a single content type by its ID/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Get properties of a single content type by its ID/description.md -------------------------------------------------------------------------------- /Content Types/Get/Lists where a given content type is added/Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Lists where a given content type is added/Error.PNG -------------------------------------------------------------------------------- /Content Types/Get/Lists where a given content type is added/RecursiveContentTypesName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Lists where a given content type is added/RecursiveContentTypesName.ps1 -------------------------------------------------------------------------------- /Content Types/Get/Lists where a given content type is added/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Lists where a given content type is added/description.md -------------------------------------------------------------------------------- /Content Types/Get/Lists where a given content type is added/resultName.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Lists where a given content type is added/resultName.PNG -------------------------------------------------------------------------------- /Content Types/Get/Lists where a given content type is added/resultName2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Get/Lists where a given content type is added/resultName2.PNG -------------------------------------------------------------------------------- /Content Types/Modules/SharePoint Online module for managing content types/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Modules/SharePoint Online module for managing content types/description.md -------------------------------------------------------------------------------- /Content Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/README.md -------------------------------------------------------------------------------- /Content Types/Remove/Remove a content type from all lists in a site/Error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove a content type from all lists in a site/Error.PNG -------------------------------------------------------------------------------- /Content Types/Remove/Remove a content type from all lists in a site/RemoveContentType.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove a content type from all lists in a site/RemoveContentType.PNG -------------------------------------------------------------------------------- /Content Types/Remove/Remove a content type from all lists in a site/ReportOnDeleted.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove a content type from all lists in a site/ReportOnDeleted.ps1 -------------------------------------------------------------------------------- /Content Types/Remove/Remove a content type from all lists in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove a content type from all lists in a site/description.md -------------------------------------------------------------------------------- /Content Types/Remove/Remove content type from SharePoint site/ContentType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove content type from SharePoint site/ContentType.ps1 -------------------------------------------------------------------------------- /Content Types/Remove/Remove content type from SharePoint site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Remove/Remove content type from SharePoint site/description.md -------------------------------------------------------------------------------- /Content Types/Set/Add column (fieldlink) to a content type/ModifyFieldsvsFieldLinks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Add column (fieldlink) to a content type/ModifyFieldsvsFieldLinks.ps1 -------------------------------------------------------------------------------- /Content Types/Set/Add column (fieldlink) to a content type/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Add column (fieldlink) to a content type/description.md -------------------------------------------------------------------------------- /Content Types/Set/Add column (fieldlink) to a content type/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Add column (fieldlink) to a content type/readme.md -------------------------------------------------------------------------------- /Content Types/Set/Assign your Content Types back to their default Groups/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Assign your Content Types back to their default Groups/description.md -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a list content type/Edit-Description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a list content type/Edit-Description.png -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a list content type/Edit-Description2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a list content type/Edit-Description2.png -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a list content type/Edit-Description3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a list content type/Edit-Description3.png -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a list content type/ModifyDescription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a list content type/ModifyDescription.ps1 -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a list content type/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a list content type/description.md -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a site content type/ModifyDescriptionSiteByID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a site content type/ModifyDescriptionSiteByID.ps1 -------------------------------------------------------------------------------- /Content Types/Set/Modify the description of a site content type/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Modify the description of a site content type/description.md -------------------------------------------------------------------------------- /Content Types/Set/Reset default content types/Edit-DisplayFormTemplateName5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Reset default content types/Edit-DisplayFormTemplateName5.PNG -------------------------------------------------------------------------------- /Content Types/Set/Reset default content types/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Reset default content types/description.md -------------------------------------------------------------------------------- /Content Types/Set/Unseal a content type/UnsealCT.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal a content type/UnsealCT.ps1 -------------------------------------------------------------------------------- /Content Types/Set/Unseal sealed content types in site/Edit-Sealed.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal sealed content types in site/Edit-Sealed.PNG -------------------------------------------------------------------------------- /Content Types/Set/Unseal sealed content types in site/Edit-Sealed2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal sealed content types in site/Edit-Sealed2.PNG -------------------------------------------------------------------------------- /Content Types/Set/Unseal sealed content types in site/UnsealAllCT.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal sealed content types in site/UnsealAllCT.ps1 -------------------------------------------------------------------------------- /Content Types/Set/Unseal sealed content types in site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal sealed content types in site/description.md -------------------------------------------------------------------------------- /Content Types/Set/Unseal sealed content types in site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Content Types/Set/Unseal sealed content types in site/readme.md -------------------------------------------------------------------------------- /File Management/Add thousands of documents to your SPO library/DocLibrary2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Add thousands of documents to your SPO library/DocLibrary2.rar -------------------------------------------------------------------------------- /File Management/Add thousands of documents to your SPO library/LibHowItRuns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Add thousands of documents to your SPO library/LibHowItRuns.png -------------------------------------------------------------------------------- /File Management/Add thousands of documents to your SPO library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Add thousands of documents to your SPO library/README.md -------------------------------------------------------------------------------- /File Management/Add thousands of documents to your SPO library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Add thousands of documents to your SPO library/description.md -------------------------------------------------------------------------------- /File Management/Add thousands of documents to your SPO library/solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Add thousands of documents to your SPO library/solution.cs -------------------------------------------------------------------------------- /File Management/Audit folder structure/Audit Sharepoint folder structure to XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/README.md -------------------------------------------------------------------------------- /File Management/Audit folder structure/Audit Sharepoint folder structure to XML/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Audit folder structure/Audit Sharepoint folder structure to XML/description.md -------------------------------------------------------------------------------- /File Management/Audit folder structure/Audit folder structure to XML/Przechwytywanie281.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Audit folder structure/Audit folder structure to XML/Przechwytywanie281.PNG -------------------------------------------------------------------------------- /File Management/Audit folder structure/Audit folder structure to XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Audit folder structure/Audit folder structure to XML/README.md -------------------------------------------------------------------------------- /File Management/Audit folder structure/Audit folder structure to XML/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Audit folder structure/Audit folder structure to XML/description.md -------------------------------------------------------------------------------- /File Management/Audit folder structure/README.md: -------------------------------------------------------------------------------- 1 | Scripts showing folder structure in library 2 | -------------------------------------------------------------------------------- /File Management/CountFiles/InAList/countfilesinRootFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/CountFiles/InAList/countfilesinRootFolder.ps1 -------------------------------------------------------------------------------- /File Management/CountFiles/InAList/countfilesrecursivelyinalibrary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/CountFiles/InAList/countfilesrecursivelyinalibrary.ps1 -------------------------------------------------------------------------------- /File Management/CountFiles/InSpecificFolder/countfilesrecursively.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/CountFiles/InSpecificFolder/countfilesrecursively.ps1 -------------------------------------------------------------------------------- /File Management/CountFiles/Readme.md: -------------------------------------------------------------------------------- 1 | Short PnP scripts that count files. 2 | -------------------------------------------------------------------------------- /File Management/CountFiles/WithUniquePermissions/InFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/CountFiles/WithUniquePermissions/InFolder.ps1 -------------------------------------------------------------------------------- /File Management/CountFiles/WithUniquePermissions/InLibrary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/CountFiles/WithUniquePermissions/InLibrary.ps1 -------------------------------------------------------------------------------- /File Management/Create sample folder and file structure for testing/MultiplyFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Create sample folder and file structure for testing/MultiplyFiles.ps1 -------------------------------------------------------------------------------- /File Management/Create sample folder and file structure for testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Create sample folder and file structure for testing/README.md -------------------------------------------------------------------------------- /File Management/Create sample folder and file structure for testing/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Create sample folder and file structure for testing/description.md -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/GetSPOFolderFiles.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/GetSPOFolderFiles.psm1 -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/README.md -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/description.md -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/images/GetSPOFolderFiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/images/GetSPOFolderFiles.PNG -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/images/GetSPOFolderFiles2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/images/GetSPOFolderFiles2.PNG -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/images/GetSPOFolderFiles3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Files from a folder/images/GetSPOFolderFiles3.PNG -------------------------------------------------------------------------------- /File Management/Get SPO Files from a folder/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /File Management/Get SPO Folder and File/GetSPOFileAndFolderModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Folder and File/GetSPOFileAndFolderModule.psm1 -------------------------------------------------------------------------------- /File Management/Get SPO Folder and File/GetSPOFileandFolder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Folder and File/GetSPOFileandFolder.PNG -------------------------------------------------------------------------------- /File Management/Get SPO Folder and File/GetSPOFileandFolder2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Folder and File/GetSPOFileandFolder2.PNG -------------------------------------------------------------------------------- /File Management/Get SPO Folder and File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Folder and File/README.md -------------------------------------------------------------------------------- /File Management/Get SPO Folder and File/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Get SPO Folder and File/description.md -------------------------------------------------------------------------------- /File Management/Module for checking in and checking out the files/FileFile1.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for checking in and checking out the files/FileFile1.psm1 -------------------------------------------------------------------------------- /File Management/Module for checking in and checking out the files/Filefile1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for checking in and checking out the files/Filefile1.PNG -------------------------------------------------------------------------------- /File Management/Module for checking in and checking out the files/Filefile11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for checking in and checking out the files/Filefile11.PNG -------------------------------------------------------------------------------- /File Management/Module for checking in and checking out the files/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for checking in and checking out the files/description.md -------------------------------------------------------------------------------- /File Management/Module for easy file management/FileFile10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/FileFile10.psm1 -------------------------------------------------------------------------------- /File Management/Module for easy file management/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /File Management/Module for easy file management/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/description.md -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile2.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile21.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile22.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile22.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile23.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile23.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile24.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile24.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile25.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile25.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile251.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile251.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile26.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile26.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/Filefile27.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Module for easy file management/images/Filefile27.PNG -------------------------------------------------------------------------------- /File Management/Module for easy file management/images/test.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /File Management/Powershell cmdlet for getting the number of files in a folder/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /File Management/Powershell cmdlet for getting the number of files in a folder/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Powershell cmdlet for getting the number of files in a folder/description.md -------------------------------------------------------------------------------- /File Management/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Readme.md -------------------------------------------------------------------------------- /File Management/Records Management/Declare files as records/CaptureDeclare.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Declare files as records/CaptureDeclare.PNG -------------------------------------------------------------------------------- /File Management/Records Management/Declare files as records/DeclareAsRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Declare files as records/DeclareAsRecord.ps1 -------------------------------------------------------------------------------- /File Management/Records Management/Declare files as records/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Declare files as records/README.md -------------------------------------------------------------------------------- /File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Declare files as records/declareAsRecordsLargeLibraries.ps1 -------------------------------------------------------------------------------- /File Management/Records Management/Declare files as records/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Declare files as records/description.md -------------------------------------------------------------------------------- /File Management/Records Management/Undeclare files as records/Captureundeclare.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Undeclare files as records/Captureundeclare.PNG -------------------------------------------------------------------------------- /File Management/Records Management/Undeclare files as records/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /File Management/Records Management/Undeclare files as records/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Undeclare files as records/description.md -------------------------------------------------------------------------------- /File Management/Records Management/Undeclare files as records/undeclareAsRecords.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Records Management/Undeclare files as records/undeclareAsRecords.ps1 -------------------------------------------------------------------------------- /File Management/Restore previous versions in selected files the entire library/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /File Management/Restore previous versions in selected files the entire library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/File Management/Restore previous versions in selected files the entire library/description.md -------------------------------------------------------------------------------- /Getting SPO objects with REST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/README.md -------------------------------------------------------------------------------- /Getting SPO objects with REST/Script to get SharePoint objects with REST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Script to get SharePoint objects with REST/README.md -------------------------------------------------------------------------------- /Getting SPO objects with REST/Script to get SharePoint objects with REST/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Script to get SharePoint objects with REST/description.md -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/GetSPOObjects.psm1 -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/Untitled21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/Untitled21.png -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/Untitled22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/Untitled22.png -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/Untitled23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/Untitled23.png -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/Untitled24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/Untitled24.png -------------------------------------------------------------------------------- /Getting SPO objects with REST/Unrestricted Module/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Getting SPO objects with REST/Unrestricted Module/description.md -------------------------------------------------------------------------------- /Items Management/Attachments/Add size of SharePoint item attachments to list view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Add size of SharePoint item attachments to list view/README.md -------------------------------------------------------------------------------- /Items Management/Attachments/Add size of SharePoint item attachments to list view/capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Add size of SharePoint item attachments to list view/capture.PNG -------------------------------------------------------------------------------- /Items Management/Attachments/Copy all SharePoint Online list item attachments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy all SharePoint Online list item attachments/README.md -------------------------------------------------------------------------------- /Items Management/Attachments/Copy all SharePoint Online list item attachments/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy all SharePoint Online list item attachments/description.md -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/Capture.PNG -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/Capture2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/Capture2.PNG -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/Capture3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/Capture3.PNG -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/CopyAttachments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/CopyAttachments.ps1 -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/README.md -------------------------------------------------------------------------------- /Items Management/Attachments/Copy list attachments to a separate library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Copy list attachments to a separate library/description.md -------------------------------------------------------------------------------- /Items Management/Attachments/Delete all your list attachments (data loss involved)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Delete all your list attachments (data loss involved)/README.md -------------------------------------------------------------------------------- /Items Management/Attachments/Disable or enable attachments to list items/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Disable or enable attachments to list items/README.md -------------------------------------------------------------------------------- /Items Management/Attachments/Disable or enable attachments to list items/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Disable or enable attachments to list items/description.md -------------------------------------------------------------------------------- /Items Management/Attachments/Get the size of all attachments in a list/ListAllAttachments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Get the size of all attachments in a list/ListAllAttachments.ps1 -------------------------------------------------------------------------------- /Items Management/Attachments/Get the size of all attachments in a list/Przechwytywanie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Get the size of all attachments in a list/Przechwytywanie.PNG -------------------------------------------------------------------------------- /Items Management/Attachments/Get the size of all attachments in a list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Attachments/Get the size of all attachments in a list/description.md -------------------------------------------------------------------------------- /Items Management/Attachments/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Items Management/Bulk update all items in a list/BulkUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Bulk update all items in a list/BulkUpdate.ps1 -------------------------------------------------------------------------------- /Items Management/Bulk update all items in a list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Bulk update all items in a list/README.md -------------------------------------------------------------------------------- /Items Management/Bulk update all items in a list/bulkupdate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Bulk update all items in a list/bulkupdate2.png -------------------------------------------------------------------------------- /Items Management/Bulk update all items in a list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Bulk update all items in a list/description.md -------------------------------------------------------------------------------- /Items Management/Create new list item using Powershell/NewSPOListItem.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Create new list item using Powershell/NewSPOListItem.psm1 -------------------------------------------------------------------------------- /Items Management/Create new list item using Powershell/Newlistitem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Create new list item using Powershell/Newlistitem.PNG -------------------------------------------------------------------------------- /Items Management/Create new list item using Powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Create new list item using Powershell/README.md -------------------------------------------------------------------------------- /Items Management/Create new list item using Powershell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Create new list item using Powershell/description.md -------------------------------------------------------------------------------- /Items Management/Get/Get the number of items in a list/GetSPOListItemCount.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/Get the number of items in a list/GetSPOListItemCount.psm1 -------------------------------------------------------------------------------- /Items Management/Get/Get the number of items in a list/GetSpoListCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/Get the number of items in a list/GetSpoListCount.png -------------------------------------------------------------------------------- /Items Management/Get/Get the number of items in a list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/Get the number of items in a list/description.md -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/GetSPOListItems.psm1 -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/README.md -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/description.md -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/GEtspolistitems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/GEtspolistitems.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems2.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems3.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems5.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems6.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems7.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/GetSpoListItems and GetSPOListFields/images/getspolistitems8.png -------------------------------------------------------------------------------- /Items Management/Get/GetSpoListItems and GetSPOListFields/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Items Management/Get/List 10 latest items a user has modified/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/List 10 latest items a user has modified/description.md -------------------------------------------------------------------------------- /Items Management/Get/List 10 latest items a user has modified/gettenrecentitems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/List 10 latest items a user has modified/gettenrecentitems.ps1 -------------------------------------------------------------------------------- /Items Management/Get/List 5 latest items a user has created in list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/List 5 latest items a user has created in list/README.md -------------------------------------------------------------------------------- /Items Management/Get/List 5 latest items a user has created in list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/List 5 latest items a user has created in list/description.md -------------------------------------------------------------------------------- /Items Management/Get/List 5 latest items a user has created in list/get5lastcreated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Get/List 5 latest items a user has created in list/get5lastcreated.ps1 -------------------------------------------------------------------------------- /Items Management/Get/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Items Management/Module for item management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/README.md -------------------------------------------------------------------------------- /Items Management/Module for item management/SPOListItemFunctions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/SPOListItemFunctions.psm1 -------------------------------------------------------------------------------- /Items Management/Module for item management/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/description.md -------------------------------------------------------------------------------- /Items Management/Module for item management/images/LisItemFunctionsRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/images/LisItemFunctionsRemove.png -------------------------------------------------------------------------------- /Items Management/Module for item management/images/LisItemFunctionsUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/images/LisItemFunctionsUpdate.png -------------------------------------------------------------------------------- /Items Management/Module for item management/images/LisItemFunctionsUpdate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/images/LisItemFunctionsUpdate2.png -------------------------------------------------------------------------------- /Items Management/Module for item management/images/LisItemFunctionsUpdate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/images/LisItemFunctionsUpdate3.png -------------------------------------------------------------------------------- /Items Management/Module for item management/images/RemoveItemPermissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Module for item management/images/RemoveItemPermissions.png -------------------------------------------------------------------------------- /Items Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/README.md -------------------------------------------------------------------------------- /Items Management/Remove permissions from SharePoint Online items/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Items Management/Remove permissions from SharePoint Online items/RemoveItemPermissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Remove permissions from SharePoint Online items/RemoveItemPermissions.png -------------------------------------------------------------------------------- /Items Management/Remove permissions from SharePoint Online items/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Items Management/Remove permissions from SharePoint Online items/description.md -------------------------------------------------------------------------------- /Licensing/Check User Licenses using plan type/Capture14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check User Licenses using plan type/Capture14.PNG -------------------------------------------------------------------------------- /Licensing/Check User Licenses using plan type/Capture15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check User Licenses using plan type/Capture15.PNG -------------------------------------------------------------------------------- /Licensing/Check User Licenses using plan type/CheckingLicensesWithPlanType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check User Licenses using plan type/CheckingLicensesWithPlanType.ps1 -------------------------------------------------------------------------------- /Licensing/Check User Licenses using plan type/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check User Licenses using plan type/readme.md -------------------------------------------------------------------------------- /Licensing/Check user licenses using Service Name/Capture14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check user licenses using Service Name/Capture14.PNG -------------------------------------------------------------------------------- /Licensing/Check user licenses using Service Name/Capture15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check user licenses using Service Name/Capture15.PNG -------------------------------------------------------------------------------- /Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check user licenses using Service Name/CheckLicensesWithServiceName.ps1 -------------------------------------------------------------------------------- /Licensing/Check user licenses using Service Name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check user licenses using Service Name/README.md -------------------------------------------------------------------------------- /Licensing/Check user licenses using Service Name/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Check user licenses using Service Name/description.md -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Export all assigned licenses and services provisioning statuses/README.md -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Export all assigned licenses and services provisioning statuses/description.md -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/images/Capture72.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Export all assigned licenses and services provisioning statuses/images/Capture72.PNG -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/images/Capture73.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Export all assigned licenses and services provisioning statuses/images/Capture73.PNG -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/images/Capture74.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Export all assigned licenses and services provisioning statuses/images/Capture74.PNG -------------------------------------------------------------------------------- /Licensing/Export all assigned licenses and services provisioning statuses/images/txt.txt: -------------------------------------------------------------------------------- 1 | n 2 | -------------------------------------------------------------------------------- /Licensing/Get user licenses and services provisioning statuses/Capture72.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Get user licenses and services provisioning statuses/Capture72.PNG -------------------------------------------------------------------------------- /Licensing/Get user licenses and services provisioning statuses/Capture73.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Get user licenses and services provisioning statuses/Capture73.PNG -------------------------------------------------------------------------------- /Licensing/Get user licenses and services provisioning statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Get user licenses and services provisioning statuses/README.md -------------------------------------------------------------------------------- /Licensing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/README.md -------------------------------------------------------------------------------- /Licensing/Remove SharePoint Online licenses for all users/NOSPO.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Remove SharePoint Online licenses for all users/NOSPO.PNG -------------------------------------------------------------------------------- /Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Remove SharePoint Online licenses for all users/NoSpoLicense.ps1 -------------------------------------------------------------------------------- /Licensing/Remove SharePoint Online licenses for all users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Remove SharePoint Online licenses for all users/README.md -------------------------------------------------------------------------------- /Licensing/Remove SharePoint Online licenses for all users/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Licensing/Remove SharePoint Online licenses for all users/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow list to be deleted/AllowListDeletion.ps1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow list to be deleted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow list to be deleted/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow list to be deleted/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow list to be deleted/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow list items to appear in search/NoCrawl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow list items to appear in search/NoCrawl.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow list items to appear in search/NoCrawl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow list items to appear in search/NoCrawl.ps1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow list items to appear in search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow list items to appear in search/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow list items to appear in search/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow list items to appear in search/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow users to create folders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow users to create folders/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Allow or disallow users to create folders/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Allow or disallow users to create folders/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Break inheritance for all SPO lists in a site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Break inheritance for all SPO lists in a site/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Break inheritance for all SPO lists in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Break inheritance for all SPO lists in a site/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Break inheritance for all SPO lists in a site/uniquepermS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Break inheritance for all SPO lists in a site/uniquepermS.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Change search setting for all lists in a site/NoCrawl.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Change search setting for all lists in a site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Change search setting for all lists in a site/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Change search setting for all lists in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Change search setting for all lists in a site/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Checkout/Powershell/Force checkout on a list/ListCheckout.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Checkout/Powershell/Force checkout on a list/ListCheckout.psm1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Checkout/Powershell/Force checkout on a list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Checkout/Powershell/Force checkout on a list/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Add a geolocation column/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Add a geolocation column/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Add a geolocation column/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Add a geolocation column/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new choice column/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new choice column/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new choice column/choicecolumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new choice column/choicecolumn.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new choice column/choicecolumn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new choice column/choicecolumn2.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new choice column/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new choice column/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new column in list/NewspoList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new column in list/NewspoList.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new column in list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new column in list/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create a new column in list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create a new column in list/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Create new column with properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Create new column with properties/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Module for list column management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Module for list column management/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Module for list column management/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Remove list column/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Remove list column/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Remove list column/RemoveSPOListColumn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Remove list column/RemoveSPOListColumn.ps1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Column Management/Remove list column/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Column Management/Remove list column/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/NewSPOList.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/NewSPOList.psm1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList2.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList3.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/NEWSPOList4.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Create SPO list with a Powershell cmdlet/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all event receivers on your lists in a site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all event receivers on your lists in a site/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all event receivers on your lists in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all event receivers on your lists in a site/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all lists not used since/GetUnusedLists.ps1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all lists not used since/Przechwytywanie61.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all lists not used since/Przechwytywanie61.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all lists not used since/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all lists not used since/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get all lists not used since/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get all lists not used since/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get large SharePoint Online lists v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get large SharePoint Online lists v2/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get large SharePoint Online lists v2/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get large SharePoint Online lists v2/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get large SharePoint Online lists/FindLargeLists.ps1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Get large SharePoint Online lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get large SharePoint Online lists/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get large SharePoint Online lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get large SharePoint Online lists/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get the number of files and folders in library/Capture30.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get the number of files and folders in library/Capture30.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Get the number of files and folders in library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get the number of files and folders in library/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Get the number of files and folders in library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Get the number of files and folders in library/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/GetListCount.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/GetListCount.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/GetListCountCSV.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/GetListCountCSV.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/GetListCounttenant.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/GetListCounttenant.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/GetSPOListCountModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/GetSPOListCountModule.psm1 -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/GetSPOListCount cmdlet/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/GetSPOListCount cmdlet/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Modern or Classic/Verify which lists have the new UI using Powershell and REST/images/test.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Lists and Libraries Management/Modern or Classic/Verify which lists have the new UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Modern or Classic/Verify which lists have the new UI/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Modern or Classic/Verify which lists have the new UI/images/test.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lists and Libraries Management/Powershell Module for Managing SPO Lists/LibSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Powershell Module for Managing SPO Lists/LibSettings.png -------------------------------------------------------------------------------- /Lists and Libraries Management/Powershell Module for Managing SPO Lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Powershell Module for Managing SPO Lists/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Powershell Module for Managing SPO Lists/SetListFunctions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Powershell Module for Managing SPO Lists/SetListFunctions.psm1 -------------------------------------------------------------------------------- /Lists and Libraries Management/Powershell Module for Managing SPO Lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Powershell Module for Managing SPO Lists/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Powershell Module for Managing SPO Lists/lif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Powershell Module for Managing SPO Lists/lif.png -------------------------------------------------------------------------------- /Lists and Libraries Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Set the direction of the reading order/For All Lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Set the direction of the reading order/For All Lists/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Versioning/Enable versioning for one list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Versioning/Enable versioning for one list/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Versioning/Get versioning settings for all lists/Capture431.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Versioning/Get versioning settings for all lists/Capture431.PNG -------------------------------------------------------------------------------- /Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Versioning/Get versioning settings for all lists/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Versioning/Get versioning settings for all lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Versioning/Get versioning settings for all lists/description.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Views/Get all list view properties using view GUID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Views/Get all list view properties using view GUID/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Views/README.md -------------------------------------------------------------------------------- /Lists and Libraries Management/Views/Remove view from SharePoint Online list/Readme.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Lists and Libraries Management/Views/Remove view from SharePoint Online list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Lists and Libraries Management/Views/Remove view from SharePoint Online list/description.md -------------------------------------------------------------------------------- /Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Managed Metadata/Create a new SharePoint Online taxonomy term/NewTermSingle.ps1 -------------------------------------------------------------------------------- /Managed Metadata/Create a new SharePoint Online taxonomy term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Managed Metadata/Create a new SharePoint Online taxonomy term/README.md -------------------------------------------------------------------------------- /Managed Metadata/Create a new SharePoint Online taxonomy term/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Managed Metadata/Create a new SharePoint Online taxonomy term/description.md -------------------------------------------------------------------------------- /Managed Metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Managed Metadata/README.md -------------------------------------------------------------------------------- /OTHER/BigData.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/BigData.rar -------------------------------------------------------------------------------- /OTHER/C# Create a contact list with internal user data/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/C# Create a contact list with internal user data/description.md -------------------------------------------------------------------------------- /OTHER/C# Create a contact list with internal user data/intern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/C# Create a contact list with internal user data/intern.png -------------------------------------------------------------------------------- /OTHER/C# Create a contact list with internal user data/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/C# Create a contact list with internal user data/sample.cs -------------------------------------------------------------------------------- /OTHER/Change the default language for all the SharePoint Online users/1.0.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Change the default language for all the SharePoint Online users/1.0.rar -------------------------------------------------------------------------------- /OTHER/Change the default language for all the SharePoint Online users/changedeflg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Change the default language for all the SharePoint Online users/changedeflg.PNG -------------------------------------------------------------------------------- /OTHER/Change the default language for all the SharePoint Online users/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Change the default language for all the SharePoint Online users/description.md -------------------------------------------------------------------------------- /OTHER/CreativeDestruction/CreativeDestruction.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/CreativeDestruction/CreativeDestruction.rar -------------------------------------------------------------------------------- /OTHER/CreativeDestruction/Description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/CreativeDestruction/Description.md -------------------------------------------------------------------------------- /OTHER/CreativeDestruction/excerpt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/CreativeDestruction/excerpt.cs -------------------------------------------------------------------------------- /OTHER/Get all event receivers on your lists in a site/GetSPOEventReceivers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Get all event receivers on your lists in a site/GetSPOEventReceivers.PNG -------------------------------------------------------------------------------- /OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Get all event receivers on your lists in a site/GetSPOListEventReceivers.ps1 -------------------------------------------------------------------------------- /OTHER/Get all event receivers on your lists in a site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Get all event receivers on your lists in a site/README.md -------------------------------------------------------------------------------- /OTHER/Get all event receivers on your lists in a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Get all event receivers on your lists in a site/description.md -------------------------------------------------------------------------------- /OTHER/README.md: -------------------------------------------------------------------------------- 1 | Scripts that I couldn't really fit in anywhere else 2 | -------------------------------------------------------------------------------- /OTHER/Remove a single event receiver/DeleteSingleReceiver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Remove a single event receiver/DeleteSingleReceiver.ps1 -------------------------------------------------------------------------------- /OTHER/Remove a single event receiver/deletesinglereceiver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Remove a single event receiver/deletesinglereceiver.PNG -------------------------------------------------------------------------------- /OTHER/Remove a single event receiver/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Remove a single event receiver/description.md -------------------------------------------------------------------------------- /OTHER/Unified Groups Storage Report/UnifiedGroupStorageWithCSOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Unified Groups Storage Report/UnifiedGroupStorageWithCSOM.ps1 -------------------------------------------------------------------------------- /OTHER/Unified Groups Storage Report/UnifiedGroups.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Unified Groups Storage Report/UnifiedGroups.PNG -------------------------------------------------------------------------------- /OTHER/Unified Groups Storage Report/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Unified Groups Storage Report/description.md -------------------------------------------------------------------------------- /OTHER/Uninstall unwanted app from your site using Powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Uninstall unwanted app from your site using Powershell/README.md -------------------------------------------------------------------------------- /OTHER/Uninstall unwanted app from your site using Powershell/RemoveSPOApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Uninstall unwanted app from your site using Powershell/RemoveSPOApp.PNG -------------------------------------------------------------------------------- /OTHER/Uninstall unwanted app from your site using Powershell/RemoveSPOApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Uninstall unwanted app from your site using Powershell/RemoveSPOApp.ps1 -------------------------------------------------------------------------------- /OTHER/Uninstall unwanted app from your site using Powershell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OTHER/Uninstall unwanted app from your site using Powershell/description.md -------------------------------------------------------------------------------- /OneDrive for Business/Add BCC to all sharing invitations in OneDrive for Business/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Add BCC to all sharing invitations in OneDrive for Business/README.md -------------------------------------------------------------------------------- /OneDrive for Business/Create OneDrive for Business usage report for all users/ODB Report.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Create OneDrive for Business usage report for all users/ODB Report.rar -------------------------------------------------------------------------------- /OneDrive for Business/Create OneDrive for Business usage report for all users/WithCSOM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Create OneDrive for Business usage report for all users/WithCSOM.PNG -------------------------------------------------------------------------------- /OneDrive for Business/Create OneDrive for Business usage report for all users/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Create OneDrive for Business usage report for all users/description.md -------------------------------------------------------------------------------- /OneDrive for Business/Enable versioning for all lists in OneDrive sites/Capture204.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Enable versioning for all lists in OneDrive sites/Capture204.PNG -------------------------------------------------------------------------------- /OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Enable versioning for all lists in OneDrive sites/README.md -------------------------------------------------------------------------------- /OneDrive for Business/Enable versioning for all lists in OneDrive sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Enable versioning for all lists in OneDrive sites/description.md -------------------------------------------------------------------------------- /OneDrive for Business/Enable versioning for all lists in selected OneDrive sites/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Enable versioning for all lists in selected OneDrive sites/Capture.PNG -------------------------------------------------------------------------------- /OneDrive for Business/Enable versioning for all lists in selected OneDrive sites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Enable versioning for all lists in selected OneDrive sites/README.md -------------------------------------------------------------------------------- /OneDrive for Business/Hide OneDrive for Business Sync button using PS and CSOM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Hide OneDrive for Business Sync button using PS and CSOM/description.md -------------------------------------------------------------------------------- /OneDrive for Business/Hide OneDrive for Business Sync button using PS and CSOM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Hide OneDrive for Business Sync button using PS and CSOM/readme.md -------------------------------------------------------------------------------- /OneDrive for Business/Update locale id for all personal sites/LocaleID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Update locale id for all personal sites/LocaleID.ps1 -------------------------------------------------------------------------------- /OneDrive for Business/Update locale id for all personal sites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Update locale id for all personal sites/README.md -------------------------------------------------------------------------------- /OneDrive for Business/Update locale id for all personal sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/OneDrive for Business/Update locale id for all personal sites/description.md -------------------------------------------------------------------------------- /OneDrive for Business/readme.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete all web parts from a single page/DeleteAllWebParts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete all web parts from a single page/DeleteAllWebParts.ps1 -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete all web parts from a single page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete all web parts from a single page/README.md -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete all web parts from a single page/RemoveAllWebpartsResult.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete all web parts from a single page/RemoveAllWebpartsResult.PNG -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete all web parts from a single page/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete all web parts from a single page/description.md -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete single web part/DeleteSingleWebPart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete single web part/DeleteSingleWebPart.ps1 -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Delete single web part/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Delete single web part/description.md -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Get all web parts and their details from a single page/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Get all web parts and their details from a single page/description.md -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAll.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAll.PNG -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAll2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAll2.PNG -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAllPages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Report on all web parts in all site pages/ReportAllPages.ps1 -------------------------------------------------------------------------------- /Pages/ClassicWebparts/Report on all web parts in all site pages/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/ClassicWebparts/Report on all web parts in all site pages/description.md -------------------------------------------------------------------------------- /Pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/README.md -------------------------------------------------------------------------------- /Pages/Remove comments on modern pages in entire SharePoint site/Przechwytywanie151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/Remove comments on modern pages in entire SharePoint site/Przechwytywanie151.png -------------------------------------------------------------------------------- /Pages/Remove comments on modern pages in entire SharePoint site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/Remove comments on modern pages in entire SharePoint site/README.md -------------------------------------------------------------------------------- /Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/Remove comments on modern pages in entire SharePoint site/RemoveComments.ps1 -------------------------------------------------------------------------------- /Pages/Remove comments on modern pages in entire SharePoint site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Pages/Remove comments on modern pages in entire SharePoint site/description.md -------------------------------------------------------------------------------- /Permissions/C#/Break Inheritance for all items in site/BreakInheritance.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Break Inheritance for all items in site/BreakInheritance.rar -------------------------------------------------------------------------------- /Permissions/C#/Break Inheritance for all items in site/breakinheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Break Inheritance for all items in site/breakinheritance.png -------------------------------------------------------------------------------- /Permissions/C#/Break Inheritance for all items in site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Break Inheritance for all items in site/description.md -------------------------------------------------------------------------------- /Permissions/C#/Break Inheritance for all items in site/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Break Inheritance for all items in site/description.txt -------------------------------------------------------------------------------- /Permissions/C#/Break Inheritance for all items in site/fullMainFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Break Inheritance for all items in site/fullMainFunction.cs -------------------------------------------------------------------------------- /Permissions/C#/Delete all unique permissions in site/DeleteUniki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Delete all unique permissions in site/DeleteUniki.png -------------------------------------------------------------------------------- /Permissions/C#/Delete all unique permissions in site/ResetRoleInheritance.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Delete all unique permissions in site/ResetRoleInheritance.rar -------------------------------------------------------------------------------- /Permissions/C#/Delete all unique permissions in site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Delete all unique permissions in site/description.md -------------------------------------------------------------------------------- /Permissions/C#/Delete all unique permissions in site/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Delete all unique permissions in site/description.txt -------------------------------------------------------------------------------- /Permissions/C#/Delete all unique permissions in site/fullMainFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Delete all unique permissions in site/fullMainFunction.cs -------------------------------------------------------------------------------- /Permissions/C#/Get Items with Unique Permissions in site collection/DetailedUnique.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Items with Unique Permissions in site collection/DetailedUnique.rar -------------------------------------------------------------------------------- /Permissions/C#/Get Items with Unique Permissions in site collection/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Items with Unique Permissions in site collection/description.md -------------------------------------------------------------------------------- /Permissions/C#/Get Items with Unique Permissions in site collection/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Items with Unique Permissions in site collection/description.txt -------------------------------------------------------------------------------- /Permissions/C#/Get Items with Unique Permissions in site collection/fullMainFunction.cs1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Items with Unique Permissions in site collection/fullMainFunction.cs1 -------------------------------------------------------------------------------- /Permissions/C#/Get Lists with Unique Permissions/UniqueListsPermissions.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Lists with Unique Permissions/UniqueListsPermissions.rar -------------------------------------------------------------------------------- /Permissions/C#/Get Lists with Unique Permissions/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Lists with Unique Permissions/description.md -------------------------------------------------------------------------------- /Permissions/C#/Get Lists with Unique Permissions/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Lists with Unique Permissions/sample.cs -------------------------------------------------------------------------------- /Permissions/C#/Get Lists with Unique Permissions/uniquelists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/C#/Get Lists with Unique Permissions/uniquelists.png -------------------------------------------------------------------------------- /Permissions/Powershell/Break role inheritance for a single list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Break role inheritance for a single list/README.md -------------------------------------------------------------------------------- /Permissions/Powershell/Break role inheritance for a single list/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Break role inheritance for a single list/description.md -------------------------------------------------------------------------------- /Permissions/Powershell/Get items with unique permissions SharePoint Server/Capture211.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Get items with unique permissions SharePoint Server/Capture211.PNG -------------------------------------------------------------------------------- /Permissions/Powershell/Get items with unique permissions SharePoint Server/OnlyUnique.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Get items with unique permissions SharePoint Server/OnlyUnique.ps1 -------------------------------------------------------------------------------- /Permissions/Powershell/Get items with unique permissions SharePoint Server/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Get items with unique permissions SharePoint Server/description.md -------------------------------------------------------------------------------- /Permissions/Powershell/Get items with unique permissions SharePoint Server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Get items with unique permissions SharePoint Server/readme.md -------------------------------------------------------------------------------- /Permissions/Powershell/Get items, folders, lists with unique permissions (SharePoint Server 2013-2016)/README.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Permissions/Powershell/Remove permission groups from personal files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Remove permission groups from personal files/README.md -------------------------------------------------------------------------------- /Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Remove permission groups from personal files/RemovePermissionGroups.ps1 -------------------------------------------------------------------------------- /Permissions/Powershell/Remove permission groups from personal files/SolutionForPropic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Remove permission groups from personal files/SolutionForPropic.PNG -------------------------------------------------------------------------------- /Permissions/Powershell/Remove permission groups from personal files/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Remove permission groups from personal files/description.md -------------------------------------------------------------------------------- /Permissions/Powershell/Report on what permission group the user belongs to/PermissionGroup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Report on what permission group the user belongs to/PermissionGroup.PNG -------------------------------------------------------------------------------- /Permissions/Powershell/Report on what permission group the user belongs to/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/Powershell/Report on what permission group the user belongs to/description.md -------------------------------------------------------------------------------- /Permissions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Permissions/readme.md -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/NoFlows.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/NoFlows.PNG -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/NoFlows3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/NoFlows3.PNG -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/README.md -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/disableFlows_UsingPnP.ps1: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Flows in all lists on SharePoint site/disableFlows_UsingSPOManagementShell.ps1: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Single Flow/DisableFlowUsingPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Enable or Disable/Disable Single Flow/DisableFlowUsingPnP.ps1 -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Disable Single Flow/readme.md: -------------------------------------------------------------------------------- 1 | Disables single flow. 2 | -------------------------------------------------------------------------------- /Power Automate/Enable or Disable/Enable Microsoft Flow in all lists on SharePoint modern site/enableFlows_usingSPOManagementShell.ps1: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/GetFlowsPolicy_usingPnP.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/README.md -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/description.md -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/flowsWithRest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/flowsWithRest.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows.PNG -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows3.PNG -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/Get FlowsPolicy using REST API/images/NoFlows4.PNG -------------------------------------------------------------------------------- /Power Automate/Get/Get FlowsPolicy using REST API/images/txt.txt: -------------------------------------------------------------------------------- 1 | gd 2 | -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/GetFlowsCreatedBy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/GetFlows/GetFlowsCreatedBy.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/GetFlowsOlderOrNewerThan.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/GetFlowsOlderOrNewerThan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/GetFlows/GetFlowsOlderOrNewerThan.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/GetMostProlificFlowCreators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/GetFlows/GetMostProlificFlowCreators.md -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/GetMostProlificFlowCreators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/GetFlows/GetMostProlificFlowCreators.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/Images/flow21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/GetFlows/Images/flow21.PNG -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/Images/ini.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Power Automate/Get/GetFlows/readme.md: -------------------------------------------------------------------------------- 1 | Scripts helping you to list and search your flows. 2 | -------------------------------------------------------------------------------- /Power Automate/Get/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/ListAllFlowsUsingPnP/ListAllFlowsUsingPnP.ps1 -------------------------------------------------------------------------------- /Power Automate/Get/ListAllFlowsUsingPnP/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/Get/ListAllFlowsUsingPnP/readme.md -------------------------------------------------------------------------------- /Power Automate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Power Automate/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/README.md -------------------------------------------------------------------------------- /Site Management/Access Requests/Get SharePoint Online Access Requests with REST API/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Access Requests/Get SharePoint Online Access Requests with REST API/readme.md -------------------------------------------------------------------------------- /Site Management/Access Requests/SitesWithOutstandingAccessRequests/FindSitesWithOutstandingAccessRequests.md: -------------------------------------------------------------------------------- 1 | start 2 | -------------------------------------------------------------------------------- /Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Access Requests/SitesWithOutstandingAccessRequests/readme.md -------------------------------------------------------------------------------- /Site Management/Access Requests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Access Requests/readme.md -------------------------------------------------------------------------------- /Site Management/Add Supported Language for multiple site collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add Supported Language for multiple site collections/README.md -------------------------------------------------------------------------------- /Site Management/Add Supported Language for multiple site collections/SetLGforAllSites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add Supported Language for multiple site collections/SetLGforAllSites.ps1 -------------------------------------------------------------------------------- /Site Management/Add Supported Language for multiple site collections/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add Supported Language for multiple site collections/description.md -------------------------------------------------------------------------------- /Site Management/Add-SPOWeb & Remove-SPOWeb/AddandRemoveSPOWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add-SPOWeb & Remove-SPOWeb/AddandRemoveSPOWeb.png -------------------------------------------------------------------------------- /Site Management/Add-SPOWeb & Remove-SPOWeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add-SPOWeb & Remove-SPOWeb/README.md -------------------------------------------------------------------------------- /Site Management/Add-SPOWeb & Remove-SPOWeb/RemoveANDAddSPOWeb1.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add-SPOWeb & Remove-SPOWeb/RemoveANDAddSPOWeb1.psm1 -------------------------------------------------------------------------------- /Site Management/Add-SPOWeb & Remove-SPOWeb/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Add-SPOWeb & Remove-SPOWeb/description.md -------------------------------------------------------------------------------- /Site Management/ChangeLog/Create a report on all changes for one site collection/error.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/ChangeLog/Create a report on all changes for one site collection/error.PNG -------------------------------------------------------------------------------- /Site Management/ChangeLog/Create a report on all changes for one site collection/results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/ChangeLog/Create a report on all changes for one site collection/results.PNG -------------------------------------------------------------------------------- /Site Management/Export site collection properties using Powershell and CSOM/Capture405.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Export site collection properties using Powershell and CSOM/Capture405.PNG -------------------------------------------------------------------------------- /Site Management/Export site collection properties using Powershell and CSOM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Export site collection properties using Powershell and CSOM/description.md -------------------------------------------------------------------------------- /Site Management/Features/Activate or deactivate a SPO feature for a single site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Activate or deactivate a SPO feature for a single site/description.md -------------------------------------------------------------------------------- /Site Management/Features/Activate or deactivate a site collection feature/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Activate or deactivate a site collection feature/description.md -------------------------------------------------------------------------------- /Site Management/Features/Add or Remove Site Features from all Personal Sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Add or Remove Site Features from all Personal Sites/description.md -------------------------------------------------------------------------------- /Site Management/Features/Get all features from a site collection/GetSPOSIteFeatures.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Get all features from a site collection/GetSPOSIteFeatures.PNG -------------------------------------------------------------------------------- /Site Management/Features/Get all features from a site collection/GetSPOSiteFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Get all features from a site collection/GetSPOSiteFeatures.ps1 -------------------------------------------------------------------------------- /Site Management/Features/Get all features from a site collection/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Get all features from a site collection/description.md -------------------------------------------------------------------------------- /Site Management/Features/Get all features from a site/GetSPOWebFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Get all features from a site/GetSPOWebFeatures.ps1 -------------------------------------------------------------------------------- /Site Management/Features/Get all features from a site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Features/Get all features from a site/description.md -------------------------------------------------------------------------------- /Site Management/Get SharePoint Online Site Properties/GetSiteProperties.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get SharePoint Online Site Properties/GetSiteProperties.PNG -------------------------------------------------------------------------------- /Site Management/Get SharePoint Online Site Properties/GetSiteProperties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get SharePoint Online Site Properties/GetSiteProperties.ps1 -------------------------------------------------------------------------------- /Site Management/Get SharePoint Online Site Properties/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get SharePoint Online Site Properties/description.md -------------------------------------------------------------------------------- /Site Management/Get all site collections and their subsites/GetAllSiteandSubsitesRecursive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get all site collections and their subsites/GetAllSiteandSubsitesRecursive.ps1 -------------------------------------------------------------------------------- /Site Management/Get all site collections and their subsites/GetAllSitesandSubsites.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get all site collections and their subsites/GetAllSitesandSubsites.PNG -------------------------------------------------------------------------------- /Site Management/Get all site collections and their subsites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get all site collections and their subsites/description.md -------------------------------------------------------------------------------- /Site Management/Get site groups from root and subsites/Capture432.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get site groups from root and subsites/Capture432.PNG -------------------------------------------------------------------------------- /Site Management/Get site groups from root and subsites/Get-SPOAllSiteGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get site groups from root and subsites/Get-SPOAllSiteGroups.ps1 -------------------------------------------------------------------------------- /Site Management/Get site groups from root and subsites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get site groups from root and subsites/description.md -------------------------------------------------------------------------------- /Site Management/Get unused SharePoint Online webs/GetUnusedWebs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get unused SharePoint Online webs/GetUnusedWebs.ps1 -------------------------------------------------------------------------------- /Site Management/Get unused SharePoint Online webs/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get unused SharePoint Online webs/description.md -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/GetSPOWebModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/GetSPOWebModule.psm1 -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/description.md -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb.png -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb2.png -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb3.png -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/images/GetSpoWEb4.png -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Site Management/Get-SPOWeb to retrieve subsites and their properties/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Get-SPOWeb to retrieve subsites and their properties/readme.md -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/SPOWebInheritance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Modify Web Inherited Permissions/SPOWebInheritance.psm1 -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Modify Web Inherited Permissions/description.md -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/images/WEbInheritance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Modify Web Inherited Permissions/images/WEbInheritance.PNG -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/images/WEbInheritance2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Modify Web Inherited Permissions/images/WEbInheritance2.PNG -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/images/WEbInheritance3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Modify Web Inherited Permissions/images/WEbInheritance3.PNG -------------------------------------------------------------------------------- /Site Management/Modify Web Inherited Permissions/images/img.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Create empty node (label)/Create empty node with CSOM.ps1 -------------------------------------------------------------------------------- /Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Create empty node (label)/Create empty node with PnP.ps1 -------------------------------------------------------------------------------- /Site Management/Navigation/Get all quick launch nodes/GetAllQuickLaunchNodesWithChildren.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Get all quick launch nodes/GetAllQuickLaunchNodesWithChildren.ps1 -------------------------------------------------------------------------------- /Site Management/Navigation/Get all quick launch nodes/Przechwytywanie52.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Get all quick launch nodes/Przechwytywanie52.PNG -------------------------------------------------------------------------------- /Site Management/Navigation/Get all quick launch nodes/Przechwytywanie53.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Get all quick launch nodes/Przechwytywanie53.PNG -------------------------------------------------------------------------------- /Site Management/Navigation/Get all quick launch nodes/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Navigation/Get all quick launch nodes/description.md -------------------------------------------------------------------------------- /Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/Set-SPOWeb.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/Set-SPOWeb.psm1 -------------------------------------------------------------------------------- /Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/description.md -------------------------------------------------------------------------------- /Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/setspoweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Powershell cmdlet Set-SpoWeb to manage site properties/setspoweb.png -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Move items from first to second stage recycle bin/Capture49.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Move items from first to second stage recycle bin/Capture49.PNG -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Move items from first to second stage recycle bin/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Move items from first to second stage recycle bin/description.md -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Report on deleted files within one site/ReportOnDeleted.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Report on deleted files within one site/ReportOnDeleted.ps1 -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Report on deleted files within one site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Report on deleted files within one site/description.md -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore All Files from a Given Site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore All Files from a Given Site/description.md -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore deleted items from a single subsite/Capture8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore deleted items from a single subsite/Capture8.PNG -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore deleted items from a single subsite/Capture9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore deleted items from a single subsite/Capture9.PNG -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore deleted items from a single subsite/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore deleted items from a single subsite/description.md -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore one file from a Given Site/RestoreDeletedItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore one file from a Given Site/RestoreDeletedItem.ps1 -------------------------------------------------------------------------------- /Site Management/Recycle Bin/Restore one file from a Given Site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Recycle Bin/Restore one file from a Given Site/description.md -------------------------------------------------------------------------------- /Site Management/Recycle Bin/SPServer/Restore all files items lists deleted by a single employee/images/tobedeleted.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Site Management/Remove SPO subsite/Remove SPO subsite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Remove SPO subsite/Remove SPO subsite.ps1 -------------------------------------------------------------------------------- /Site Management/Remove SPO subsite/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Remove SPO subsite/description.md -------------------------------------------------------------------------------- /Site Management/Set theme of your SharePoint Online site/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Set theme of your SharePoint Online site/Capture.PNG -------------------------------------------------------------------------------- /Site Management/Set theme of your SharePoint Online site/Capture2-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Set theme of your SharePoint Online site/Capture2-1.PNG -------------------------------------------------------------------------------- /Site Management/Set theme of your SharePoint Online site/Theme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Set theme of your SharePoint Online site/Theme.ps1 -------------------------------------------------------------------------------- /Site Management/Set theme of your SharePoint Online site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Set theme of your SharePoint Online site/description.md -------------------------------------------------------------------------------- /Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site Policy/GetPoliciesAppliedToYourSitesUsingPnP.ps1 -------------------------------------------------------------------------------- /Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site Policy/RemovePolicy/RemovePolicyFromSingleSiteUsingPnP.ps1 -------------------------------------------------------------------------------- /Site Management/Site Policy/RemovePolicy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site Policy/RemovePolicy/readme.md -------------------------------------------------------------------------------- /Site Management/Site Policy/RemovePolicy/sitepolicies2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site Policy/RemovePolicy/sitepolicies2-1.png -------------------------------------------------------------------------------- /Site Management/Site Policy/RemovePolicy/sitepolicies2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site Policy/RemovePolicy/sitepolicies2.PNG -------------------------------------------------------------------------------- /Site Management/Site designs/Verify where a site design is applied/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Site designs/Verify where a site design is applied/description.md -------------------------------------------------------------------------------- /Site Management/TimeZone/Update the time zones in all personal sites/PersonalRegSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/TimeZone/Update the time zones in all personal sites/PersonalRegSettings.ps1 -------------------------------------------------------------------------------- /Site Management/TimeZone/Update the time zones in all personal sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/TimeZone/Update the time zones in all personal sites/description.md -------------------------------------------------------------------------------- /Site Management/Update locale id for all personal sites/LocaleID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Update locale id for all personal sites/LocaleID.ps1 -------------------------------------------------------------------------------- /Site Management/Update locale id for all personal sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/Update locale id for all personal sites/description.md -------------------------------------------------------------------------------- /Site Management/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Site Management/readme.md -------------------------------------------------------------------------------- /SiteMailboxes/AddMailboxtoSingleSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/SiteMailboxes/AddMailboxtoSingleSite.ps1 -------------------------------------------------------------------------------- /SiteMailboxes/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/SiteMailboxes/Readme.txt -------------------------------------------------------------------------------- /SiteMailboxes/mailb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/SiteMailboxes/mailb.ps1 -------------------------------------------------------------------------------- /SiteMailboxes/mailbox1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/SiteMailboxes/mailbox1.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/README.md -------------------------------------------------------------------------------- /Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/Untitled099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/Untitled099.png -------------------------------------------------------------------------------- /Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Add BCC to all sharing invitations in OneDrive for Business/description.md -------------------------------------------------------------------------------- /Tenant Settings/Allow external sharing only with specific domains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Allow external sharing only with specific domains/README.md -------------------------------------------------------------------------------- /Tenant Settings/Allow external sharing only with specific domains/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Allow external sharing only with specific domains/description.md -------------------------------------------------------------------------------- /Tenant Settings/Compare2tenants/compare2tenantsCSOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Compare2tenants/compare2tenantsCSOM.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Compare2tenants/compare2tenantsPNPPowershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Compare2tenants/compare2tenantsPNPPowershell.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Compare2tenants/compare2tenantsSPOManagementShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Compare2tenants/compare2tenantsSPOManagementShell.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Get SharePoint Online tenant properties using Powershell and CSOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Get SharePoint Online tenant properties using Powershell and CSOM/README.md -------------------------------------------------------------------------------- /Tenant Settings/Hide OneDrive for Business Sync button using PS and CSOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Hide OneDrive for Business Sync button using PS and CSOM/README.md -------------------------------------------------------------------------------- /Tenant Settings/Hide OneDrive for Business Sync button using PS and CSOM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Hide OneDrive for Business Sync button using PS and CSOM/description.md -------------------------------------------------------------------------------- /Tenant Settings/Modify external sharing setting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Modify external sharing setting/README.md -------------------------------------------------------------------------------- /Tenant Settings/Modify external sharing setting/SharingCapability.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Modify external sharing setting/SharingCapability.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Modify external sharing setting/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Modify external sharing setting/description.md -------------------------------------------------------------------------------- /Tenant Settings/Notify OneDrive for Business owner if their content is reshared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Notify OneDrive for Business owner if their content is reshared/README.md -------------------------------------------------------------------------------- /Tenant Settings/Prevent external users from resharing/PreventExternalUsersFromResharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Prevent external users from resharing/PreventExternalUsersFromResharing.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Prevent external users from resharing/additionalSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Prevent external users from resharing/additionalSettings.png -------------------------------------------------------------------------------- /Tenant Settings/Prevent external users from resharing/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Prevent external users from resharing/description.md -------------------------------------------------------------------------------- /Tenant Settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/README.md -------------------------------------------------------------------------------- /Tenant Settings/Report on SharePoint Online tenant properties/Untitled103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Report on SharePoint Online tenant properties/Untitled103.png -------------------------------------------------------------------------------- /Tenant Settings/Report on SharePoint Online tenant properties/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Report on SharePoint Online tenant properties/description.md -------------------------------------------------------------------------------- /Tenant Settings/Report on SharePoint Online tenant properties/tenantProps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Report on SharePoint Online tenant properties/tenantProps.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Set Anonymous access for SPO tenant using PS and CSOM/SetAnonymousAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set Anonymous access for SPO tenant using PS and CSOM/SetAnonymousAccess.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Set Anonymous access for SPO tenant using PS and CSOM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set Anonymous access for SPO tenant using PS and CSOM/description.md -------------------------------------------------------------------------------- /Tenant Settings/Set anonymous link access level for SPO tenant/AnonymousLinkType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set anonymous link access level for SPO tenant/AnonymousLinkType.ps1 -------------------------------------------------------------------------------- /Tenant Settings/Set anonymous link access level for SPO tenant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set anonymous link access level for SPO tenant/README.md -------------------------------------------------------------------------------- /Tenant Settings/Set anonymous link access level for SPO tenant/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set anonymous link access level for SPO tenant/description.md -------------------------------------------------------------------------------- /Tenant Settings/Set expiration for anonymous links in SPO/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set expiration for anonymous links in SPO/description.md -------------------------------------------------------------------------------- /Tenant Settings/Set expiration for anonymous links in SPO/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Tenant Settings/Set expiration for anonymous links in SPO/readme.md -------------------------------------------------------------------------------- /User Profiles/Export all user profiles using Powershell/Capture401.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Export all user profiles using Powershell/Capture401.PNG -------------------------------------------------------------------------------- /User Profiles/Export all user profiles using Powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Export all user profiles using Powershell/README.md -------------------------------------------------------------------------------- /User Profiles/Export all user profiles using Powershell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Export all user profiles using Powershell/description.md -------------------------------------------------------------------------------- /User Profiles/Get MUI Languages for multiple users using REST/Capture68.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get MUI Languages for multiple users using REST/Capture68.PNG -------------------------------------------------------------------------------- /User Profiles/Get MUI Languages for multiple users using REST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get MUI Languages for multiple users using REST/README.md -------------------------------------------------------------------------------- /User Profiles/Get MUI Languages for multiple users using REST/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get MUI Languages for multiple users using REST/description.md -------------------------------------------------------------------------------- /User Profiles/Get all user profile properties using Powershell and REST/Capture69.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get all user profile properties using Powershell and REST/Capture69.PNG -------------------------------------------------------------------------------- /User Profiles/Get all user profile properties using Powershell and REST/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get all user profile properties using Powershell and REST/description.md -------------------------------------------------------------------------------- /User Profiles/Get user work email using Powershell and REST/Capture67.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get user work email using Powershell and REST/Capture67.PNG -------------------------------------------------------------------------------- /User Profiles/Get user work email using Powershell and REST/GetSPOUserEmailWithREST.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get user work email using Powershell and REST/GetSPOUserEmailWithREST.ps1 -------------------------------------------------------------------------------- /User Profiles/Get user work email using Powershell and REST/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Get user work email using Powershell and REST/description.md -------------------------------------------------------------------------------- /User Profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/README.md -------------------------------------------------------------------------------- /User Profiles/Retrieve all user profiles and their properties using C# and CSOM/2.0.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/User Profiles/Retrieve all user profiles and their properties using C# and CSOM/2.0.rar -------------------------------------------------------------------------------- /Versioning/Create a report on all file versions in OneDrive for Business/Capture1511.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Create a report on all file versions in OneDrive for Business/Capture1511.PNG -------------------------------------------------------------------------------- /Versioning/Create a report on all file versions in OneDrive for Business/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Create a report on all file versions in OneDrive for Business/README.md -------------------------------------------------------------------------------- /Versioning/Create a report on all file versions in OneDrive for Business/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Create a report on all file versions in OneDrive for Business/description.md -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/MinorVersioningCSOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/MinorVersioningCSOM.ps1 -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/MinorVersioningPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/MinorVersioningPnP.ps1 -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/description.md -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/minorversioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/minorversioning.png -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/minorversioning2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/minorversioning2.png -------------------------------------------------------------------------------- /Versioning/Enable minor versions for all lists/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable minor versions for all lists/readme.md -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/VersioningCSOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/VersioningCSOM.ps1 -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/VersioningPnP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/VersioningPnP.ps1 -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/description.md -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/enableversioning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/enableversioning.ps1 -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/readme.md -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/versioningPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/versioningPS.png -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/versioningPS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/versioningPS2.png -------------------------------------------------------------------------------- /Versioning/Enable versioning for all SharePoint Online lists/versioningPS3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all SharePoint Online lists/versioningPS3.png -------------------------------------------------------------------------------- /Versioning/Enable versioning for all lists in OneDrive sites/Capture204.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all lists in OneDrive sites/Capture204.PNG -------------------------------------------------------------------------------- /Versioning/Enable versioning for all lists in OneDrive sites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all lists in OneDrive sites/description.md -------------------------------------------------------------------------------- /Versioning/Enable versioning for all lists in OneDrive sites/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versioning for all lists in OneDrive sites/readme.md -------------------------------------------------------------------------------- /Versioning/Enable versions for selected sites and their subsites/EnableVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versions for selected sites and their subsites/EnableVersions.ps1 -------------------------------------------------------------------------------- /Versioning/Enable versions for selected sites and their subsites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versions for selected sites and their subsites/README.md -------------------------------------------------------------------------------- /Versioning/Enable versions for selected sites and their subsites/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Enable versions for selected sites and their subsites/description.md -------------------------------------------------------------------------------- /Versioning/Get versioning settings for all lists/Capture431.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Get versioning settings for all lists/Capture431.PNG -------------------------------------------------------------------------------- /Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Get versioning settings for all lists/GetVersioningSettings.ps1 -------------------------------------------------------------------------------- /Versioning/Get versioning settings for all lists/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Get versioning settings for all lists/description.md -------------------------------------------------------------------------------- /Versioning/Get versioning settings for all lists/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Get versioning settings for all lists/readme.md -------------------------------------------------------------------------------- /Versioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/README.md -------------------------------------------------------------------------------- /Versioning/Restore previous versions in selected files the entire library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in selected files the entire library/description.md -------------------------------------------------------------------------------- /Versioning/Restore previous versions in selected files the entire library/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in selected files the entire library/readme.md -------------------------------------------------------------------------------- /Versioning/Restore previous versions in the entire library/Restore previous versions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in the entire library/Restore previous versions.ps1 -------------------------------------------------------------------------------- /Versioning/Restore previous versions in the entire library/Restorelast.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in the entire library/Restorelast.PNG -------------------------------------------------------------------------------- /Versioning/Restore previous versions in the entire library/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in the entire library/description.md -------------------------------------------------------------------------------- /Versioning/Restore previous versions in the entire library/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Versioning/Restore previous versions in the entire library/readme.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for a site collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for a site collection/README.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for a site collection/SampleResults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for a site collection/SampleResults.csv -------------------------------------------------------------------------------- /Workflows/Get workflow report for a site collection/wf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for a site collection/wf1.png -------------------------------------------------------------------------------- /Workflows/Get workflow report for all site collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for all site collections/README.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for all site collections/SampleResults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for all site collections/SampleResults.csv -------------------------------------------------------------------------------- /Workflows/Get workflow report for all site collections/Workflows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for all site collections/Workflows.ps1 -------------------------------------------------------------------------------- /Workflows/Get workflow report for all site collections/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for all site collections/description.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for all site collections/wf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for all site collections/wf1.png -------------------------------------------------------------------------------- /Workflows/Get workflow report for one site/SampleResults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for one site/SampleResults.csv -------------------------------------------------------------------------------- /Workflows/Get workflow report for one site/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for one site/description.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for one site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for one site/readme.md -------------------------------------------------------------------------------- /Workflows/Get workflow report for one site/wf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for one site/wf1.png -------------------------------------------------------------------------------- /Workflows/Get workflow report for one site/workflows in one site.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Get workflow report for one site/workflows in one site.ps1 -------------------------------------------------------------------------------- /Workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/README.md -------------------------------------------------------------------------------- /Workflows/Remove list workflow associations/RemoveListWFs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Remove list workflow associations/RemoveListWFs.ps1 -------------------------------------------------------------------------------- /Workflows/Remove list workflow associations/readme.md: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /Workflows/Remove workflow site associations/RemoveSiteWFs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellScripts/SharePointOnline-ScriptSamples/HEAD/Workflows/Remove workflow site associations/RemoveSiteWFs.ps1 -------------------------------------------------------------------------------- /Workflows/test.txt: -------------------------------------------------------------------------------- 1 | uiu4488 oo -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- 1 | workflow associations, missing code, readme 2 | --------------------------------------------------------------------------------