- or
No existing idea results
- ~ No ideas found ~
5051 results found
- 
add software inventory report for linux devicescurrently, linux agents do not provide any software inventory data. while basic hardware information and health stats are available, there is no visibility into installed packages or applications. this is essential for audits, compliance, and troubleshooting. please add software inventory support for linux devices—similar to what is available for windows and mac. 2 votesHi, We wanted to let you know that your idea is currently under review by our product team. We are evaluating its alignment with our product roadmap and its potential benefits to our users. We appreciate your patience during this process and will update you and the public status of this suggestion once a decision has been made. Best regards, The Atera Team 
- 
Feature Request – Ticket Numbers with Leading ZerosHello Atera Team, Currently, ticket numbers in the system are displayed without leading zeros, for example 2025-3. For our internal workflows and improved readability, it would be very helpful if ticket numbers could be standardized to four digits, e.g. 2025-0003 instead of 2025-3. Further to this, the year value would be nice as a prefix too. We would greatly appreciate it if this functionality could be added in a future version of Atera, either as a configurable ticket number format or through placeholders (padding). Thank you very much for considering this feature request. Best regards, 1 vote
- 
Atera agent install windowThe new agent install wizard window is rather large and when running split windows, even in 1080 resuoution, the "next" and "back" buttons are offscreen. It's just a minor annoyance, but would save a lot of time in the long run if the window was more compact. 1 vote
- 
Script Secrets ManagementI would like to propose another type of variable for scripts that is more secure, for things like API keys. There could be a secrets manager area with names for each secret, for example, "atera-api-key". Then the script could have something like {[secret=atera-api-key]}. This would help us automate scripts that have sensitive information and ensure those keys aren't saved in plain text within the script. 1 vote
- 
How do I download and install the QuickBooks Tool Hub safely?To download and install the QuickBooks Tool Hub, first download the most recent version (1.6.0.8) of it from the official website. Then, open the QuickBooksToolHub.exe file you downloaded, and follow the guide on your screen to install it. 1 vote
- 
Improve adding Manual Time EntriesIn the new UI, entering manual time entries is very laborious. Having to enter HH:MM:SS and then type AM or PM, twice (start and finish) multiple times per day is very annoying. It should be in 24-hour format. So we just enter, for example, 11.48 and 13.17, and that’s it. If we don’t enter seconds then these should default to 00 on seconds. 26 votes
- 
Monitoring of phonenumbers and SIP-TrunksA possibility of monitoring the availability of phonenumbers and SIP-Trunks would be great. You should also get a notification, if a number is unreachable. 1 vote
- 
Allow Fiance to access Atera without CostIt would be great if Finance could access Atera and just have access to the built-in Finance product and pull reporting. As now we need a technician license for someone to pull the reports and press the button for invoicing, then download it and redo it on our templates and add the tax number. 20 minutes a month on Atera Finance, and they require a license or when they need to pull a report on a finance query? 7 votes
- 
Add more intelligence behind the "Security Risk" login blockWith Atera integrating more AI, I'd like to see it help determine legitimate tech logins. I use 4 devices to connect to the Atera console (desktop at work, 2 work laptops at home, work cell). While I occasionally need to access Atera via app outside of work/home, 90% of my access is from those 2 places/IPs, and yet I still frequently run into the "Security Risk" block where I need to wait for an email in order to actually log in. I'm sure I can't be the only one using multiple access devices that runs into this, so wanted to add it as feedback to hopefully get the detection more accurate. With Atera integrating more AI, I'd like to see it help determine legitimate tech logins. I use 4 devices to connect to the Atera console (desktop at work, 2 work laptops at home, work cell). While I occasionally need to access Atera via app outside of work/home, 90% of my access is from those 2 places/IPs, and yet I still frequently run into the "Security Risk" block where I need to wait for an email in order to actually log in. I'm sure I can't be the only one using multiple access devices that runs into this, so wanted to… 1 vote
- 
Time registration via APIDear Atera Team, We would like to request the ability to log time on a ticket via the API. 
 Currently, your API supports many useful operations, but the option to register time entries on tickets is missing.This functionality would be very valuable to us, as we have several automated processes running outside Atera where we always register time. Being able to push these time entries directly into Atera through the API would allow us to keep our workflows consistent and fully automated. We believe this addition would be beneficial not only for us, but for many partners who rely on automation and accurate time tracking. Thank you for considering this request. Dear Atera Team, We would like to request the ability to log time on a ticket via the API. 
 Currently, your API supports many useful operations, but the option to register time entries on tickets is missing.This functionality would be very valuable to us, as we have several automated processes running outside Atera where we always register time. Being able to push these time entries directly into Atera through the API would allow us to keep our workflows consistent and fully automated. We believe this addition would be beneficial not only for us, but for many partners who rely… 1 vote
- 
Ability to bulk update fields on asset typesWhen adding a new Asset Field, you then have to manually go and add the new field to each individual Asset Type one by one. Would be nice to be able to select all necessary Asset Types and do a bulk update to add the new field at one time. 2 votes
- 
Prevent deletion with group permissionsAdd the option to prevent the deletion of an agent for a specific group. 
 ES: Group A, flag to enable or disable the option to delete an agent from the web interface.Thank you 1 vote
- 
run an automation profile on a pc from the devices pageHave the option to run a Patch Management and IT Automation profile on an individual device on the devices page. The same way you run a script but have the option to run an Automation profile. 2 votes
- 
Show Huntress in Antivirus FieldAdd Huntress to be shown in the Antivirus/Antispyware field. Currently just shows windows defender when Huntress is installed. 9 votes
- 
Include "Form Factor" in Agent Details and Reports.I would like to see the "form factor" of the agent devices in the display and reports. When budgeting, we need to determine laptops vs desktops and currently need to discern what's what with a combination of excel formulas and manual entry. Having this readily available (without custom scripts) would be appreciated. Backend would ideally run (one-time): $ChassisType = (Get-CimInstance Win32_SystemEnclosure).ChassisTypes[0] 
 switch ($ChassisType) {
 3 {"Desktop"}
 4 {"Low Profile Desktop"}
 6 {"Mini Tower"}
 7 {"Tower"}
 8 {"Portable"}
 9 {"Laptop"}
 10 {"Notebook"}
 11 {"Handheld"}
 12 {"Docking Station"}
 14 {"All in One"}
 23 {"Space-saving"}
 30 {"Tablet"}
 31 {"Convertible"}
 32 {"Detachable"}
 default {"Unknown"}
 }I would like to see the "form factor" of the agent devices in the display and reports. When budgeting, we need to determine laptops vs desktops and currently need to discern what's what with a combination of excel formulas and manual entry. Having this readily available (without custom scripts) would be appreciated. Backend would ideally run (one-time): $ChassisType = (Get-CimInstance Win32_SystemEnclosure).ChassisTypes[0] 
 switch ($ChassisType) {
 3 {"Desktop"}
 4 {"Low Profile Desktop"}
 6 {"Mini Tower"}
 7 {"Tower"}
 8 {"Portable"}
 9 {"Laptop"}
 10 {"Notebook"}
 11 {"Handheld"}
 12 {"Docking Station"}
 14 {"All in One"}
 23 {"Space-saving"}
 30 {"Tablet"}
 31 {"Convertible"}
 32 {"Detachable"}
 default {"Unknown"}…3 votes
- 
azure departmentInclude the department as a sync'd field with Entra ID integration 1 vote
- 
Custom fields in device note not visibleCustom Field Device Notes Not Persisting Issue: 
 Custom field device notes are not visible by default. To view them, the field needs to be expanded. However, once the page is refreshed or navigated away from, the field collapses again and does not remain in the expanded state.Expected Behavior: 
 Device notes should either be visible by default or remain expanded after leaving and returning to the page.Actual Behavior: 
 The field always collapses, requiring manual expansion each time.Impact: 
 This makes it inconvenient to quickly review notes and reduces usability.1 vote
- 
change public entry to be a private entryWe email into tickets renewals for services from suppliers then email to the customer on this ticket to advise on renewal pricing. If we just change the ticket to the customer they see the history from the original entry. We need to be able to change this to a private entry so the customer does not see the whole email chain. 1 vote
- 
Asset Depreciation Tracking Based on Cost and Year UsageDescription: Add a native feature to calculate and track depreciation of IT assets based on purchase cost and age. Admins should be able to set depreciation method (e.g., straight-line), useful life, and view current book value. Include exportable reports for finance and budgeting purposes. Use Case: Supports financial planning and asset replacement strategies by providing real-time depreciation data. 1 vote
- 
Device Check-In/Check-Out Workflow for Loaner ManagementDescription: Introduce a check-in/check-out status system for devices, distinguishing between permanently assigned assets and temporary loaners. Admins should be able to mark devices as “Checked Out” with user details and expected return date, and “Checked In” when returned. Include reporting capabilities for tracking overdue returns and usage frequency. Use Case: Streamlines loaner device management and reduces loss or misplacement of shared assets. 1 vote
- Don't see your idea?
 
        