- or
No existing idea results
- ~ No ideas found ~
4971 results found
-
Ability to review and delete files on pc without having to remote into PC
It would be nice to have the ability to review files on an agent applied device and then also have the ability to delete files. The feature should be available without having to remote into the agent.
3 votes -
Improvements for the script library
- In the shared library mark whether a script has already been cloned to My Scripts to avoid different users repeatedly cloning the same scripts.
- Some sort of notification if there is a new version of a script that was previously cloned.
- An indicator that a cloned script has been edited in My Scripts so that if there is an updated version, a user does not overwrite the customization.
Thank you!
2 votes -
Align OS Patch Approval levels with OS Patch categories
OS Patch Approval settings should be at the same level of granularity as OS Patch Management, i.e., provide the ability to set postponement for Security Updates, Definition Updates, Update Rollups, etc. independently rather than just at the Critical vs Noncritical levels.
1 vote -
Deployement
Being able to deploy the Acronis agent + default protection plan on a customer level or at least on folder .
Instead of per agent.
This would avoid added computer with no protection and mainly boring setup ...1 vote -
Alter ticket UI to better integrate with Ticket properties
The current ticket UI requires alteration due to excessive whitespace, particularly in the description and response fields. With the increased utilisation of Forms, it's crucial to emphasise ticket properties; however, the existing UI layout impedes full integration of forms and custom fields. To address this issue, we propose two solutions:
Enable end-users to customize the UI layout according to their preferences or the specific needs of engineers. This flexibility would allow for optimal use of space and prioritisation of ticket properties.
Implement a permanent fix that enhances the prominence of ticket properties within the UI. This could involve redesigning the layout to allocate more space to essential ticket details while still accommodating description and response fields.
Both approaches aim to improve usability and efficiency within the ticketing system, ensuring that ticket properties receive adequate attention and support streamlined workflows.
The current ticket UI requires alteration due to excessive whitespace, particularly in the description and response fields. With the increased utilisation of Forms, it's crucial to emphasise ticket properties; however, the existing UI layout impedes full integration of forms and custom fields. To address this issue, we propose two solutions:
Enable end-users to customize the UI layout according to their preferences or the specific needs of engineers. This flexibility would allow for optimal use of space and prioritisation of ticket properties.
Implement a permanent fix that enhances the prominence of ticket properties within the UI. This could involve redesigning the…
4 votes -
Sort folder names alphabetically in "Relations"
It's unfortunate that "Folders" are not sorted under relations. Without the folders being sorted, it's difficult to check whether a folder name exists. Sometimes you might miss the fact that a folder name already exists, and you might create a new folder. With out the folder name being sorted (under relations), the folder function becomes rather useless.
4 votes -
Catalog Services
Catalog services for peripheral request and orders, so the user can see product picture and order the device or peripheral in general that is needed, please this will be awesome and very helpful for all Atera Subscribers!
3 votes -
Attach files to script
Would like an option to add files to a script, the other RMM we worked with had this option.
7 votes -
Advanced reports and utilization
like to build out a report/ dashboard that shows devices per organization or a full overview on hardware utilization. this would be looking at a set percentage over the course of 24 hours, weeks months just like the devices page for metrics. what the percentages would be in an example is CPU to 50%, RAM to 60%, Network 80%. etc. and can see a list of any of those devices that go above to show in the report/ dashboard and not as an alert but as a way to identify possible upgrades or attention that will be in need. i like that there is a metric system in the device page (would like more advanced metrics) but i don't have any way to see or put that in a report other than having to go to each individual device or setting a low threshold for an alert which isnt ideal.
like to build out a report/ dashboard that shows devices per organization or a full overview on hardware utilization. this would be looking at a set percentage over the course of 24 hours, weeks months just like the devices page for metrics. what the percentages would be in an example is CPU to 50%, RAM to 60%, Network 80%. etc. and can see a list of any of those devices that go above to show in the report/ dashboard and not as an alert but as a way to identify possible upgrades or attention that will be in need. i…
2 votes -
Timezone
Able to restart/manage agents based on the workstations time zone since WFH is more common and some users are not in the same zone as the main office.
2 votes -
Microsoft Integrations : 365 / Azure / Defender / Defender for Cloud
It would be nice to have an API connector for each client that pulled alerts from a tenant giving more of a single pain of glass. It would also allow some level of management of the tenant,
36 votes -
SNMP monitoring
It took myself and support (even including escalations) far too long to figure out that if an SNMP device has device availability turned off, it will not trigger alerts at all even if the monitored OID rules have been met.
The monitored OIDs should always be functional and alerts generated, even if device availability monitoring is turned off. For instance, I do not need an alert when someone turns the printer off, but I do need an alert if it is low on toner.
12 votes -
Number of Displays
It would be nice to see the number of displays that are connected to a agent pc under "Hardware"
84 votesHello, Thanks so much for submitting your idea! It’s currently under review by our product team, and should a decision be reached to develop it, we’ll keep you in the loop!
-
Granular reboot policy after patching
Post-patch reboot policy options for approving a specific time/day window for reboots after a patch has been installed. Some customers have a strict policy for patching and rebooting their endpoints. I am currently using a different RMM and considering a switch to Atera, but this one function is quite important for 2 of my customers and I don't currently see a way to tell your agent that post-patch reboots are only allowed to happen between 10AM and 4PM on Sat or Sundays...
Any way to get the type of granularity added?
2 votes -
Customize Right Click Menu
We should be able to Customize the Right Click Menu of the helpdesk agent. Other RMM solutions support this feature and Atera should as well. This can be make or break for a lot of MSPs
34 votes -
Regarding the “Configuration policy”, it would help us a lot if after each Windows Update notification the message indicated how many attemp
Regarding the “Configuration policy”, it would help us a lot if after each Windows Update notification the message indicated how many attempts you still have to cancel this action. and also let the last message indicate that “this process cannot be canceled next time and your laptop will reboot automatically”. Please improve that
2 votes -
Simple Device Availability View
Like "Availability Monitoring" but with No Notifications.
Just a simple Widget like Availability Monitoring that shows how many computers are online and how many computers are offline including if it is a Server, PC, Mac, Linux exactly the same widget, Just no Notifications.
5 votes -
password field
I use alot scripts in atera, and have done the following script to retreive the LAPS password.
$username = "{[nomeutente]}"
$password = "{[password]}"$hostname = $env:COMPUTERNAME
$cred = New-Object System.Management.Automation.PSCredential($username, (ConvertTo-SecureString $password -AsPlainText -Force))
$admPwd = Get-ADComputer -Filter {Name -eq $hostname} -Properties ms-Mcs-AdmPwd -Credential $cred | Select-Object -ExpandProperty ms-Mcs-AdmPwd
Write-Output "Admin Password: $admPwd"It would be usefull that when i have to write the password in the variable request {[variablename]} using it's placeholder it shows asterisks while i write it and not showing it in plain text. Maybe you could create a specific placeholder for password fields like {*[passwordvariable_field]*}
I use alot scripts in atera, and have done the following script to retreive the LAPS password.
$username = "{[nomeutente]}"
$password = "{[password]}"$hostname = $env:COMPUTERNAME
$cred = New-Object System.Management.Automation.PSCredential($username, (ConvertTo-SecureString $password -AsPlainText -Force))
$admPwd = Get-ADComputer -Filter {Name -eq $hostname} -Properties ms-Mcs-AdmPwd -Credential $cred | Select-Object -ExpandProperty ms-Mcs-AdmPwd
Write-Output "Admin Password: $admPwd"It would be usefull that when i have to write the password in the variable request {[variablename]} using it's placeholder it shows asterisks while i write it and not showing it in plain text. Maybe you could create a specific placeholder for password fields like {*[password…
1 vote -
Have chat open automatically and not ask for user to accept the chat
Have chat open automatically and not ask for user to first accept the chat especially as the chat is not branded in anyway.
In it's current form I feel the chat is unlikely to be useable in production.
9 votes -
Enhanced Time Tracking Functionality
Feature Overview:
I would like to suggest the addition of a more accessible and versatile time recording feature. The idea is to have a time recording option readily visible at the top of the main page header. This would allow users to quickly initiate time tracking, for instance, when receiving a phone call from a customer, without the need to navigate away from their current page.Functionality Details:
Instant Start/Stop: Users should be able to start and stop the time recording with a single click from the main header. This ensures that capturing the duration of impromptu tasks or customer interactions is seamless and hassle-free.
Description and Ticket Association: Post-call or task completion, users would have the option to add a detailed description of the time spent and associate it with an existing ticket or create a new ticket directly from the time entry interface. This integration would streamline workflow and ensure accurate and efficient ticketing and time tracking.
Time Entry Categorization: To enhance the tracking and analysis of time spent on various activities, the feature should include the ability to categorize time entries. Categories such as Phone Call, Email, Alert Response, and others would provide valuable insights into how time is being allocated across different types of tasks and customer interactions.
Benefits:
Implementing this feature would not only enhance the user experience by making time tracking more accessible and less intrusive to the workflow but also improve the accuracy of time reporting and billing. It would enable users to capture and categorize every minute spent on customer-related activities effortlessly, thereby increasing productivity and ensuring a more detailed and accurate account of work performed.Feature Overview:
I would like to suggest the addition of a more accessible and versatile time recording feature. The idea is to have a time recording option readily visible at the top of the main page header. This would allow users to quickly initiate time tracking, for instance, when receiving a phone call from a customer, without the need to navigate away from their current page.Functionality Details:
Instant Start/Stop: Users should be able to start and stop the time recording with a single click from the main header. This ensures that capturing the duration of impromptu tasks or customer…
4 votes
- Don't see your idea?