[GH-ISSUE #1531] Show Domain Name or Workgroup Name from the endpoints. #959

Closed
opened 2026-03-02 02:20:14 +03:00 by kerem · 4 comments
Owner

Originally created by @Thedrew87 on GitHub (Jun 7, 2023).
Original GitHub issue: https://github.com/amidaware/tacticalrmm/issues/1531

Is your feature request related to a problem? Please describe.
One of my clients are need for a domain cleanup and would be great knowing which computers are on the domain vs which ones are not.

Describe the solution you'd like
Would like to see the domain name or workgroup name in the Hardware Details of the endpoint.

Describe alternatives you've considered
Or would be great to gather the information in a field under Assets > Operating System

Originally created by @Thedrew87 on GitHub (Jun 7, 2023). Original GitHub issue: https://github.com/amidaware/tacticalrmm/issues/1531 **Is your feature request related to a problem? Please describe.** One of my clients are need for a domain cleanup and would be great knowing which computers are on the domain vs which ones are not. **Describe the solution you'd like** Would like to see the domain name or workgroup name in the Hardware Details of the endpoint. **Describe alternatives you've considered** Or would be great to gather the information in a field under Assets > Operating System
kerem 2026-03-02 02:20:14 +03:00
  • closed this issue
  • added the
    duplicate
    label
Author
Owner

@dinger1986 commented on GitHub (Jun 7, 2023):

Why not add a powershell script and a check? Then it would flag up if it’s still on the domain. You could also use a collector script and put it to a custom field which shows on the dashboard

<!-- gh-comment-id:1580084065 --> @dinger1986 commented on GitHub (Jun 7, 2023): Why not add a powershell script and a check? Then it would flag up if it’s still on the domain. You could also use a collector script and put it to a custom field which shows on the dashboard
Author
Owner

@silversword411 commented on GitHub (Jun 7, 2023):

This is a duplicate of https://github.com/amidaware/tacticalrmm/issues/605

Once you can customize the summary screen this will be unnecessary.

<!-- gh-comment-id:1580692543 --> @silversword411 commented on GitHub (Jun 7, 2023): This is a duplicate of https://github.com/amidaware/tacticalrmm/issues/605 Once you can customize the summary screen this will be unnecessary.
Author
Owner

@wh1te909 commented on GitHub (Jun 7, 2023):

closing because as @dinger1986 stated, you can already make custom fields show up in the summary tab. and you can use collector scripts to populate custom fields. so just write a script that gets the domain/workgroup and have it populate a custom field called "DomainName" or whatever you want, and it will appear in the summary tab of each agent

<!-- gh-comment-id:1581322740 --> @wh1te909 commented on GitHub (Jun 7, 2023): closing because as @dinger1986 stated, you can already make custom fields show up in the summary tab. and you can use collector scripts to populate custom fields. so just write a script that gets the domain/workgroup and have it populate a custom field called "DomainName" or whatever you want, and it will appear in the summary tab of each agent
Author
Owner

@dinger1986 commented on GitHub (Jun 8, 2023):

Setup Agent Custom Text Field Called Domain Name

Add Script Below in Script Manager as Powershell

#Check what domain workstation is on
$ErrorActionPreference= 'silentlycontinue'

Write-Output "$Env:UserDomain"

Setup Collector Task to update Custom Field

<!-- gh-comment-id:1582215132 --> @dinger1986 commented on GitHub (Jun 8, 2023): Setup Agent Custom Text Field Called Domain Name Add Script Below in Script Manager as Powershell ``` #Check what domain workstation is on $ErrorActionPreference= 'silentlycontinue' Write-Output "$Env:UserDomain" ``` Setup Collector Task to update Custom Field
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#959
No description provided.