У нас вы можете посмотреть бесплатно Quick video on getting MDE Live Response working in my lab или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
I've found MDE's Live Response to be a very useful troubleshooting tool when I have tools that are not executing on endpoints, and I do not have RDP access to those endpoints. Hopefully you all find this useful, and I didn't make too many mistakes. Document on enabling Live Response in your environment: https://docs.microsoft.com/en-us/micr... List of Live Response commands: https://docs.microsoft.com/en-us/micr... NOTE: in the video, I discuss having to navigate to the "Downloads" directory to fetch the output, but with the updated script below that is not necessary. The script now outputs to Windows\Temp, so you just go there and grab the output. Example PowerShell to pull network info from machine: $Path = "C:\Windows\Temp\"+$env:computername+"_NetTest.txt" Write-Output "Start NetTests" | Out-File $path -append Get-Date | Out-File $path -append resolve-dnsname www.google.com | Out-File $path -append test-netconnection www.google.com -port 443 | Out-File $path -append get-netadapter | Out-File $path -append get-netroute -AddressFamily IPv4 | Format-Table -autosize | Out-File $path -append .