Resource Management Powershell
Documentation Home
  • Home
  • Installation
    • Installing the PowerShell module
  • Configuration
    • Configuration management
    • ConfigSync File
    • Variables File
      • <Variables> element
        • <Variable> element
    • <Operations> element
      • <ResourceOperation> element
      • <AnchorAttributes> element
      • <AnchorAttribute> element
      • <AttributeOperations> element
        • <AttributeOperation> element
    • Building references
  • Usage
    • Cmdlet reference
      • Set-ResourceManagementClient
      • Get-Resource
      • Save-Resource
      • Search-Resources
      • Search-ResourcesPaged
      • Remove-Resource
      • New-Resource
      • Update-ResourceManagementClientSchema
      • Import-RMConfig
      • New-XPathQuery
      • New-XPathQueryGroup
      • New-XPathExpression
      • Get-ApprovalRequest
      • Set-PendingApprovalRequest
  • help and support
    • Quick reference guide
    • Working with different data and attribute types
    • XPath expression examples
Powered by GitBook
On this page
  • Description
  • Syntax
  • Parameters
  • Examples
  1. Usage
  2. Cmdlet reference

Set-ResourceManagementClient

Description

The Set-ResourceManagementClient cmdlet allows you to control parameters of the connection to the FIM Service.

Syntax

Set-ResourceManagementClient [-BaseAddress <string>] [-Credentials <PSCredentials>] [-ServicePrincipalName <string>] [-ForceKerberos <bool>] [-RefreshSchema]

Parameters

BaseAddress

Optional. Specifies the URL to the resource management web service. If not specified, the default value of http://localhost:5725 is used

Credentials

Optional. By default, the credentials of the currently logged on user are used. Other credentials can be specified using this parameter

ServicePrincipalName

Optional. By default the client will use FIMService/hostname for the SPN. You can override the SPN used here

ForceKerberos

Optional. A value indicating if the client should force Kerberos, and not allow NTLM authentication to the FIM service

RefreshSchema

Optional. A value indicating if the client should force a schema refresh.

Examples

# Specify a FIM service address
Set-ResourceManagementClient -BaseAddress http://fimservice:5725
# Specify a FIM service address and SPN
Set-ResourceManagementClient -BaseAddress http://fimservice:5725 -ServicePrincipalName FIMService/otherhostname
# Allow the client to fall-back to NTLM authentication
Set-ResourceManagementClient -ForceKerberos $false
# Connect to the FIM service, prompting the user for credentials
Get-Credential | Set-ResourceManagementClient -BaseAddress http://fimservice:5725 
PreviousCmdlet referenceNextGet-Resource

Last updated 3 years ago