Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In addition to the system and hardware requirements, the following must be installed on the VitalSigns workstation/server. 

...

  • Active Directory credentialsMember of Exchange Administrators group is ideal
  • User ID must be an ExchangeAdmin with permissions to execute Remote PowerShell on the Exchange Management Shell

...

  1. To configure the station to receive remote commands
    1. Enter Enable-PSRemoting –Force 
       
  2. To change the user preference for the Windows PowerShell execution policy so that all scripts and configuration files downloaded from the Internet be signed by a trusted publisher
    1. Enter Set-ExecutionPolicy RemoteSigned -Force
       
  3. To create a new Throttling Policy to allow 1000 PowerShell Concurrencies
    1. Enter New-ThrottlingPolicy -Identity {Custom-Policy-Name} -PowershellMaxConcurrency 1000 -PswsMaxConcurrency 1000 -ThrottlingPolicyScope Regular
    2. Replace Custom-Policy-Name with new policy name
       
  4. To associate the new Throttling Policy with the specified user 
    1. Enter Set-ThrottlingPolicyAssociation -Identity {ID-USED-BY-VitalSigns} -ThrottlingPolicy NEWPOLICYNAME 
    2. Replace ID-USED-BY-VitalSigns with new policy name

...