PowerShell에서이 스크립트를 실행하려고합니다. 아래 스크립트를 ps.ps1
데스크탑 과 같이 저장했습니다 .
$query = "SELECT * FROM Win32_DeviceChangeEvent WHERE EventType = 2"
Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"}
이 PowerShell 스크립트를 실행하기위한 배치 스크립트를 만들었습니다.
@echo off
Powershell.exe set-executionpolicy remotesigned -File C:\Users\SE\Desktop\ps.ps1
pause
그러나이 오류가 발생합니다.