Forum Discussion
lgouveajr
Apr 22, 2019Copper Contributor
Create a full holds reports in Sharepoint 2010 Records Center using Powershell
Good morning, I'm trying to create a Powershell script where I can get the list of all holds of my records center and the items on hold linked to them instead of parsing each Excel file of the Hold Re...
- Apr 22, 2019
lgouveajr Run this in holds list and see if it works.
You know what there is a property compliance info.
https://docs.microsoft.com/en-us/previous-versions/office/sharepoint-server/mt827784(v%3Doffice.15)
foreach($item in $items)
{if ((https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.recordsmanagement.recordsrepository?view=sharepoint-server.IsOnHold is true) {
write-output "$($item.ComplianceInfo) "
}
lgouveajr
Apr 22, 2019Copper Contributor
Naveen KarlaWhich list should I use for the MyList? The drop-off library, holds list or the record library?
Naveen Karla
Apr 22, 2019Iron Contributor
lgouveajr Run this in holds list and see if it works.
You know what there is a property compliance info.
https://docs.microsoft.com/en-us/previous-versions/office/sharepoint-server/mt827784(v%3Doffice.15)
foreach($item in $items)
{
{
if ((https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.recordsmanagement.recordsrepository?view=sharepoint-server.IsOnHold is true) {
write-output "$($item.ComplianceInfo) "
}
write-output "$($item.ComplianceInfo) "
}