Tagged Questions
0
votes
2answers
300 views
How to import term set with Use this Term Set for Site Navigation property selected using PowerShell?
$session = Get-SPTaxonomySession -Site $sitename
$termStore = $session.TermStores[“Managed Metadata Application”]
$group = $termstore.CreateGroup(“My New Group”)
$group.Description = "My Term Group"
...
1
vote
1answer
701 views
How to insert data into Managed Metadata field of any Document Set using PowerShell?
I am creating a Document Set for a library using powershell and that document set contains some mandatory managed metadata fields. I am able to create document set but how can I insert data into those ...