TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • kellanistK

      TriggerCMD suddenly stopped processing commands on all devices

      • • kellanist
      8
      0
      Votes
      8
      Posts
      1.2k
      Views

      RussR

      @kellanist, wow 2 minutes is a long time. Way too long. I just tested and it's immediate for me. I saw your chat. I'll answer more there..

    • ?

      This topic is deleted!

      • • A Former User
      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • D

      Arch Linux Pi version

      • • dsc3507
      2
      0
      Votes
      2
      Posts
      358
      Views

      RussR

      @dsc3507, please tell me more. Are you looking for an easier way than this to install the agent on Arch linux?

    • Baptiste PatryB

      Problem "Please unlock your device" on Alexa...

      • • Baptiste Patry
      2
      0
      Votes
      2
      Posts
      4.4k
      Views

      RussR

      @Baptiste-Patry said in Problem "Please unlock your device" on Alexa...:

      Please unlock your device

      I did some googling and it seems you might have a pin enabled on your Alexa? Or you have children's accounts with access to your Alexa?
      https://www.reddit.com/r/alexa/comments/9mp5gg/show_mode_makes_me_unlock_device/

      It doesn't seem to have anything specifically to do with TRIGGERcmd - I think you'd have this problem working with any smart home devices via Alexa.

    • kellanistK

      Home Assistant syntax question

      • • kellanist
      5
      0
      Votes
      5
      Posts
      907
      Views

      RussR

      @kellanis, the delimiter is %20

    • kellanistK

      Ctrl+W closes Chrome entirely instead of just a single tab

      • • kellanist
      5
      0
      Votes
      5
      Posts
      1.8k
      Views

      RussR

      @kellanist, sweet! I'm glad that worked out.

    • ?

      Google home and TriggerCMD stop working when Google home is set to French

      • • A Former User
      39
      0
      Votes
      39
      Posts
      22.0k
      Views

      RussR

      @buaamm, so far I've added Japanese support for TRIGGERcmd Smart Home - both Alexa and Google Assistant.

      Would you mind testing? Please tell me if I got anything wrong.

    • L

      Timeout not working in TRIGGERcmd

      • • Luvtoski63
      9
      0
      Votes
      9
      Posts
      1.6k
      Views

      L

      @Russ said in Timeout not working in TRIGGERcmd:

      echo %1 >> c:\tools\params.log

      That is exactly what is happening...and I can't find a way to get her to pass a number instead of text...she just takes the first word after "parameter". I may have to just go with a number of set durations for the timer...thanks for your help.

    • rtn17R

      Cant run commands on Raspberry Pi 3B+

      • • rtn17
      4
      0
      Votes
      4
      Posts
      545
      Views

      RussR

      @rtn17, awesome. You're welcome.

    • Forbidden DuckF

      Command using Background Service

      • • Forbidden Duck
      12
      0
      Votes
      12
      Posts
      2.1k
      Views

      RussR

      @Forbidden-Duck, that's good. I hope it stays working.

    • R

      Ubuntu unable to edit command.json (gets overwritten)

      • • rktdno
      3
      0
      Votes
      3
      Posts
      664
      Views

      R

      @Russ Thanks for that. Indeed, beaten by the comma. Thanks for the help.

    • E

      Print a document

      • • edbgsk
      4
      0
      Votes
      4
      Posts
      607
      Views

      RussR

      @edbgsk, a command like this should work. I shared my printer with a share name of "xerox".

      print /d:"\\mycomputer\xerox" c:\docs\test.pdf
    • Lucas SoaresL

      Connecting network card via triggercmd does not work

      • • Lucas Soares
      4
      0
      Votes
      4
      Posts
      619
      Views

      RussR

      @Lucas-Soares, no, Internet access is necessary, sorry.

    • L

      Trigger Failure Handling

      feature request • • LR2
      3
      0
      Votes
      3
      Posts
      850
      Views

      RussR

      @LR2, I added this feature just now.

      Now you'll get an email if you try to run a command on an agent that's not connected.

    • K

      Alexa Issue

      • • k8nr
      4
      0
      Votes
      4
      Posts
      824
      Views

      K

      Smart Home -> Devices, then scroll to the bottom of that screen and select Forget All, then Discover.

      Works great now! Thanks for your help!

    • F

      reverse Trigger Cmd

      • • F4u5t
      5
      0
      Votes
      5
      Posts
      818
      Views

      RussR

      @F4u5t, here's an example to watch a folder for new files, and call the IFTTT webhook.

      $watcher = New-Object System.IO.FileSystemWatcher $watcher.Path = 'D:\folder_to_watch' $watcher.IncludeSubdirectories = $true $watcher.EnableRaisingEvents = $true $action = { $path = $event.SourceEventArgs.FullPath $changetype = $event.SourceEventArgs.ChangeType Write-Host "$path was $changetype at $(get-date)" $postdata = @{ value1=$path value2=$changetype } # To get your key, click the Documentation link at https://ifttt.com/maker_webhooks/ $key="your_ifttt_key" $event="new_file" $json = $postdata | ConvertTo-Json $response = Invoke-RestMethod "https://maker.ifttt.com/trigger/$event/with/key/$key" -Method Post -Body $json -ContentType 'application/json' write-host $response } Register-ObjectEvent $watcher 'Created' -Action $action "Waiting for events. Press CTRL-C to quit." while($true) { Start-Sleep .5 }
    • RussR

      Tip for Spanish users - change your Voice triggers in the GUI editor

      • • Russ
      1
      0
      Votes
      1
      Posts
      231
      Views

      No one has replied

    • H

      foreground triggers not working

      • • hm123
      3
      0
      Votes
      3
      Posts
      682
      Views

      H

      Obviously I can not run GUI programs as root. Background triggers work fine and do the job anyway. Thank you

    • Rafael RequenaR

      Share triggers with Alexa

      • • Rafael Requena
      6
      0
      Votes
      6
      Posts
      960
      Views

      RussR

      Awesome @Rafael-Requena. Thanks for letting me know it's working.

    • Forbidden DuckF

      Background Service not installing?

      • • Forbidden Duck
      12
      0
      Votes
      12
      Posts
      2.2k
      Views

      Forbidden DuckF

      @Russ
      It appears the service doesn't want to startup properly now. I have to manually start it up myself. Currently it's set as Automatic.
      and abort sleep isn't being discovered by my alexa.