[PR #91] [CLOSED] Update RMM Agent Name in Add/Remove Programs #1525

Closed
opened 2026-03-02 02:23:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/amidaware/tacticalrmm/pull/91
Author: @bradhawkins85
Created: 9/3/2020
Status: Closed

Base: masterHead: develop


📝 Commits (10+)

  • b8662ef Create ClearGoogleChromeCache.ps1
  • 5e8064c Create ClearFirefoxCache.ps1
  • 51d9314 Create InstallDuplicati.ps1
  • add3f34 WinDefendQuickScanBackground
  • 0a6ff54 modify database for workstation/server policies
  • a41f02b server/workstation policies addition
  • 6f02f09 bump app version
  • 5909af9 fix vue error in related policies
  • b4a2b7f added related_agent method to policy
  • 42a6bfb Fix error message when trying to enable alerts on policy check from agents table

📊 Changes

84 files changed (+5352 additions, -1444 deletions)

View changed files

📝 .gitignore (+3 -0)
📝 README.md (+1 -1)
📝 _modules/win_agent.py (+38 -0)
📝 api/tacticalrmm/agents/urls.py (+1 -0)
📝 api/tacticalrmm/agents/views.py (+64 -0)
📝 api/tacticalrmm/api/views.py (+4 -0)
📝 api/tacticalrmm/automation/models.py (+72 -15)
📝 api/tacticalrmm/automation/serializers.py (+55 -7)
📝 api/tacticalrmm/automation/tasks.py (+16 -5)
📝 api/tacticalrmm/automation/tests.py (+191 -85)
📝 api/tacticalrmm/automation/views.py (+172 -61)
api/tacticalrmm/autotasks/migrations/0003_automatedtask_script_args.py (+19 -0)
📝 api/tacticalrmm/autotasks/models.py (+11 -1)
📝 api/tacticalrmm/autotasks/serializers.py (+2 -2)
api/tacticalrmm/checks/migrations/0007_check_script_args.py (+19 -0)
📝 api/tacticalrmm/checks/models.py (+6 -0)
📝 api/tacticalrmm/checks/serializers.py (+9 -3)
📝 api/tacticalrmm/checks/views.py (+15 -9)
api/tacticalrmm/clients/migrations/0004_auto_20200821_2115.py (+43 -0)
📝 api/tacticalrmm/clients/models.py (+20 -4)

...and 64 more files

📄 Description

Please delete, messed up the first PR.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/amidaware/tacticalrmm/pull/91 **Author:** [@bradhawkins85](https://github.com/bradhawkins85) **Created:** 9/3/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b8662ef`](https://github.com/amidaware/tacticalrmm/commit/b8662ef94ebd87934fe3dddd413dc5bbafdb91a2) Create ClearGoogleChromeCache.ps1 - [`5e8064c`](https://github.com/amidaware/tacticalrmm/commit/5e8064c9aadb3e622e7b532762ab91a3bae91e54) Create ClearFirefoxCache.ps1 - [`51d9314`](https://github.com/amidaware/tacticalrmm/commit/51d9314caf21e509cbd61338c7a6c716735e4cfb) Create InstallDuplicati.ps1 - [`add3f34`](https://github.com/amidaware/tacticalrmm/commit/add3f3428970c3123cd4651cb3a9844127526427) WinDefendQuickScanBackground - [`0a6ff54`](https://github.com/amidaware/tacticalrmm/commit/0a6ff54497295057efba6aabffaebc092edc932e) modify database for workstation/server policies - [`a41f02b`](https://github.com/amidaware/tacticalrmm/commit/a41f02bfd99d91712f232ee5ec8771591b2151bc) server/workstation policies addition - [`6f02f09`](https://github.com/amidaware/tacticalrmm/commit/6f02f0940d14846ac0c57ae660bbead52d640e1c) bump app version - [`5909af9`](https://github.com/amidaware/tacticalrmm/commit/5909af9767c2b566f7de59d550016d7848460299) fix vue error in related policies - [`b4a2b7f`](https://github.com/amidaware/tacticalrmm/commit/b4a2b7fb10fae3b3524cccc23ef50670b687a21d) added related_agent method to policy - [`42a6bfb`](https://github.com/amidaware/tacticalrmm/commit/42a6bfbd280cb0c0a9729c28c4e6af5dec0ba92d) Fix error message when trying to enable alerts on policy check from agents table ### 📊 Changes **84 files changed** (+5352 additions, -1444 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -0) 📝 `README.md` (+1 -1) 📝 `_modules/win_agent.py` (+38 -0) 📝 `api/tacticalrmm/agents/urls.py` (+1 -0) 📝 `api/tacticalrmm/agents/views.py` (+64 -0) 📝 `api/tacticalrmm/api/views.py` (+4 -0) 📝 `api/tacticalrmm/automation/models.py` (+72 -15) 📝 `api/tacticalrmm/automation/serializers.py` (+55 -7) 📝 `api/tacticalrmm/automation/tasks.py` (+16 -5) 📝 `api/tacticalrmm/automation/tests.py` (+191 -85) 📝 `api/tacticalrmm/automation/views.py` (+172 -61) ➕ `api/tacticalrmm/autotasks/migrations/0003_automatedtask_script_args.py` (+19 -0) 📝 `api/tacticalrmm/autotasks/models.py` (+11 -1) 📝 `api/tacticalrmm/autotasks/serializers.py` (+2 -2) ➕ `api/tacticalrmm/checks/migrations/0007_check_script_args.py` (+19 -0) 📝 `api/tacticalrmm/checks/models.py` (+6 -0) 📝 `api/tacticalrmm/checks/serializers.py` (+9 -3) 📝 `api/tacticalrmm/checks/views.py` (+15 -9) ➕ `api/tacticalrmm/clients/migrations/0004_auto_20200821_2115.py` (+43 -0) 📝 `api/tacticalrmm/clients/models.py` (+20 -4) _...and 64 more files_ </details> ### 📄 Description Please delete, messed up the first PR. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 02:23:39 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tacticalrmm#1525
No description provided.