How do I add a user to a set
So over the past month, I get the same question How do I add a user to a set / aka admin set? This can be simply done with the FIMAutomation [code language=”powershell”] Script Below : #——————————————————————————————————————– [CmdletBinding()] Param( [Parameter(Mandatory=$True,Position=1)] [string]$set, [Parameter(Mandatory=$True)] [string]$username, [Parameter(Mandatory=$True)] [string]$url ) $URI = "http://" + $url + ":5725/resourcemanagementservice"…