Troubleshoot Microsoft Defender for Endpoint live response issues

Applies to:

Want to experience Defender for Endpoint? Sign up for a free trial.

This page provides detailed steps to troubleshoot live response issues.

File can't be accessed during live response sessions

If while trying to take an action during a live response session, you encounter an error message stating that the file can't be accessed, take the following steps to address the issue.

  1. Copy the following script code snippet and save it as a PS1 file:

    $copied_file_path=$args[0]
    $action=Copy-Item $copied_file_path -Destination $env:TEMP -PassThru -ErrorAction silentlyContinue
    
    if ($action){
         Write-Host "You copied the file specified in $copied_file_path to $env:TEMP Successfully"
    }
    
    else{
        Write-Output "Error occurred while trying to copy a file, details:"
        Write-Output  $error[0].exception.message
    
    }
    
  2. Add the script to the live response library.

  3. Run the script with one parameter: the file path of the file to be copied.

  4. Navigate to your TEMP folder.

  5. Run the action you wanted to take on the copied file.

Slow live response sessions or delays during initial connections

Live response uses Defender for Endpoint sensor registration with WNS service in Windows. If you're having connectivity issues with live response, confirm the following details:

  1. WpnService (Windows Push Notifications System Service) isn't disabled.

  2. WpnService connectivity with WNS cloud isn't disabled via group policy or MDM setting. 'Turn off notifications network usage' shouldn't be set to 1.

Refer to the following articles to fully understand the WpnService service behavior and requirements:

Tip

Do you want to learn more? Engage with the Microsoft Security community in our Tech Community: Microsoft Defender for Endpoint Tech Community.