Previous Topic: Install CA IAM Connector ServerNext Topic: Install Windows Azure Active Directory Module for Windows PowerShell


Install and Configure Windows PowerShell

Set up Windows PowerShell on the on-premise environment where the connector is running. For details, see the following link:

http://help.outlook.com/en-us/140/cc952756.aspx

Follow these steps:

  1. Install the latest version of Windows PowerShell in the on-premise environment where the connector is running.
  2. Open Windows PowerShell and run the following command:
    Get-ExecutionPolicy
    

    The command specifies the execution policy which is currently in-use.

  3. To set the ExecutionPolicy to RemoteSigned, run the following command:
    Set-ExecutionPolicy RemoteSigned
    

    The execution policy is now set to RemoteSigned. This indicates that the downloaded scripts require a trusted publisher to sign before they can be run.

  4. Exit the Windows PowerShell.
  5. Open command prompt and run the following command:
    net start winrm
    

    Windows Remote Management (winrm) starts.

  6. In the command prompt, run the following command:
    winrm get winrm/config/client/auth
    

    Note: If the value returned does not contain Basic=true, run the following command:

    winrm set winrm/config/client/auth @[Basic="true"]
    
  7. To stop winrm, run the following command:
    net stop winrm