A curated list of powershell, python, and batch scripts for use in TacticalRMM or anywhere!
Find a file
2026-04-02 08:56:09 -04:00
.github/workflows fix version 2022-07-25 15:19:52 +00:00
.vscode Refactor test_json.py to improve script loading and validation logic 2025-11-08 05:31:06 -05:00
scripts Merge pull request #309 from silversword411/main 2026-02-14 08:45:18 -05:00
scripts_staging Update file: Last errors logs.ps1 2026-04-02 13:13:21 +02:00
scripts_wip Add Die Crapware scripts 2026-03-23 11:12:31 -04:00
.editorconfig add config for JSON 2 space indents 2022-08-11 21:59:07 -05:00
.gitignore add env to gitignore 2022-02-17 02:17:45 +00:00
community_scripts.json Add TacticalRMM Agent Troubleshooting Script for Windows 2025-03-26 14:22:38 -04:00
community_scripts.schema.json Proposed work for amidaware/community-scripts#245 2024-08-15 00:46:22 -04:00
docker-compose-powershell.yml Fix PowerShell docker image on ARM64 (m1) macOS 2023-07-30 16:45:10 -04:00
docker-compose-python.yml Fix ${PWD} for Windows 2023-07-30 15:39:03 -04:00
Dockerfile-python Use Docker to develop Python and PowerShell scripts 2023-07-30 14:59:35 -04:00
LICENSE add back license 2022-01-21 16:08:12 -05:00
README.md Note: '--interactive' flag was added to 'docker compose' v2.3.0 2023-07-30 15:33:27 -04:00
requirements.txt add vscode settings and reqs 2022-03-17 03:58:23 +00:00
runtestsonwindows.ps1 Adding RunAsUser template script, updating readme, test running shortcut file 2022-06-25 15:17:39 -04:00
Taskfile.yaml Remove container upon exit so they don't build up over time 2023-07-30 18:24:39 -04:00
test_json.py Refactor test_json.py to improve script loading and validation logic 2025-11-08 05:31:06 -05:00

community-scripts

This is a list of powershell, python, and batch scripts for use in TacticalRMM

See https://docs.tacticalrmm.com/contributing_community_scripts/ for best practices on committing.

scripts_wip folder

The /scripts_wip/ is a collection box for anything you want WIP=(Work In Progress). Jot ideas, not completed scripts, all commits welcome. Have some time and want to help with Tactical RMM? Discuss in the #script Discord channel and toss around ideas with other people and improve scripts from wip to official script quality.

scripts_staging folder

The /scripts_staging/ is a collection box for WIP scripts that are believed to be ready for official "Community Scripts" integration. Please test these scripts, and provide feedback on the quality of the script in the Discord #scripts channel.

scripts folder

The /scripts/ folder is the Official Community Script folder. Everything in here will be distributed with Tactical RMM during the install process.

Everything in this folder MUST have a corresponding and valid entry in the community_scripts.json which is used in TRMMs install and upgrade process to integrate these scripts into the Tactical RMM Script Manager > Community Scripts in all Tactical Installations.

Until v1 of Tactical RMM is released function changes on existing scripts is allowed, but not encouraged. Be aware there may be Tactical RMM installs in the field where you might be breaking someones scripts/tasks applied to their workstations. Work hard and try to add additional functionality/consolidate multiple scripts while preserving backwards functionality (or make a new version of the script).

Running tests locally

Setup the env and install pytest

python3 -m venv env
source env/bin/activate
pip install --upgrade pip
pip install -r requirements.txt

Run tests

pytest

Develop using Docker

Download and install Task into your path (or current directory). Run task --list to list available tasks. Run task <task-name> --summary to generate a summary of the commands Task will run. Run task dev-python to develop Python scripts in Docker. Run task dev-powershell to develop PowerShell scripts in Docker.

Note: The --interactive flag was introduced in [Docker compose version v2.3.0][].

$ task --list
task: Available tasks for this project:
* dev-powershell:                   Use Docker compose for development of PowerShell scripts
* dev-python:                       Build and run Python in Docker to develop Python scripts
* dev-python-build:                 Build the Docker image to develop Python scripts
* dev-python-compose-run:           Use Docker compose for development of Python scripts