i'mI'm running a batch file from Task Scheduler wich i excecutewhich I execute a PowershellPowerShell Scripts. So , iI have a batch file (TestFD.bat) :
Powershell -Command "& {C:\Users\csadouni\Desktop\testFDCOMM.ps1}" > logFDCOM.txt
My script powershell doPowerShell does migration of my documents on my SharePoint Online site and it's work well (the log file is genratedgenerated perfectly) if iI call the batch file from cmd.exe. Then From the task Windows heit work well but the issue seem on task windows doesn't recognize my output file redirection. So no file generated
I tried all thosesthese solutions , but no one resolve my issue.
How can I redirect PowerShell output when run from Task Scheduler?
Executing PowerShell from Windows Task Scheduler
How do I execute a PowerShell script automatically using Windows task scheduler?
I wouldn't running only my PSscript directly from Scheduler Task , beacuse ibecause I need my output redirection of my Sharegate transfer (Sharegate is a product to automate task , manage , adminsteradminister and migtratemigrate site , content on SharePoint & Office 365) , So , iI need my output of PowershellPowerShell migration after iI have many other scripts to schedule them on my batch file. What am I missing?
Any help it'sis appreciated thanks !