Upload Files to SharePoint Online

Special thanks to Shane Young https://www.youtube.com/channel/UC7_OGRP8BYvtGB8eZdPG6Ng

Powershell admin credentials

install-Module -Name SharePointPnPPowerShellOnline

Assign file to a variable:

$Variable = get-ChildItem location\file.ext

Add-PnpFile -Path $cow -Folder “Document Library Use Quotes” -Values @{Modified=VARIABLE.LastWriteTimeUtc;Created=VARIABLE.CreationTimeUtc}

Get-ChildItem ‘\server\share’
ForEach-Object {
Add-PnpFile -Path $_.FullName -Folder “Shared Documents” -Values @{Modified=$_.LastWriteTimeUtc;Created=$_.CreationTimeUtc}
}

No Comments Yet.

Leave a Comment