Thủ Thuật Hướng dẫn Microsoft Lists delete column Mới Nhất

Quý khách đang tìm kiếm từ khóa Microsoft Lists delete column được Update vào lúc : 2022-01-20 13:21:24 . Với phương châm chia sẻ Thủ Thuật về trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi Read tài liệu vẫn ko hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Admin lý giải và hướng dẫn lại nha.

How to Remove a Column from SharePoint List using PowerShell?

January 5, 2022 5 Comments delete a column from sharepoint list, delete column from sharepoint list powershell, how to remove column from sharepoint list, sharepoint list delete column

Problem: The user has created a calculated column with an error in its formula! That caused the list view web part to crash! Couldnt remove the column from the SharePoint list using web UI.

Nội dung chính

    How to Remove a Column from SharePoint List using PowerShell?How to delete a Column from SharePoint List?PowerShell script to delete the column from SharePoint listBulk remove columns from SharePoint list using PowerShell:Related PostsVideo liên quan

How to delete a Column from SharePoint List?

From SharePoint Web UI, to remove a field from a list or library, follow these steps:

    Browse to the List or Library in which you want to remove the column. Click on the List or Library tab.Click on List Settings / Library Settings from the Ribbon.From the List Settings page, Under the Columns section, click on the name of the column that you wish to delete.Scroll down to the bottom and then click on Delete button. Confirm the prompt.

PowerShell script to delete the column from SharePoint list

Here is the PowerShell to remove a column from the list:

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

#Variables
$SiteURL=”://intranet.crescent/”
$ListName=”Change Request”
$ColumnName=”Activity Status”

#Get Internal Name of the columns
$web = Get-SPWeb $SiteURL

#Get the list
$list = $web.Lists.TryGetList($ListName)

if($List -ne $null)

#Get the column
$column = $list.Fields[$ColumnName]

if($column -ne $null)

#Reset column properties to allow delete
$column.Hidden = $false
$column.ReadOnlyField = $false
$column.AllowDeletion = $true
$column.Update()

#delete column in sharepoint list
$list.Fields.Delete($column)
write-host “Column has been deleted!” -f Green

else

write-host “Specified column name not found!” -ForegroundColor Red

Bulk remove columns from SharePoint list using PowerShell:

To make it reusable, lets wrap the code inside a function and call, to bulk delete columns from the SharePoint list.

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

#Custom Function to delete a column with PowerShell
Function Remove-Column($WebURL, $ListName, $ColumnName)

#Get Internal Name of the columns
$web = Get-SPWeb $WebURL

#Get the list
$list = $web.Lists.TryGetList($ListName)

if($List -ne $null)

#Get the column
$column = $list.Fields[$ColumnName]

if($column -ne $null)

#Reset column properties to allow delete
$column.Hidden = $false
$column.ReadOnlyField = $false
$column.AllowDeletion = $true
$column.Update()

#Delete the column from list
$list.Fields.Delete($column)
write-host “Column ‘$ColumnName’ has been deleted!” -f Green

else

write-host “Specified column name not found!” -ForegroundColor Red

else

write-host “Specified List is not found!” -ForegroundColor Red

#Variables
$WebURL=”://intranet.crescent”
$ListName=”Change Request”

#Array to hold column titles
[emailprotected](“Change Type”,”Approvers”,”Proposed Date and Time”)

#Process each column
$ColumnNames | foreach
#Call the function to delete column from sharepoint list
Remove-Column $WebURL $ListName $_

In some cases, instead of $Column.Hidden=$False, You may have to set: $column.Sealed = $false

4526

Video Microsoft Lists delete column ?

Bạn vừa đọc nội dung bài viết Với Một số hướng dẫn một cách rõ ràng hơn về Review Microsoft Lists delete column tiên tiến và phát triển nhất

Chia Sẻ Link Download Microsoft Lists delete column miễn phí

Pro đang tìm một số trong những ShareLink Download Microsoft Lists delete column miễn phí.

Thảo Luận vướng mắc về Microsoft Lists delete column

Nếu sau khi đọc nội dung bài viết Microsoft Lists delete column vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Mình lý giải và hướng dẫn lại nha
#Microsoft #Lists #delete #column