I\'d like to monitor a Windows 7 folder and have a .bat file run when any new files are added to the folder. It seems like I should be able to do this using powershell, whic
you can also use this code to run ps1 file in background instead of invoke-item
Invoke-Expression -Command "C:....\somescript.ps1"