Schedule Power Automate Flow with Task Scheduler! No Premium Account Required

Поделиться
HTML-код
  • Опубликовано: 4 фев 2025

Комментарии • 26

  • @ethanaerni8938
    @ethanaerni8938 18 дней назад

    The only free method I’ve seen. Thank you!

  • @takashiimai8215
    @takashiimai8215 Год назад +1

    Thank you for this video. It worked perfectly for me. I made sure that the shortcut key wasn't assigned to anything else beforehand.

  • @lakshmikanth4550
    @lakshmikanth4550 3 месяца назад

    After so much research found this video and worked like a charm

    • @PasserBy5368
      @PasserBy5368 Месяц назад

      not for most including myslef

  • @kirand9459
    @kirand9459 Год назад +1

    its worked for me. Thank you AIP

  • @Wyldfyre.84
    @Wyldfyre.84 4 месяца назад +1

    Fantastic video. Thank you for this solution!

  • @monsayavatrasresth8262
    @monsayavatrasresth8262 6 месяцев назад +1

    Million thanks!!! This really worked for me.

  • @zechariahlaughlin1388
    @zechariahlaughlin1388 Год назад +1

    Having trouble with this. Help would be very much appreciated. The ps1 file presses the keys however it does not trigger the flow only default action if any.

  • @brucelee1457
    @brucelee1457 3 месяца назад +3

    I initially didn’t pay close attention to the details in this video. I created the .ps1 PowerShell file, converted it to an .exe file, and tested it by running the application directly. The .exe worked perfectly when clicked manually! However, when I tried to schedule the .exe with Task Scheduler, it failed to work.
    After following the steps in the video more closely, I found the solution: using Task Scheduler to directly execute the .ps1 file instead of the .exe file. The key was to set the "Action" field to "powershell -executionpolicy bypass -file C:\path\to\your\powershellscript.ps1". This allowed the script to run successfully.

  • @Deepakbhogle
    @Deepakbhogle 2 месяца назад

    Thanks for video

  • @MohammadShahin-vd3oi
    @MohammadShahin-vd3oi 8 месяцев назад

    it's working fine , many thanks.but a question? is this way working if I logout from the virtual machine??

  • @hoangvo8637
    @hoangvo8637 Год назад

    thank you for your video helps me alot but can you explain for me how can I get the file file.ps1 and which content that file.ps1 have? Thank you alot

  • @xnbet
    @xnbet Год назад +1

    Thanks for sharing. However, it's not working. I follow the steps, and when running, only the Command prompt appears and disappears without any other action.

    • @akekakong78
      @akekakong78 Год назад +1

      me too, look like a sendkey is not work in physical

    • @AIPSolutions
      @AIPSolutions  Год назад

      Which keys are you using? Can you try switching to a Function Key instead, like F6?

    • @stephenfletcher6257
      @stephenfletcher6257 7 месяцев назад +1

      Same for me. Script is ok but task not :/

  • @rohanbhattacharyya6600
    @rohanbhattacharyya6600 7 месяцев назад +1

    I tried this. It is working if I execute the powershell script but it is not working from Task Scheduler. I also tried to put the powershell logic in a batch file and trigger the batch file. Same issue. If I double click the batch file it is working but not working from task scheduler. Not giving any error also. The shortcut I am using is Ctrl + Alt + Q. Any help will be appreciated.

    • @pdoggy1000
      @pdoggy1000 5 месяцев назад

      I have the same issue .. shortcut itself is working, manually executing the script in powershell is working but when task scheduler is executing the script it doesn't work. Did you find a solution?

  • @brianramdhani6345
    @brianramdhani6345 3 месяца назад

    After I save the file Program can't run, any same problem?

  • @yenc1898
    @yenc1898 10 месяцев назад

    Am sending Ctrl + Shift + X, what is the command?

  • @piratoraman
    @piratoraman Год назад +1

    lets give it a try. nice hack :)

  • @kudanmedia
    @kudanmedia Год назад +4

    Mine was also failing to work but then managed to fix it:
    Keys to start the flow:
    (Ctrl + Shift + P)
    #Powershell script:
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    [System.Windows.Forms.SendKeys]::SendWait("^{+P}")
    Then on the task scheduler i had to put the full part for power shell, I had to first test in manually first in cmd to see it it work and it worked fine and started the flow.
    C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
    Then on the argument:
    -executionpolicy bypass -file C:\path\to\your\powershellscript.ps1
    The only change I'm now facing is that when the flow start they is a input variable pop up which appears which needs user intervention for the flow to start, how do i solve this.

    • @AIPSolutions
      @AIPSolutions  Год назад

      You will have to pass the input variable automatically to prevent it.

    • @joseji88
      @joseji88 8 месяцев назад

      I am not good with power shell but I added this code and it worked:
      $Timer = New-Object Timers.Timer
      $objectEventArgs = @{
      InputObject = $Timer
      EventName = 'Elapsed'
      SourceIdentifier = 'Timer.Elapsed'
      }
      Register-ObjectEvent @objectEventArgs
      $Timer.Interval = 5000
      $Timer.Autoreset = $False
      $Timer.Enabled = $True
      Wait-Event Timer.Elapsed
      [System.Windows.Forms.SendKeys]::SendWait("{ENTER}")

  • @iFFU17
    @iFFU17 4 месяца назад

    Is there any way when i open batch file it directly execute pda flow and if any system exception (user not logged)occurs write to text file or email..