Import-FIMReportingBinding
Used to import a reporting binding object into FIM. This may be either an update to an existing object or the addition of a new object.
Syntax
Import-FIMReportBinding [-uri <string>] [-credential <system.credential> = current user] [-bindingFile <fileRef>]
Detailed Description
This PowerShell script can be used to import a new reporting binding object, or make updates to an existing reporting binding object. Whether or not an update is made to an existing object is controlled by the “Data WarehouseBindingIdentity” value specified in the binding XML file. If this value is already associated with an existing reporting binding object in FIM, then the object will be updated; otherwise, a new binding object with the specific “Data WarehouseBindingIdentity” will be added. Note that this step is implicitly completed by the Import-FIMReportingSchemaDefinition cmdlet, so you do not need to manually run this script in cases when you are extending FIM Reporting.
Parameters
-uri <string>
This URL pointing to the resource management service. By default this is set to “https://localhost:5725/resourcemanagementservice“
Required? |
false |
Position? |
1 |
Default Value |
https://localhost:5725/resourcemanagementservice |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
true |
-credential <system.credential> = current user
This is the credential needed for talking to the resource management service. By default, this is set to the credentials of the current user. If the user wishes to run under a different context, she can pass a system.credential object to the commandlet.
Required? |
false |
Position? |
named |
Default Value |
<system.credential> = current user |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-bindingFile <fileRef>
This required parameter is defined as the path to the FIM to SCDW object binding file. This file defines the binding of object attributes that exists in FIM to the class properties that exists in DW.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Notes
Example 1
C:\PS>Import-FIMReportBinding –bindingFile C:\ReportingExt\binding\Microsoft.Forefront.IdentityManager.Data Warehouse.Test.Extensibility.xml
.