Export-FIMReportingBinding
Returns a FIM Reporting Binding object.
Syntax
Export-FIMReportBinding [-uri <string>] [-credential <system.credential> = current user] [-bindingGUID <GUID>]
Detailed Description
This PowerShell script is used to extract the reporting binding XML from a specified reporting binding object. Running this script requires you specify the object ID of the binding object you are interested in exporting. You can do this by navigating to Administration > All Resources > Data Warehouse Binding in the FIM Portal, selecting the binding object you are interested in, and then copying the “Resource ID” in the “Common Attributes” pane. The result of running this script will be an XML file located in <FIM Install directory>/2010/Reporting/PowerShell with the name of the <ObjectID>.xml. Note that running this script will not remove a binding from FIM, it simply exports it to the files system for modification or viewing.
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 |
-bindingGUID <GUID>
This required parameter specifies the guid of the binding object that is to be exported.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Notes
Example 1
C:\PS>Export-FIMReportBinding –bindingGUID 44029076-4e28-486b-b7f1-1fef6932dfb6
.