EventID 6062: netwtw14 - dcasota/Lenovo83BY GitHub Wiki

Here another issue:

The description for Event ID 6062 from source Netwtw14 cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event: 

\Device\NDMP6
Intel(R) Wi-Fi 6E AX211 160MHz

The message resource is present but the message was not found in the message table

Repair the Registry Entry:

Locate the Correct Directory:

Open Device Manager.

Find the Intel Wi-Fi 6E AX211 adapter under "Network adapters."

Right-click on it, select "Properties," and go to the "Driver" tab.

Click "Driver Details" to find the exact path of the Netwtw14.sys file. This will show the correct directory in the FileRepository, see regpath for netwtw14.sys in the following code snippet.

# Open PowerShell with Administrator privileges

# Define the registry path and values
$regPath = "HKLM:\SYSTEM\CurrentControlSet\Services\EventLog\System\Netwtw14"
$eventMessageFilePath = "%SystemRoot%\System32\netevent.dll;%SystemRoot%\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_70d493b22a8d309e\netwtw14.sys"

# Create or update the registry keys
if (-not (Test-Path $regPath)) {
    # Create the registry path if it doesn't exist
    New-Item -Path $regPath -Force
}

# Set the EventMessageFile value
Set-ItemProperty -Path $regPath -Name "EventMessageFile" -Value $eventMessageFilePath

# Set the TypesSupported value (default: 7 for critical, error, and warning events)
Set-ItemProperty -Path $regPath -Name "TypesSupported" -Value 7

Write-Host "Registry entry for Netwtw14 driver has been repaired successfully."