Categories
Knowledge Support Support exacqVision Client exacqVision Server Categories exacqVision Hardware

Powershell Group Policies Blocking exacqVision Server Scripts

Description 

Group Policy settings have been observed to block exacqVision Server Scripts even after the machine has been removed from the domain.

Product 

  • exacqVision Server
  • Group Policy
  • Windows PowerShell

Actual Results 

  • Issue 1: Date/Time settings are grayed out in the exacqVision Client.
  • Issue 2: Users are unable to apply a license; MAC address shows all 0’s.

Expected Results 

  • Issue 1:  Date/Time settings are not grayed out and settings can be pushed from the exacqVision Client
  • Issue 2:  The MAC address is correct and a license can be applied.

Verification

  1. Open Windows Powershell (Admin).
  2. Change the working directory to “C:\Program Files\exacqVision\Server\scripts”
    cd C:\Program Files\exacqVision\Server\scripts\
  3. Run one or more of the following scripts:
.\timeconfig.ps1
.\netconfig.ps1
.\sysinfo.ps1
.\raidprep.ps1

PowerShell script command example

Resolution

-Run the following command replacing Script.ps1

-If one or more of the scripts fails after then a re-image may be necessary. 

<br>

Categories
Knowledge Support Support exacqVision Client Categories Products

Determining Network Connection Speed

Depending on the model of Exacq NVR, or optional upgrades selected, your system may offer network interfaces with varying maximum data speeds. If you build your own system, or if you connect to a network with slower infrastructure, you might not achieve the maximum stated performance.

Commonly listed network interface speeds on Exacq NVRs

NameMaximum Throughput
1000BASE-T1,000 Gbps (1 Gbit/s)
2.5GBASE-T2,500 Gbps (2.5 Gbit/s)
10GBASE-T10,000 Gbps (10 Gbit/s)

Auto-negotiation

Network interfaces are normally configured for auto-negotiation, in which two connected devices agree on shared communication settings, such as communication speed and duplex mode. This means a device capable of communicating at 1000 Mbps will be limited to 100 Mbps if the other device it is connected to has a 100 Mbps maximum speed.

Use the below methods to determine your interface’s connection speed.<br>

exacqVision Desktop Client Network Settings

Within the exacqVision Desktop Client, the negotiated network speed for a network interface can be seen by navigating to the Configure System node on the left-hand navigation tree, then clicking on the Network tab.

Highlight the chosen network interface from your list of Interfaces.

Above the interface’s IP Address Configuration section is the Status, which will also display the detected network speed.

Windows CLI

On Windows systems, you may use the PowerShell command line interface to check the negotiated network speed for the interface as well as whether it is using full-duplex or half-duplex. Enter the following command:

Get-NetAdapter | select interfaceDescription, name, status, linkSpeed, fullduplex

Ubuntu CLI

On Ubuntu systems, open a Terminal interface. Enter the following command, replacing INTERFACE with the name of your chosen interface:

ethtool INTERFACE

The example below, uses an interface named ‘ens18’ and shows the supported and advertised speeds and duplex modes the interface is capable of. However, the negotiated speed can be found further down named, ‘Speed’. This also indicates the interface is currently using full-duplex mode.

<br>