Hi all,
I created a powershell script to use 7z to make backups.
The script works fine executing manually, when i execute as a Scheduled Task the process keeps running indefinitely.
I tried to troubleshoot running the 7z comand standalone as a scheduled task and it works fine.
I start the 7z command in the powershell like this:
Start-Process -FilePath <path> -ArgumentList "<arguments>" -wait
anyone have any idea on what is happenning or how can i debug even further the issue?
Thanks for the help.