Forum Discussion
AngelaJ1s
Nov 24, 2021Copper Contributor
Disable SharePoint List Attachments - Form still showing 'Add attachments' field.
 Hi,     I have a modern SharePoint Online list in which I have disabled attachments using the List Settings > Advanced Settings > Attachments = Disabled.  When creating new list items, the form that ...
- Dec 16, 2021Thanks, I checked mine and once I unchecked the "Add attachments column to default view" in advanced settings, it removed it from my form!
 
marco_pgn
Dec 02, 2021Copper Contributor
I have the same problem on one tenant (another one works fine)...
for now I solved by hiding the attachments with powershell:
$list = Get-PnPList -Identity [listName]
$field = Get-PnPField -List $list -Identity "Attachments"
$field.Hidden = $true
$field.Update()
$field.Context.ExecuteQuery()
for now I solved by hiding the attachments with powershell:
$list = Get-PnPList -Identity [listName]
$field = Get-PnPField -List $list -Identity "Attachments"
$field.Hidden = $true
$field.Update()
$field.Context.ExecuteQuery()