Skip to content

Add SharePoint File Requests standard #4484

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -3536,6 +3536,33 @@
"powershellEquivalent": "Update-MgBetaAdminSharePointSetting",
"recommendedBy": []
},
{
"name": "standards.SPFileRequests",
"cat": "SharePoint Standards",
"tag": [],
"helpText": "Enables or disables File Requests for SharePoint and OneDrive, allowing users to create secure upload-only links. Optionally sets the maximum number of days for the link to remain active before expiring.",
"docsDescription": "File Requests allow users to create secure upload-only share links where uploads are hidden from other people using the link. This creates a secure and private way for people to upload files to a folder. This feature is not enabled by default on new tenants and requires PowerShell configuration. This standard enables or disables this feature and optionally configures link expiration settings for both SharePoint and OneDrive.",
"executiveText": "Enables secure file upload functionality that allows external users to submit files directly to company folders without seeing other submissions or folder contents. This provides a professional and secure way to collect documents from clients, vendors, and partners while maintaining data privacy and security.",
"addedComponent": [
{
"type": "switch",
"name": "standards.SPFileRequests.state",
"label": "Enable File Requests"
},
{
"type": "number",
"name": "standards.SPFileRequests.expirationDays",
"label": "Link Expiration 1-730 Days (Optional)",
"required": false
}
],
"label": "Set SharePoint and OneDrive File Requests",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2025-07-30",
"powershellEquivalent": "Set-SPOTenant -CoreRequestFilesLinkEnabled $true -OneDriveRequestFilesLinkEnabled $true -CoreRequestFilesLinkExpirationInDays 30 -OneDriveRequestFilesLinkExpirationInDays 30",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.TenantDefaultTimezone",
"cat": "SharePoint Standards",
Expand Down
Loading