<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Example Commands]]></title><description><![CDATA[A place to share commands you like to trigger remotely.  ]]></description><link>https://www.triggercmd.com/forum/category/3</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 05:07:20 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/category/3.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 17 Sep 2025 19:49:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[RGB AURA SYNC]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">Hi</p>
<p dir="auto">I'd like to know how to turn on the PC's lighting via Armor Create.<br />
How to create Atha or map a command to play on Alexa.   .</p>
]]></description><link>https://www.triggercmd.com/forum/topic/3288/rgb-aura-sync</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/3288/rgb-aura-sync</guid><dc:creator><![CDATA[Fabio]]></dc:creator><pubDate>Wed, 17 Sep 2025 19:49:55 GMT</pubDate></item><item><title><![CDATA[Open youtube link on any browser &amp; play using autohotkey😎]]></title><description><![CDATA[<ul>
<li>Requires <a href="https://www.autohotkey.com/" rel="nofollow ugc">Autohotkey</a> <a href="https://www.autohotkey.com/download/ahk-v2.exe" rel="nofollow ugc">(v2.0)</a>.</li>
<li>Create ahk file, enter code:</li>
</ul>
<pre><code>#Requires AutoHotkey v2.0

;–– Settings ––
videoURL := "PUT_URL_HERE"

;–– Locate Browser (Firefox in this examaple) ––
path64 := A_ProgramFiles . "\Mozilla Firefox\firefox.exe"
path86 := A_ProgramFiles . " (x86)\Mozilla Firefox\firefox.exe"
if FileExist(path64)
    firefoxPath := path64
else if FileExist(path86)
    firefoxPath := path86
else {
    MsgBox("Could not find firefox.exe.", "Error")
    ExitApp()
}

;–– Open in a new tab ––
Run( Format('{} -new-tab "{}"', firefoxPath, videoURL) )

;–– Wait for YouTube tab/window ––
SetTitleMatchMode(2)
if !WinWait("YouTube", "", 10) {
    MsgBox("YouTube window not found.", "Error")
    ExitApp()
}

;–– Maximize &amp; focus ––
hWnd := WinExist("YouTube")
WinMaximize(hWnd)
WinActivate(hWnd)
WinWaitActive(hWnd, "", 5)

;–– Let it load &amp; play ––
Sleep(7000)
Send("{Space}")

ExitApp
</code></pre>
<ul>
<li>In triggercmd add new command.</li>
<li>Command - location of file(C:\Users\Admin\Desktop\yourfile.ahk)</li>
</ul>
<hr />
<p dir="auto"><strong>LINUX</strong>(Requires X11, does not work with Wayland yet) - <a href="https://github.com/phil294/AHK_X11" rel="nofollow ugc">https://github.com/phil294/AHK_X11</a><br />
Code <em>(have not tested)</em>:</p>
<pre><code>#!/usr/bin/env ahk_x11
#NoEnv
#SingleInstance force

;–– Settings ––
playlistURL = PUT_URL_HERE

;–– Open in a new tab of your default Firefox ––
; The --new-tab flag will reuse an existing window if there is one.
Run firefox --new-tab "%playlistURL%"

;–– Wait (up to 10s) for any window with “YouTube” in its title ––
WinWait YouTube,,,10
if ErrorLevel
{
    MsgBox YouTube window not found.
    ExitApp
}

;–– Maximize &amp; focus ––
WinMaximize YouTube
WinActivate YouTube
WinWaitActive YouTube,,,5

;–– Give time for the page to load ––
Sleep 7000

;–– Toggle play/pause via Space ––
Send {Space}

ExitApp
</code></pre>
<ul>
<li>chmod +x yourfile.ahk</li>
</ul>
]]></description><link>https://www.triggercmd.com/forum/topic/3244/open-youtube-link-on-any-browser-play-using-autohotkey</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/3244/open-youtube-link-on-any-browser-play-using-autohotkey</guid><dc:creator><![CDATA[trinib]]></dc:creator><pubDate>Wed, 21 May 2025 05:35:37 GMT</pubDate></item><item><title><![CDATA[Click &amp; input on Screen Desktop]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a><br />
I'll try doing what you suggested.<br />
I will update it later.<br />
Thank a lots.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/3094/click-input-on-screen-desktop</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/3094/click-input-on-screen-desktop</guid><dc:creator><![CDATA[pongsatonn siripet]]></dc:creator><pubDate>Tue, 24 Sep 2024 02:23:04 GMT</pubDate></item><item><title><![CDATA[How to setting ifttt]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/23604">@pongsatonn-siripet</a> are you saying you cannot get to the GUI Command Editor?  That's where you should see "+ Add Command", "+ Browse Example", and "+ Computer List</p>
<p dir="auto">You should have a TRIGGERcmd tray icon if you click the up arrow in the lower-right near your clock.  Here's a screenshot where I right-clicked my TRIGGERcmd tray icon.  You can see the "GUI Command Editor" in the menu.</p>
<p dir="auto">009faa08-7913-48af-a366-c322a2f36b22-image.png</p>
]]></description><link>https://www.triggercmd.com/forum/topic/3070/how-to-setting-ifttt</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/3070/how-to-setting-ifttt</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 01 Sep 2024 02:59:46 GMT</pubDate></item><item><title><![CDATA[Comando para Abrir Spotify nas musicas curtidas ou outra playlist APP:Win]]></title><description><![CDATA[<p dir="auto">Comando para abrir aplicativo do spotify na playlist de musicas curtidas</p>
<pre><code>powershell -Command Start-Process "spotify:collection:tracks"
</code></pre>
<p dir="auto">Comando para abrir uma Playlist especifica no spotify</p>
<p dir="auto">Para abrir o Spotify em uma playlist específica usando uma linha de comando no Windows, você pode usar um script simples em PowerShell. Primeiro, você precisará do link da sua playlist do Spotify.</p>
<p dir="auto">Aqui está um exemplo de como você pode fazer isso:</p>
<p dir="auto">1.Obtenha o link da playlist do Spotify. Vá para a sua playlist no Spotify, clique nos três pontos ("...") ao lado do nome da playlist, selecione "Compartilhar" e depois "Copiar link da playlist".<br />
2.Digite o seguinte comando, substituindo &lt;link_da_playlist&gt; pelo link da sua playlist:</p>
<pre><code>powershell -Command Start-Process "spotify:&lt;link_da_playlist&gt;"
</code></pre>
<p dir="auto">Exemplo prático:</p>
<p dir="auto">Se o link da sua playlist for spotify:playlist:37i9dQZF1DXcBWIGoYBM5M, você usaria:</p>
<pre><code>powershell -Command Start-Process "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M"
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/topic/2881/comando-para-abrir-spotify-nas-musicas-curtidas-ou-outra-playlist-app-win</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2881/comando-para-abrir-spotify-nas-musicas-curtidas-ou-outra-playlist-app-win</guid><dc:creator><![CDATA[Weverton Santos]]></dc:creator><pubDate>Sat, 29 Jun 2024 22:03:24 GMT</pubDate></item><item><title><![CDATA[Remotely update batch file]]></title><description><![CDATA[<p dir="auto">We deploy many attended machines and occasionally need to update the scripts or add new ones.   Using Anydesk means logging into each pc one at a time and manually updating the script.</p>
<p dir="auto">Process going forward.  We just started doing this and so far so good.</p>
<ul>
<li>Create folder with all scripts and 2 extras</li>
<li>Create commands for all of them in Triggercmd</li>
<li>Download Google Drive and sync just the folder with the scripts.</li>
<li>Make changes as needed in Google Drive's text editor</li>
</ul>
<p dir="auto">I'm sure there's a way to create a new Trigger using AutoIt or similar but for now this will save us a ton of time.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2717/remotely-update-batch-file</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2717/remotely-update-batch-file</guid><dc:creator><![CDATA[Smart Communities]]></dc:creator><pubDate>Sat, 14 Oct 2023 19:48:55 GMT</pubDate></item><item><title><![CDATA[Demo of TRIGGERcmd with Alexa and Song Master]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Good idea, thanks!</p>
<p dir="auto">I've yet to explore routines. They do increases the number of places to configure though. And no nice text file way with Alexa!</p>
<p dir="auto">I did try adding words to created a new command</p>

mac setlist ...
mac setlist next

<p dir="auto">But it doesn't work due to the way Alexa always matches the first one</p>
<p dir="auto">So I'd have to add multiple 3 word items. Yuck Shame we can add out own lexicon 😞</p>
<p dir="auto">I was going to use Routines for repeat timers but on reading the docs they don't take parameters which really limits them for all applications 😢</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2691/demo-of-triggercmd-with-alexa-and-song-master</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2691/demo-of-triggercmd-with-alexa-and-song-master</guid><dc:creator><![CDATA[Steve Lee]]></dc:creator><pubDate>Sat, 02 Sep 2023 17:55:34 GMT</pubDate></item><item><title><![CDATA[Execute IFTTT in windows]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/21020">@Mauro</a>, <a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/3234">@Matt-Packwood</a>'s solution would work, but here's another option.  You could create an IFTTT applet with TRIGGERcmd as the THIS part.  Pick <strong>Specific command</strong> and choose one of your TRIGGERcmd commands.  It doesn't matter what it does because all you care about is the fact that it will run your IFTTT applet.</p>
<p dir="auto">This is a built-in function of the TRIGGERcmd IFTTT integration:</p>
<p dir="auto">f53b5c93-57ec-48dc-82de-cab91ff289c9-image.png</p>
<p dir="auto">Then, if you want to run a command on your Windows PC that will trigger that TRIGGERcmd command that will start the IFTTT applet, you could run that TRIGGERcmd command using the <a href="https://docs.triggercmd.com/#/./tcmdCLI" rel="nofollow ugc">tcmd command line tool</a>.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2689/execute-ifttt-in-windows</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2689/execute-ifttt-in-windows</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Wed, 30 Aug 2023 23:11:13 GMT</pubDate></item><item><title><![CDATA[Multiple voice commands]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> I've been thinking of using alexa routines, to simplify my command collection. As far as I can see they can't take parameters though, so you need to create multiple similar named routines. 😞</p>
<p dir="auto">Also, as pointed out its a million clicks as they only provide a gui interface, not a nice text based one. Thank goodness TRIGGERcmd has a text file! 😀</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2670/multiple-voice-commands</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2670/multiple-voice-commands</guid><dc:creator><![CDATA[Steve Lee]]></dc:creator><pubDate>Sun, 20 Aug 2023 15:35:23 GMT</pubDate></item><item><title><![CDATA[Como abrir VS Code pelo CMD? &#x2F; How to open vscode in cmd?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/17848">@William</a>, I'm glad you found it.  For anyone else who wants to create a command to open VS Code:</p>
<p dir="auto">f6f81462-0755-4625-8177-dd83b220a9aa-image.png</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2401/como-abrir-vs-code-pelo-cmd-how-to-open-vscode-in-cmd</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2401/como-abrir-vs-code-pelo-cmd-how-to-open-vscode-in-cmd</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Tue, 01 Nov 2022 23:32:53 GMT</pubDate></item><item><title><![CDATA[smartthings-cli]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> The problem was not the paths. It turned out that smartthings-cli wanted a fresh login by root.<br />
I tried logging in to GUI with root, but was unable to initiate the login prcess that way.<br />
But typing --token &lt;uuid&gt; after each command did the trick!<br />
(&lt;uuid&gt; being the token from <a href="https://account.smartthings.com/tokens" rel="nofollow ugc">https://account.smartthings.com/tokens</a>)</p>
<p dir="auto">Cron and other services that start at boot are still unable to run the commands.<br />
Now I get "Error: did not get any data from stdin".</p>
<p dir="auto">I bypassed the problem by running a python script manually. This script stays open and executes the smartthings commands as needed. The downside is that if the power goes out and RasPi reboots the script does not run automatically.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2374/smartthings-cli</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2374/smartthings-cli</guid><dc:creator><![CDATA[Toivo Sokka]]></dc:creator><pubDate>Sun, 09 Oct 2022 22:21:59 GMT</pubDate></item><item><title><![CDATA[Respaldo?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/14022">@Oscar-Mro</a><br />
Under Windows: open TCMD's "Text Command Editor" with a right-click on its notification bar icon. It is displaying the path/location of the "command.json" file that contains your TCMD configuration. Save a copy of that file. Or cut&amp;paste the editor's content into a text file of the same name.</p>
<p dir="auto">Google translation:<br />
En Windows: abra el "Editor de comandos de texto" de TCMD haciendo clic con el botón derecho en el icono de la barra de notificaciones. Muestra la ruta/ubicación del archivo "command.json" que contiene su configuración de TCMD. Guarde una copia de ese archivo. O corta y pega el contenido del editor en un archivo de texto con el mismo nombre.</p>
<p dir="auto">HTH</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2320/respaldo</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2320/respaldo</guid><dc:creator><![CDATA[aaaaa12345]]></dc:creator><pubDate>Sat, 03 Sep 2022 03:45:09 GMT</pubDate></item><item><title><![CDATA[Get a text for each command trigger.]]></title><description><![CDATA[<p dir="auto">I setup an IFTTT applet to send me a text each time a command is triggered.</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1660496334314-8b9a6590-78a1-42c5-a4c4-efa1f8b3ae22-image.png" alt="8b9a6590-78a1-42c5-a4c4-efa1f8b3ae22-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I set it up to text my Google Voice number for now.</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1660496520341-0f3c4bfe-5ddd-4906-b11f-0c2b237f2607-image.png" alt="0f3c4bfe-5ddd-4906-b11f-0c2b237f2607-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Or instead you could also get a text for a specific command.</p>
<p dir="auto">Just an idea if anyone's interested.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2293/get-a-text-for-each-command-trigger</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2293/get-a-text-for-each-command-trigger</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 14 Aug 2022 17:02:01 GMT</pubDate></item><item><title><![CDATA[Control your Roku]]></title><description><![CDATA[<p dir="auto">This command will make your Roku remote ring:<br />
curl -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/FindRemote</p>
<p dir="auto">Here are some other useful Roku commands:</p>
<p dir="auto">curl -v -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/up<br />
curl -v -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/down<br />
curl -v -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/left<br />
curl -v -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/right<br />
curl -v -XPOST http://<strong>(roku IP address)</strong>:8060/keypress/select</p>
<p dir="auto">You can also play a specific Youtube video like this:<br />
curl -v -XPOST "http://<strong>(roku IP address)</strong>:8060/launch/837?contentId=cxOuqIZ1J4k"</p>
<p dir="auto">Launch Netflix:<br />
curl -d '' http://<strong>(roku IP address)</strong>:8060/launch/12</p>
<p dir="auto">List apps with their app ID's (Netflix's app ID is 12):<br />
curl http://<strong>(roku IP address)</strong>:8060/query/apps</p>
<p dir="auto">See these pages for more:<br />
<a href="https://github.com/tispratik/docs-1/blob/master/develop/guides/remote-api-ecp.md" rel="nofollow ugc">https://github.com/tispratik/docs-1/blob/master/develop/guides/remote-api-ecp.md</a><br />
<a href="https://developer.roku.com/docs/developer-program/debugging/external-control-api.md" rel="nofollow ugc">https://developer.roku.com/docs/developer-program/debugging/external-control-api.md</a></p>
<p dir="auto">I used this to create a panel to control my Roku.  I created a Windows batch file with a single line like this:</p>
<pre><code>curl -d '' "http://%1:8060/keypress/%2"
</code></pre>
<p dir="auto">I created a single command like this:</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1654037589000-5105c8c3-845e-4ffd-830d-62ac0d9a070b-image.png" alt="5105c8c3-845e-4ffd-830d-62ac0d9a070b-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Then I made a panel with multiple "buttons" with these parameters:</p>
<p dir="auto">Play,Rev,Fwd<br />
Select,Left,Right,Down,Up<br />
Back,Home<br />
Info,Search,Enter,InstantReplay,PowerOff,PowerOn</p>
<p dir="auto">If your roku supports it you could add these:<br />
VolumeDown,VolumeUp,VolumeMute<br />
InputHDMI1,InputHDMI2,InputHDMI3,InputHDMI4</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1654037992380-f4be1bd8-2219-40c5-b698-e5f92358b0d4-image.png" alt="f4be1bd8-2219-40c5-b698-e5f92358b0d4-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I scanned my panel's QR code to bring it up on my phone, and this is what it looks like:</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1654037926213-bdacdf52-e4a4-44f8-b3c2-57ec9362e140-image.png" alt="bdacdf52-e4a4-44f8-b3c2-57ec9362e140-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://www.triggercmd.com/forum/topic/2116/control-your-roku</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/2116/control-your-roku</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Thu, 21 Apr 2022 01:12:13 GMT</pubDate></item><item><title><![CDATA[Laptop Battery Management - Automated On&#x2F;Off Cycle]]></title><description><![CDATA[<p dir="auto">Hello! I was using this script on my laptop and it was working normally. After formatting it this afternoon, I reinstalled everything again and got tcmd to work as it was before, but now it is not reading the battery %, it just keeps activating plugOn all the time regardless of how much battery is left.</p>
<p dir="auto">I don't understand scripts, so I apologize in advance for not being able to provide more information or details. If anyone can help me, I would be grateful.</p>
<p dir="auto">Just to let you know, I followed all the steps described here. I have tcmd utility in the C:\Windows folder, I downloaded BatteryInfoView.exe, I configured plugOn and plugOff in trigger_cmd and in Alexa and even so only plugOn is activated in a loop with Alexa's routines.</p>
<p dir="auto">Oh, and I apologize for having revived the topic. I thought it best to leave everything in the same place.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1993/laptop-battery-management-automated-on-off-cycle</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1993/laptop-battery-management-automated-on-off-cycle</guid><dc:creator><![CDATA[xlPatricia]]></dc:creator><pubDate>Fri, 21 Jan 2022 23:07:38 GMT</pubDate></item><item><title><![CDATA[Voice controlling X10 Pan&amp;Tilt WiFi Cameras]]></title><description><![CDATA[<p dir="auto">I've been controlling my Pan&amp; Tilt cameras via a variety of different apps for decades even before WiFi Cameras were available.<br />
Most of these were X10 cameras and some fosscams. I've moved away from my old wired and RF wireless X10 cameras and now use HD X10 wifi cameras and still some older fosscam low def wifi cameras.<br />
I prefer the Pan &amp; tilt cameras over the stationary ones as you get a much larger coverage area.<br />
I currently have my cameras pan to a door or window when they are opened via HomeGenie. The cool factor of doing it via Alexa voice was achieved via HA-Bridge but for google it wasn't.  With TRIGGERcms Smarthome I now believe I can do this via Alexa &amp; or Google which adds a bigger cool factor.</p>
<p dir="auto">Most any IP Cammera can do this provided you can get your hands on the control protocols.<br />
Luckily I have these for the X10 XX70A HD Airsight &amp; X10 XX69A HD Airsight<br />
To turn one to a preset is a simple url api call for the<br />
<a href="https://www.x10.com/collections/airsight/products/xx70a" rel="nofollow ugc">XX70A</a><br />
X10 still sells this and is in stock last time I checked.<br />
Preset  1 calls are simple and would look like:</p>
<pre><code>IP&amp;port/cgi-bin/decoder_control.cgi?&amp;type=2&amp;cmd=0&amp;user=******&amp;pwd=*****
</code></pre>
<p dir="auto">Naturaly you change the IP&amp;port to that of the camera and change the user and pwd.<br />
For preset 2 you'd change the cm=0 to cmd=1<br />
For preset 3 you'd change the cm=0 to cmd=2 and so on<br />
<strong>The XX69A uses the same api calls</strong> not sure if it is out of stock or no longer available.</p>
<p dir="auto">I do have a couple older Pan&amp;tilt foss &amp; easyn cams and the preset codes for them but the model numbers I'm not sure of till I can get up to look at them.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1953/voice-controlling-x10-pan-tilt-wifi-cameras</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1953/voice-controlling-x10-pan-tilt-wifi-cameras</guid><dc:creator><![CDATA[tuicemen]]></dc:creator><pubDate>Sun, 09 Jan 2022 21:41:39 GMT</pubDate></item><item><title><![CDATA[Abrindo o CS:GO]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/10136">@Igor-Brum</a>, this command works for me for CSGO:</p>
<p dir="auto">"c:\Program Files (x86)\Steam\steam.exe" "steam://rungameid/730"</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1547/abrindo-o-cs-go</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1547/abrindo-o-cs-go</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Mon, 16 Aug 2021 16:22:04 GMT</pubDate></item><item><title><![CDATA[Suspend]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8661">@Mateus-Alves</a>, I learned from <a href="https://superuser.com/questions/42124/how-can-i-put-the-computer-to-sleep-from-command-prompt-run-menu" rel="nofollow ugc">here</a> that this command will hybernate your computer by default.</p>
rundll32.exe powrprof.dll,SetSuspendState 0,1,0

<p dir="auto">But, if you first run this command in an elevated cmd window (that your ran by right clicking Command Prompt, and clicking "Run as administrator"), the above command will suspend your computer instead of hybernate it.</p>
powercfg -hibernate off

<p dir="auto">If anyone reading this doesn't know the difference between suspend and hybernate:</p>


<p dir="auto"><strong>Suspend</strong> does not turn off your computer. It puts the computer and all peripherals on a low power consumption mode. If the battery runs out or the computer turns off for some reason, the current session and unsaved changes will be lost.</p>


<p dir="auto"><strong>Hibernate</strong> saves the state of your computer to the hard disk and completely powers off. When resuming, the saved state is restored to RAM.</p>


<p dir="auto">I found that <a href="https://askubuntu.com/questions/3369/what-is-the-difference-between-hibernate-and-suspend#:~:text=Suspend%20does%20not%20turn%20off,a%20low%20power%20consumption%20mode.&amp;text=Hibernate%20saves%20the%20state%20of,disk%20and%20completely%20powers%20off." rel="nofollow ugc">here</a>.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1412/suspend</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1412/suspend</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Mon, 31 May 2021 22:48:34 GMT</pubDate></item><item><title><![CDATA[Fornite]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8388">@Esteban-Jara</a>, please try this:</p>
<p dir="auto"><a href="https://www.triggercmd.com/forum/post/3733">https://www.triggercmd.com/forum/post/3733</a></p>
]]></description><link>https://www.triggercmd.com/forum/topic/1385/fornite</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1385/fornite</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 16 May 2021 04:20:49 GMT</pubDate></item><item><title><![CDATA[How to execute admin commands]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8251">@Chabetico</a>, I think the simplest way would be to close the TRIGGERcmd agent and re-run it with "Run as administrator".  Then every command the agent runs will will run with the elevated privileges.</p>
<p dir="auto">47df63c5-d2c8-4210-a546-8f4e789d0af0-image.png</p>
<p dir="auto">Will that work for you?</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1366/how-to-execute-admin-commands</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1366/how-to-execute-admin-commands</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sat, 08 May 2021 14:53:54 GMT</pubDate></item><item><title><![CDATA[How to use MultiMonitorTool?]]></title><description><![CDATA[<p dir="auto">I'm no expert on it but the one I use is:</p>
<p dir="auto">MultiMonitorTool.exe /MoveWindow 5 Title "Microsoft Outlook"</p>
<p dir="auto">In that section of the URL, there are a bunch of examples on its usage.</p>
<p dir="auto">Run the tool by itself to determine the numbering of your monitors.  Mine are 1, 2, and for some reason, 5.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1255/how-to-use-multimonitortool</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1255/how-to-use-multimonitortool</guid><dc:creator><![CDATA[Xander]]></dc:creator><pubDate>Thu, 25 Mar 2021 13:04:23 GMT</pubDate></item><item><title><![CDATA[Turn your VPN on&#x2F;off]]></title><description><![CDATA[<p dir="auto">Thanks for that tip, Scott.</p>
<p dir="auto">I will add that to my guide on r/SmartHome.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/1193/turn-your-vpn-on-off</link><guid isPermaLink="true">https://www.triggercmd.com/forum/topic/1193/turn-your-vpn-on-off</guid><dc:creator><![CDATA[Seth Kazzim]]></dc:creator><pubDate>Tue, 23 Feb 2021 01:40:51 GMT</pubDate></item></channel></rss>