How to implement "Add sharepoint sites in Collection using powershell"
How to implement "Add sharepoint sites in Collection using powershell"
Hello,
Get the Site to a variable:
$Site = get-odmobject -name "Site name here"
Add to a collection:
get-odmcollection -Name "Test" | add-odmobject -object $Site
Hello,
Get the Site to a variable:
$Site = get-odmobject -name "Site name here"
Add to a collection:
get-odmcollection -Name "Test" | add-odmobject -object $Site
Thank you for your guidance. please provide for remove sites from collection