Remove-FIMReportingBinding
Used to remove a binding object from FIM.
Syntax
Remove-FIMReportBinding [-uri <string>] [-credential <system.credential> = current user] [-bindingGUID <GUID>]
Detailed Description
The Remove-FIMReportingBinding PowerShell script is used to remove a binding object from FIM. Removing a binding will result in FIM no longer synchronizing data for the objects specified in that binding file. Bindings can be imported again after being removed without any ill effect to the system. Note that you cannot remove the “Protected” bindings that ship with FIM. You will receive a permission denied error if you attempt to remove these bindings.
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>Remove-FIMReportBinding –bindingGUID 44029076-4e28-486b-b7f1-1fef6932dfb6
.