Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Schedule an item in the SharePoint document library using powershell
WhatsApp
Vijai Anand Ramalingam
13y
4.7
k
0
0
25
Blog
$site=Get-SPSite "
http://serverName:1111/
"
$web=$site.RootWeb
$list=$web.Lists["Doc Library"]
$listItem=$list.GetItemById(2)
if([Microsoft.SharePoint.Publishing.ScheduledItem]::IsScheduledItem($listItem))
{
$scheduledItem = [Microsoft.SharePoint.Publishing.ScheduledItem]::GetScheduledItem($listItem)
$startDate = new-object DateTime(2011, 4, 6, 22, 50, 00)
$endDate = new-object DateTime(2011, 4, 6, 22, 51, 00)
$scheduledItem.StartDate = $startDate
$scheduledItem.EndDate = $endDate
$scheduledItem.ListItem.Update()
$scheduledItem.Schedule()
write-host -f green "SPListItem is successfully scheduled"
}
else
{
write-host -f yellow "SPListItem does not support scheduling"
}
Schedule an item in the SharePoint document library using powershell
Up Next
Upload Document To SharePoint Library Using PnP PowerShell
Ebook Download
View all
SharePoint Framework (SPFx) A Developers Guide
Read by 11.1k people
Download Now!
Learn
View all
Membership not found