> For the complete documentation index, see [llms.txt](https://docs.hedge.video/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hedge.video/general/licenses/network-adapters.md).

# Network Adapters

{% hint style="info" %}
This only concerns Windows users.
{% endhint %}

Activating a license or trial of a Hedge product on a machine with disabled, outdated, or virtual network adapters can result in the following activation error:

<figure><img src="/files/mAqQ8M0OJfsmso0o2KhY" alt="" width="563"><figcaption></figcaption></figure>

## Troubleshooting

* Install the latest Windows updates
* Launch the Hedge app with administrator rights ("Run as administrator")
* Run the following command in PowerShell to list all the network adapters recognized by Windows. Look for the actual physical network adapters that show a MacAddress, and are not recognized as physical.

{% code overflow="wrap" %}

```
Get-WmiObject -Class "Win32_NetworkAdapter" | Format-List -Property Name,PhysicalAdapter,MacAddress
```

{% endcode %}

* Install vendor-specific drivers for physical network adapters that are not recognized as physical.
* Attempt to rebuild the Windows Management Instrumentation (WMI) network adapter class.
  * Open an elevated Powershell, then navigate to this directory using cd:
  * ```
    cd C:\Windows\System32\wbem
    ```
  * Rebuild the WMI adapter class:

    ```
    mofcomp C:\Windows\System32\wbem\NetAdapterCim.mof
    ```
* Temporarily uninstall the network adapter.
  1. Connect your PC to the Internet with a wired connection.
  2. In Device Manager, right-click on the network adapter and select "Uninstall device."
  3. Try activating
  4. To reinstall that network adapter, do a "Scan for hardware changes" in Device Manager.

<figure><img src="/files/tuJryuomZQ68uxcXqv8S" alt=""><figcaption></figcaption></figure>

{% hint style="warning" %}
Make sure NOT to check the "Delete the driver software for this device."-checkbox.
{% endhint %}

<figure><img src="/files/OoZ7IikNwditVKLB5JdI" alt="" width="336"><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hedge.video/general/licenses/network-adapters.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
