Invoke-QuickStart
Begins the QuickStart process.
Syntax
Invoke-QuickStart –Container <String> -DatabaseName <String> -DatabaseServer <String> -ForefrontIdentityManagerServiceBaseAddress <String> -Forest <String> -ActiveDirectoryManagementAgentCredential <PSCredential> -ForefrontIdentityManagerManagementAgentCredential <PSCredential> [-RunInitialLoad [<Boolean>]] [-WhatIf] [-Confirm] [<CommonParameters>]
Detailed Description
Begins the QuickStart process.
Parameters
-Container <String>
The organizational unit where users will be synchronized from Active Directory to Forefront Identity Manager 2010 R2.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-DatabaseName <String>
The Forefront Identity Manager 2010 R2 service database name.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-DatabaseServer <String>
The Forefront Identity Manager 2010 R2 Service database server.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-ForefrontIdentityManagerServiceBaseAddress <String>
The Forefront Identity Manager 2010 R2 service base URI.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-Forest <String>
The DNS name of the root domain of the forest that you want to connect to.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-ActiveDirectoryManagementAgentCredential <PSCredential>
The Active Directory management agent user name and password.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-ForefrontIdentityManagerManagementAgentCredential <PSCredential>
The Forefront Identity Manager 2010 R2 management agent user name and password.
Required? |
true |
Position? |
named |
Default Value |
No default |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-RunInitialLoad [<Boolean>]
Indicate whether initial synchronization from active directory to Forefront Identity Manager 2010 R2 will be run automatically or not.
Required? |
false |
Position? |
named |
Default Value |
Three possible values:
|
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
Notes
Example 1
This example configures the Synchronization service and Forefront Identity Manager 2010 R2 servcie for Self-Service Password Reset and runs the intial load automatically.
$adMaCredential = get-credential "CORP\Administrator"
$fimMaCredential = get-credential "CORP\FIMMA"
Invoke-QuickStart -ActiveDirectoryManagementAgentCredential $adMaCredential -ForefrontIdentityManagerManagementAgentCredential $fimMaCredential -Forest corp.contoso.com -DatabaseName FIMService -DatabaseServer APP1 -Container "OU=PasswordResetUsers,DC=CORP,DC=contoso,DC=COM" -ForefrontIdentityManagerServiceBaseAddress "https://localhost:5725" -RunInitialLoad:$true
.