This is the continuation of this question i have asked in this SE How to run a PowerShell script from a batch file .I have used powershell to execute this command
$query = "SELECT * FROM Win32_DeviceChangeEvent WHERE EventType = 2"
Register-WMIEvent -Query $query -Action { invoke-item "C:\Program Files\abc.exe"}
I have succesfully executed the powersell script but i am getting this warning.

Can you tell me how can i rectify this issue