Tagged Questions
1
vote
0answers
355 views
Getting Null returned from taxonomy field in PowerShell?
I am trying to update a metadata field when adding an item to document library. All the other columns are updating. The error is on this line and basically $taxfield is returning null.
$taxField = ...
0
votes
1answer
570 views
PowerShell Attempted to perform an unauthorised operation
I'm trying to add a term store administrator using PowerShell. I'm logged on to one of the farm web servers with a farm administrator account (also happens to be a domain admin account too). I'm ...
1
vote
4answers
1k views
Importing csv file with 1000 terms and 5 levels using powershell
I am using this code for it but I am unable to get the hierarchy which I got from the file....
$taxonomySite = Get-SPSite http:url
$taxonomySession = Get-SPTaxonomySession -site $taxonomySite
...
3
votes
4answers
4k views
SharePoint 2010 - Backup Term Store as CSV
Is there any PowerShell Script to export the Term Store? I have not found any OOTB solution, only import as csv, but no export as csv. Is there a script which can export the Term Store as csv? (So ...
3
votes
2answers
2k views
Nulling/clearing/updating Managed Metadata TaxonomyFieldValue?
In my recent adventures populating Managed Metadata values (aka TaxonomyFieldValue), I have encountered either a bug, potential oversight, or a substantial erosion of my sanity. In short, it does not ...
2
votes
3answers
2k views
Why are Taxonomy Term Stores always empty?
Using the following code I should be able to access the Taxonomy Term Stores:
$site = new-object Microsoft.SharePoint.SPSite("http://localhost")
$session = new-object ...