For proper Cinegy Traffic Gateway work make sure you have configured the following:
-
Cinegy Traffic Gateway requires PowerShell 3.0 or later to be installed. To check the PowerShell version, use Get-Host or $PSVersionTable commands (https://oddytee.wordpress.com/2014/06/13/how-to-check-what-version-of-powershell-is-installed/).
-
If an earlier version of Powershell is installed, please update (http://blogs.technet.com/b/heyscriptingguy/archive/2014/11/09/weekend-scripter-install-powershell-4-0-in-windows-7.aspx). A new (since 2021) Powershell blog is here - https://devblogs.microsoft.com/powershell-community/ .
-
When ready check the PowerShell script execution policies (https://technet.microsoft.com/en-US/library/hh847748.aspx). Use the following command to check the policy statuses:
Get-ExecutionPolicy -List
And the following commands to allow the script execution:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser
Set-ExecutionPolicy Unrestricted -Scope LocalMachine
|