Start-FIMReportingIncrementalSync
Extracts data from FIM that has been changed since the last reporting incremental sync run.
Syntax
Start-FIMReportingIncrementalSync [-uri <string> = localhost] [-credential <system.credential> = current user]
Detailed Description
Extracts data that has changed since the last incremental sync run from FIM, transforms it into SCSM classes and properties based on the FIM to SCSM binding table, and loads these data into the SCSM Data Warehouse. This process is run by default every 8 hours, starting at 12 midnight on the FIM Service Database server. This script allows you to run that process manually. Running this script will result in creating a “Reporting Job” object in the FIM Service. You may view these jobs, and their statuses by navigating to Administration > All Resources > Reporting Job, and inspecting the “extended attributes” tab.
Parameters
-uri <string> = localhost
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 FIM 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, they 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 |
Notes
Example 1
C:\PS> Start-FIMReportingIncrementalSync
.