View Single Post
Old 02-05-2019, 11:25 AM   #2
snipe122
Junior Member
 
Join Date: Feb 2019
Posts: 27
Default

Hi,

I have checked further, in the eventlog following error is there (with latest displaylink driver):

Description:
The device Dell Universal Dock D6000 (location 0000.0014.0000.018.001.000.000.000.000) is offline due to a user-mode driver crash. Windows will attempt to restart the device 5 more times. Please contact the device manufacturer for more information about this problem.

Disabling and enabling the device helps the issue.

Meanwhile I have written a script which kicks in when I plug in AC:

$d = Get-PnpDevice| where {$_.friendlyname -like "Dell Universal Dock D6000"}
Start-Sleep -s 15
$d | Disable-PnpDevice -Confirm:$false
Start-Sleep -s 10
$d | Enable-PnpDevice -Confirm:$false

What could be the problem?
snipe122 is offline   Reply With Quote