spo file version restore
Restores a specific version of a specified file
Usage
m365 spo file version restore [options]
Options
-u, --webUrl <webUrl>
The URL of the site where the file is located.
--label <label>
Label of version which will be restored.
--fileUrl [fileUrl]
The server- or site-relative decoded URL of the file whose version will be restored. Specify either
fileUrl
orfileId
but not both.-i, --fileId [fileId]
The UniqueId (GUID) of the file whose version will be restored. Specify either
fileUrl
orfileId
but not both.-f, --force
Don't prompt for confirmation.
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Restores a file version in a specific site based on fileId and prompts for confirmation.
m365 spo file version restore --webUrl https://contoso.sharepoint.com --label "1.0" --fileId 'b2307a39-e878-458b-bc90-03bc578531d6'
Restores a file version in a specific site based on fileUrl and prompts for confirmation.
m365 spo file version restore --webUrl https://contoso.sharepoint.com --label "1.0" --fileUrl '/Shared Documents/Document.docx'
Restores a file version in a specific site based on fileId without prompting for confirmation.
m365 spo file version restore --webUrl https://contoso.sharepoint.com --label "1.0" --fileId 'b2307a39-e878-458b-bc90-03bc578531d6' --force
Restores a file version in a specific site based on fileUrl without prompting for confirmation.
m365 spo file version restore --webUrl https://contoso.sharepoint.com --label "1.0" --fileUrl '/Shared Documents/Document.docx' --force
Response
The command won't return a response on success.