#RunCommands
{
"key": "cmd+enter",
"command": "runCommands",
"args": {
"commands": [
{
"command": "git.stageAll"
},
{
"command": "cursor.generateGitCommitMessage"
},
{
"command": "git.commitAll"
},
{
"command": "git.sync"
}
]
}
}
March 20, 2025 at 10:14 AM
Here's a demo of agentic ai creating a website, editing it, then finally building (ready to deploy)

youtu.be/8kk6z61owsg
React Builder Agent Demo
Repo: https://github.com/nikhilkulkarni1755/agent-tutorial (use require('runCommands') instead of require('postTools')
youtu.be
July 4, 2025 at 5:49 PM
// Copy/paste into keybindings.json (2-part)
[
{
"key": "f7",
"command": "runCommands",
"args": {
"commands": [
"workbench.action.terminal.clear",
"PowerShell.RunSelection"
]
},
December 29, 2024 at 3:46 PM
TIL that VSCode now supports binding a sequence of commands to a single shortcut! Apparently this was added in the March 2023 release but wasn't in the release notes
July 11, 2023 at 1:43 AM
Ever wondered about Azure's Run Command feature? It's a potent tool for executing scripts, but it can also pose security risks. Our latest post explores how Run Command can be abused for lateral movement within cloud environments, and how to detect such activities. Let's dive in!
Run Command Abuse - Hacking The Cloud
Utilise Azure RunCommands for execution and lateral movement.
buff.ly
May 28, 2025 at 2:06 PM
Whats your fav #vscode keybinding?
This one's mine:

{
    "key": "ctrl+f8",
    "command": "runCommands",
    "args": {
        "commands": [
            "workbench.action.terminal.runSelectedText",
            "workbench.action.terminal.clear"
        ]
    },
    "when": "editorTextFocus"
}
October 16, 2023 at 2:57 PM
// Copy/paste into keybindings.json
[
{
"key": "f7",
"command": "runCommands",
"args": {
"commands": [
"workbench.action.terminal.clear",
"PowerShell.RunSelection"
]
},
"when": "editorTextFocus && editorLangId == 'powershell'"
}
]
December 29, 2024 at 3:42 PM
Just use the "runCommands" command with a "commands" argument to your keybindings.json:

"key": "ctrl+shift+up",
"command": "runCommands",
"when": "<specify context>",
"args": {
"commands": [
"interactive.history.previous",
"cursorBottom"
]
}
November 21, 2024 at 11:12 PM
[✍️Blogpost] After summer break a new post about using #bicep to set up an #Azure VM and install the Adventure Works example database with #runCommands: blog.zuehlke.cloud/2024/09/depl...
Deploy SQL Server VM with Adventure Works DB in Azure with Bicep – Azure Talk
blog.zuehlke.cloud
September 15, 2024 at 6:54 PM
Too much logic...

It seems like the editor part will soon become a separate project at this rate
October 15, 2025 at 4:09 PM
Azure Run Command is a quiet path to VM execution. If an identity can call `Microsoft.Compute/virtualMachines/runCommands/action`, scripts run through the VM agent as SYSTEM on Windows or root on Linux.
Run Command Abuse - Hacking The Cloud
Utilise Azure RunCommands for execution and lateral movement.
buff.ly
May 27, 2026 at 2:04 PM
I currently obtain the best results with VSCode "runCommands" tools, but all it can do is run a command, and grab the terminal output. "dotnet build" doesn't output walls of text, which is good to avoid feeding tons of lines into the LLM, but this causes it to be detected as "idle" often
November 2, 2025 at 2:09 PM
I noticed GitHub Copilot in VSCode has a "runTasks" tool to run tasks asynchronously, but when it tried doing that for "dotnet build" it thinks the build finished successfully right away, even though the task is still running, and that the build fails. I use "runCommands" tools
November 2, 2025 at 2:04 PM
When I have to use VSCode for some reason or another, I trigger `gitu` via `Alt-x g` in terminal editor split to the right.
November 23, 2025 at 4:48 PM
🚀 Save time in Windows with these 10 Run command shortcuts! From quick access to settings and hidden tools, to speeding up everyday tasks—these tips are a game changer. ⌨️💡

▶️ Watch now - youtu.be/PCgFbqfL0gI or find the link in our bio!

#WindowsTips #RunCommands #PCShortcuts
Top 10 Useful Windows Run Shortcuts You Should Know 💻
Want to work faster in Windows? The Run dialog box is your secret shortcut to opening tools, settings, and apps instantly. In this video, we’ll show you 10 of the most useful Run commands that can save you time and make navigating Windows a breeze. From quick access to the Command Prompt and Notepad, to system settings and shutdown commands—you’ll learn them all in under 5 minutes! 💬 Want more videos like this? Let us know in the comments if you'd like a tutorial on Run shortcuts or Command Prompt basics in an upcoming video! 👍 Like this video if it helped 🔔 Subscribe for more Windows tips & tutorials 📣 Share this with anyone who wants to get more out of their PC #WindowsTips #RunCommands #WindowsShortcuts #PCTricks - windows run commands, windows run shortcuts, useful run commands, run dialog box windows, cmd run command, msconfig run command, control panel shortcut, uninstall programs shortcut, services.msc, temp files cleanup, ncpa.cpl network settings, regedit windows registry, shutdown run command, windows tips and tricks, pc shortcuts
youtu.be
August 9, 2025 at 2:40 PM
🖱️ Right-click your Start menu and unlock hidden Windows tools!
From Task Manager to Mobility Center, this quick guide shows how to access the Power User menu like a pro.

💡 Watch now or find the link in bio! → youtu.be/jMcOCnb7LNg

#WindowsTips #PCBasics #TaskManager #RunCommands
July 26, 2025 at 7:54 PM