Creating and importing a Presence Services session

Last Updated : Jun 10, 2019 |
Prolog information
  1. To create a Presence Services session, run the following in the powershell on the Exchange server:
    ADDITIONAL INFORMATION:
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri connection URI -Authentication Kerberos -Credential $UserCredential
    connection URI is a string provided in the following format: http://FQDN of the exchange server/PowerShell/. For example, if your exchange FQDN is MyExchangeServer.company.com then connection URI is: http://MyExchangeServer.company.com/PowerShell/
  2. To import a Presence Services session, run the following in the powershell on the Exchange server:
    ADDITIONAL INFORMATION:
    Import-PSSession $Session