This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Synchronization Service and manually mapping objects

Hello,

In looking through the Synchronization Service (aka QuickConnect) SDK, I see that there is a ManualMappingOperation class. Has anyone ever tried manually mapping an object via the SDK interfaces? Thus far I've not had any luck sorting through the object model to figure it out.

Thanks,
Shawn.

Parents
  • Call me crazy Shawn, but if you look at the example code (which I have used myself), it shows the cmdlet being used to manipulate a mapping for a single object pair:

    C:\PS>$a = Get-QCObject -Connection "MyConnection1" -ObjectType User –ObjectFilter @{sAMAccountName=’Name1’}

    C:\PS>$b = Get-QCObject -Connection "MyConnection2" -ObjectType User –ObjectFilter @{sAMAccountName=’Name2’}

    C:\PS>Start-QCObjectMap -Object1 $a -Object2 $b

Reply
  • Call me crazy Shawn, but if you look at the example code (which I have used myself), it shows the cmdlet being used to manipulate a mapping for a single object pair:

    C:\PS>$a = Get-QCObject -Connection "MyConnection1" -ObjectType User –ObjectFilter @{sAMAccountName=’Name1’}

    C:\PS>$b = Get-QCObject -Connection "MyConnection2" -ObjectType User –ObjectFilter @{sAMAccountName=’Name2’}

    C:\PS>Start-QCObjectMap -Object1 $a -Object2 $b

Children
No Data