Skip to Content
Niagara 4 Supervisors & WorkplacesHow to find a PCs Host ID

How to find a PC's Host ID

The Host ID is a unique identifier for a computer that is used for Niagara 4 licensing and platform authentication. This guide covers multiple methods to find the Host ID on Windows systems.

Overview

The Host ID is typically derived from the computer's network adapter MAC address or hardware identifiers. It's used to:

  • License Activation: Activate Niagara 4 licenses tied to specific hardware
  • Platform Authentication: Authenticate platform connections
  • License Management: Manage and track licensed installations

Methods to Find Host ID

Method 1: Using Niagara Workbench

This is the most reliable method for Niagara-specific Host ID:

  1. Open Niagara Workbench
  2. Navigate to HelpAbout Niagara Workbench
  3. Look for Host ID or Machine ID in the information displayed
  4. The Host ID will be displayed as a hexadecimal string

Alternatively:

  1. In Workbench, go to FilePreferencesPlatform
  2. The Host ID may be displayed in platform connection settings

Method 2: Using Command Prompt (Windows)

  1. Open Command Prompt as Administrator
  2. Type the following command and press Enter:
ipconfig /all
  1. Look for Physical Address under your active network adapter
  2. The MAC address (e.g., 00-1A-2B-3C-4D-5E) is often used as Host ID
  3. Remove hyphens to get the Host ID format (e.g., 001A2B3C4D5E)

Method 3: Using PowerShell

  1. Open PowerShell as Administrator
  2. Run the following command:
Get-NetAdapter | Where-Object {$_.Status -eq "Up"} | Select-Object Name, MacAddress
  1. Note the MAC address of the active network adapter
  2. Remove colons to get Host ID format

For more detailed information:

Get-WmiObject Win32_NetworkAdapterConfiguration | Where-Object {$_.IPEnabled -eq $true} | Select-Object Description, MACAddress

Method 4: Using System Information

  1. Press Windows Key + R to open Run dialog
  2. Type msinfo32 and press Enter
  3. Navigate to ComponentsNetworkAdapter
  4. Look for MAC Address of your active network adapter
  5. Note the MAC address format

Method 5: Using Niagara Platform Service

If Niagara Platform Service is running:

  1. Open Services (services.msc)
  2. Locate Niagara Platform Service
  3. Check service properties or logs for Host ID information

Alternatively, check the platform configuration files:

  1. Navigate to Niagara installation directory
  2. Look for platform configuration files
  3. Host ID may be stored in configuration or license files

Method 6: Using Registry (Advanced)

For advanced users:

  1. Press Windows Key + R, type regedit, press Enter
  2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Tridium\Niagara
  3. Look for Host ID or Machine ID entries
  4. Warning: Be careful when editing registry

Understanding Host ID Formats

Common Formats

  • MAC Address Based: 001A2B3C4D5E (12 hexadecimal characters)
  • Hardware ID Based: May include additional hardware identifiers
  • Niagara Specific: May be formatted differently by Niagara software

Format Variations

Host IDs may appear in different formats:

  • With separators: 00-1A-2B-3C-4D-5E or 00:1A:2B:3C:4D:5E
  • Without separators: 001A2B3C4D5E
  • Uppercase or lowercase: 001a2b3c4d5e or 001A2B3C4D5E

Which Network Adapter to Use

Primary Adapter Selection

Niagara typically uses:

  1. Ethernet Adapter: Wired network adapter (preferred)
  2. First Active Adapter: First adapter that is enabled and connected
  3. Physical Adapter: Physical network adapter (not virtual adapters)

Identifying the Correct Adapter

To identify which adapter is used:

  1. Check Active Connections: Identify which adapter has an active network connection
  2. Primary Adapter: Usually the Ethernet adapter if present
  3. Virtual Adapters: Exclude virtual adapters (VMware, VirtualBox, etc.)
  4. Wi-Fi vs Ethernet: Ethernet is typically preferred over Wi-Fi

Troubleshooting

Host ID Not Found

If Host ID cannot be found:

  1. Multiple Adapters: Check all network adapters
  2. Adapter Status: Ensure network adapter is enabled
  3. Niagara Installation: Verify Niagara is properly installed
  4. Administrator Rights: Ensure you have administrator privileges
  5. Alternative Methods: Try different methods listed above

Host ID Changed

If Host ID appears to have changed:

  1. Network Adapter Change: Host ID may change if network adapter is replaced
  2. MAC Address Spoofing: Check if MAC address has been modified
  3. Virtual Adapters: Virtual adapters may have different MAC addresses
  4. License Issues: Host ID changes may affect license activation

Multiple Host IDs

If multiple Host IDs are found:

  1. Primary Adapter: Use the Host ID from the primary network adapter
  2. Ethernet First: Prefer Ethernet adapter over Wi-Fi
  3. Physical Adapter: Use physical adapter, not virtual
  4. Niagara Selection: Niagara will select the appropriate adapter automatically

Best Practices

Documentation

  • Record Host ID: Document Host ID for each licensed computer
  • License Tracking: Keep records linking Host IDs to license keys
  • Change Management: Document when Host IDs change

License Management

  • Pre-Activation: Obtain Host ID before license activation
  • Verification: Verify Host ID matches license requirements
  • Backup: Keep records of Host IDs for license recovery

Network Configuration

  • Static MAC: Consider using static MAC addresses if supported
  • Adapter Priority: Configure adapter priority if multiple adapters exist
  • Virtual Adapters: Be aware of virtual adapter impact on Host ID

Additional Resources

  • Niagara 4 Licensing Guide
  • Windows Network Configuration Documentation
  • MAC Address Lookup Tools