0
(0)

This page provides detailed steps to troubleshoot live response issues.

File cannot 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, you’ll need to use the steps below to address the issue.

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

    $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 Succesfully"
    }
    
    else{
        Write-Output "Error occoured 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 leverages Defender for Endpoint sensor registration with WNS service in Windows. If you are having connectivity issues with live response, confirm the following details:

  1. notify.windows.com is not blocked in your environment. For more information, see, Configure device proxy and Internet connectivity settings.
  2. WpnService (Windows Push Notifications System Service) is not disabled.

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

Source : Official Microsoft Brand
Editor by : BEST Antivirus KBS Team

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

(Visited 21 times, 1 visits today)