Sto cercando di eseguire questo script in PowerShell. Ho salvato lo script seguente come ps.ps1
sul mio desktop.
$query = "SELECT * FROM Win32_DeviceChangeEvent WHERE EventType = 2"
Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"}
Ho creato uno script batch per eseguire questo script PowerShell
@echo off
Powershell.exe set-executionpolicy remotesigned -File C:\Users\SE\Desktop\ps.ps1
pause
Ma sto ricevendo questo errore: