TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
How to hide a column in the edit form in sharepoint using powershell
Vijai Anand Ramalingam
Apr 01, 2011
3.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
In this blog we will be seeing how to hide a column in the edit form in sharepoint using powershell
$siteURL="
http://serverName:1111/
"
$site=Get-SPSite $siteURL
$web=$site.RootWeb
$list=$web.Lists.TryGetList("cl")
$field=$list.Fields["TestCol"]
$field.ShowInEditForm=$false
$field.Update()
How to hide a column in the edit form in sharepoint using powershell
Next Recommended Reading
Sharepoint List Column Re-Ordering In New Item Form Or Edit Item Form