Skip to content

Instantly share code, notes, and snippets.

View AshFlaw's full-sized avatar

AshFlaw

  • The Full Circle
View GitHub Profile
@AshFlaw
AshFlaw / Get-CSOMDocumentLibraryInventory.ps1
Last active June 19, 2023 08:55
SharePoint Online: Get an inventory of files and folders from a document library
function Get-CSOMDocumentLibraryInventory {
param (
[Parameter(Mandatory=$True)]
[string]$SiteURL,
[Parameter(Mandatory=$True)]
[string]$LibraryName,
[int]$BatchSize,
[Parameter(Mandatory=$True)]
[System.Management.Automation.PSCredential]
$Credential
@AshFlaw
AshFlaw / Update-CSOMFileMetadata.ps1
Last active June 19, 2023 08:56
SharePoint Online: Update file metadata in document library
function Update-CSOMFileMetadata {
param (
[Parameter(Mandatory=$True)]
$SiteURL,
[Parameter(Mandatory=$True)]
$FileServerRelativeUrl,
$CreatedBy,
$ModifiedBy,
$CreatedOn,
$ModifiedOn,
@AshFlaw
AshFlaw / Update-CSOMFolderMetadata.ps1
Created June 19, 2023 08:58
SharePoint Online: Update folder metadata in document library
function Update-CSOMFolderMetadata {
param (
[Parameter(Mandatory=$True)]
$SiteURL,
[Parameter(Mandatory=$True)]
$FileServerRelativeUrl,
$CreatedBy,
$ModifiedBy,
$CreatedOn,
$ModifiedOn,