Replies: 2 comments 1 reply
-
The code is working fine, so it is not an issue with PnP PowerShell. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Did you ever find an answer to this one, I have the exact same question/issue. Assuming it just sorted itself out after a few days? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Notice
Many bugs reported are actually related to the PnP Framework which is used behind the scenes. Consider carefully where to report an issue:
Reporting an Issue or Missing Feature
Please confirm what it is that your reporting
I am trying to exempt a sharepoint library to allow downloads. In the SharePoint Admin Center, the unmanaged devices is set to "Allow Limited, Web-Only Access"
$list = Get-PnpList "Assets";
$list.SetExemptFromBlockDownloadOfNonViewableFiles($true)
$list.Update()
Invoke-PnPQuery
Expected behavior
Please describe what output you expect to see from the PnP PowerShell Cmdlets
The warning banner will be gone for that library and the download button will be enabled.
Actual behavior
Please describe what you see instead. Please provide samples of output or screenshots.
The banner still shows up on the excluded library and the download button is not enabled.
Steps to reproduce behavior
Please include complete script or code samples in-line or linked from gists
$list = Get-PnpList "Assets";
$list.SetExemptFromBlockDownloadOfNonViewableFiles($true)
$list.Update()
Invoke-PnPQuery
What is the version of the Cmdlet module you are running?
(you can retrieve this by executing
Get-Module -Name "PnP.PowerShell" -ListAvailable
)1.12.0
Which operating system/environment are you running PnP PowerShell on?
Beta Was this translation helpful? Give feedback.
All reactions