SharePoint Online: Download a File from Library using PowerShell
Requirement: Download a File from SharePoint Online using PowerShell
How to Download a File from SharePoint Online Library?
Downloading files from SharePoint Online is pretty straightforward. If you need to download a file from SharePoint Online, just browse to the site that contains the document, right-click on the document and select ‘Download’ in the menu bar – it’s that simple. This can be useful if you need to access a document that’s been shared with you – without any connectivity from your local machine. Let’s see the step-by-step instructions on how to download a file.
To download a file from the library, follow these steps:
- Sign-in to SharePoint Online site >> Navigate to the library where your desired file is located
- Right-click on the file and select the “Download” option from the context menu.
- This gets you the “Save” prompt and the file gets saved in your client machine’s Downloads directory.
- In Modern Libraries, You can simply select the file(s) or folder and hit the “Download” button from the toolbar. You can also download multiple files at once.
SharePoint Online PowerShell to Download File from Library
Let’s download documents from the SharePoint Online document library using PowerShell. This CSOM PowerShell script downloads a file from the SharePoint Online document library (or any library!)
#Load SharePoint CSOM Assemblies
Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"
Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
Function Download-FileFromLibrary()
{
param
(
[Parameter(Mandatory=$true)] [string] $SiteURL,
[Parameter(Mandatory=$true)] [string] $SourceFile,
[Parameter(Mandatory=$true)] [string] $TargetFile
)
Try {
#Setup Credentials to connect
$Cred= Get-Credential
$Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Cred.Username, $Cred.Password)
#Setup the context
$Ctx = New-Object Microsoft.SharePoint.Client.ClientContext($SiteURL)
$Ctx.Credentials = $Credentials
#sharepoint online powershell download file from library
$FileInfo = [Microsoft.SharePoint.Client.File]::OpenBinaryDirect($Ctx,$SourceFile)
$WriteStream = [System.IO.File]::Open($TargetFile,[System.IO.FileMode]::Create)
$FileInfo.Stream.CopyTo($WriteStream)
$WriteStream.Close()
Write-host -f Green "File '$SourceFile' Downloaded to '$TargetFile' Successfully!" $_.Exception.Message
}
Catch {
write-host -f Red "Error Downloading File!" $_.Exception.Message
}
}
#Set parameter values
$SiteURL="https://crescent.sharepoint.com/sites/sales/"
$SourceFile="/sites/Sales/Shared Documents/Crescent Legal App Requirements.docx" #Server Relative URL
$TargetFile="C:\Temp\LegalDoc.docx"
#Call the function to download file
Download-FileFromLibrary -SiteURL $SiteURL -SourceFile $SourceFile -TargetFile $TargetFile
To download all files from a SharePoint Online document library, use this script: SharePoint Online download multiple files using PowerShell
Download a File from SharePoint Online using PnP PowerShell
We can copy files from SharePoint Online to a local disk with PowerShell. Here is the PnP PowerShell to download a file from SharePoint Online:
#Config Variables
$SiteURL = "https://Crescent.sharepoint.com/sites/marketing"
$FileRelativeURL = "/sites/Marketing/Shared Documents/Discloser Asia.docx"
$DownloadPath ="C:\Temp"
#Get Credentials to connect
$Cred = Get-Credential
Try {
#Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Credentials $Cred
#powershell download file from sharepoint online
Get-PnPFile -Url $FileRelativeURL -Path $DownloadPath -AsFile
}
catch {
write-host "Error: $($_.Exception.Message)" -foregroundcolor Red
}
This PowerShell copies file locally from SharePoint Online without prompt. To download a folder from SharePoint Online using PowerShell, use: PowerShell to Download a Folder from SharePoint Online
If you want to download all files from all libraries in a SharePoint site, use: How to Download All Files from a SharePoint Site?
Hi and thanks for all the info provided here!
I have one quick question for the situation when the file you want to download it is read-only. When I try to open it in powershell it automatically opens me the workbook and the pop-up where I should hit the Read-Only button.
After this, the script continue to run.
Do you have any solution of doing this manual step automatically in a script?
How to download all Folders & Files from Document library with version history using powershell
This should help you to start with: SharePoint Online: Download All Versions of a Document using PowerShell
Doesn’t work.
Get-PnPFile : Cannot convert ‘System.Object[]’ to the type ‘System.String’ required by parameter ‘Url’. Specified method is not supported.
At line:15 char:18
Get-PnPFile -Url $CSVData.FileRelativeURL -path $DownloadPath -AsFile
~~~~~~~~~~~~~~~~~~~~~~~~
CategoryInfo : InvalidArgument: (:) [Get-PnPFile], ParameterBindingException
FullyQualifiedErrorId : CannotConvertArgument,PnP.PowerShell.Commands.Files.GetFile
Hi,
is there a way to pass the credentials of the currently logged in user to the script?
E.g. every user who gets the script via intune (so even outside of the Domain-Network and out of reach for the gpo’s) automatically downloads a file from the SharePoint to a specific location on the device.
Many thanks in advance.
Hello,
I have a need to download a list of specific files from SharePoint Online that are from different libraries to a network location. Do you have anything that accomplishes that task. Currently i have the list of file paths in sharepoint in a .csv file. I would like to read in that .csv and download the files.
Say, you have a CSV file with “FileRelativeURL” column. Here is the PowerShell script you can utilize:
This comment has been removed by the author.
This is a great site for information. Thank you
Do you have also sharepoint online powershell scripts that searches inside documents (docx, xlsx, pdf) for keywords? I could not find any.
Sure! You can search using PowerShell as in: How to Search SharePoint Online using PnP PowerShell?
How to download a file from SharePoint on premise site based on current date? any help will be much appreciated
How to download multiple files from sharepoint online using powershell. Above one is to download single file.
Here you go: How to Download All Files from a SharePoint Online Document Library using PowerShell?