Everything posted by Paul
-
PowerShell User Impersonation Fail
Hi David, Is that machine part of a domain? If so, make sure that the domain name is correct. For Windows 10 make sure you're entering the username and not the user display name. You can see the username if you run this batch command: echo %USERNAME% -Paul
-
PCs Showing Offline
Hi Ben, Please check that you haven't disabled TLS 1.0 on your machine. -Paul
-
Monitor a DELL server.
Thanks for the update. Would it be possible for you to export your event log filters and attach it to this topic? It will help the community. -Paul
- Improvement of Zendesk integration
- Install Adobe Reader DC with PowerShell
- Install MalwareBytes with PowerShell
-
Notification that all servers are offline but they are not
Hi, Thanks for letting us know. There was a faulty switch in our datacenter which got replaced by the operations team within 5 minutes however the failover cluster took over. It's possible that while the failover cluster was initializing the accounts some offline notifications were triggered. We apologize for the inconvenience. -Paul
- Install Adobe Reader DC with PowerShell
-
Tags by rules / dynamic tags
This and commands for tags would be amazing. Added to our wishlist. -Paul
-
Change Settings of Pulseway in WebApp / Mobile App
Which reminds me that we still don't have support for inputs on the webapp. I'll see if we can prioritize this. -Paul
-
Veeam
No update yet however we have on our Roadmap a backup addon which might just be Veeam: -Paul
-
Remote Desktop For OSX
Remote Desktop is planned to be introduced to the WebApp (which will work beautifully on a Mac too): -Paul
-
Change Settings of Pulseway in WebApp / Mobile App
Check out this plugin by @digbyp: We're considering on moving the agent configuration on the webapp for easier configuration management. -Paul
- Install Winrar with PowerShell
-
Monitor a DELL server.
I recommend you to use SNMP for sensor monitoring. See the following screenshot for an example and google for the MIBs (mib1 and mib2). (Credits go to Luis for his extensive research in the DELL MIBs) -Paul
-
Monitor HDDs / SSDs in a simple client
For RAID monitoring we've seen successful implementations through SNMP and Event Log. I could give some examples if you would tell me what RAID adapters you're using. -Paul
- Trigger Maintenance Mode via Script/Task
- Select Multiple Systems > Run Script
- Trigger Maintenance Mode via Script/Task
-
Feature Request: Expand notifications mark as read or delete
I absolutely love this. I'm using the Android app a lot and this would greatly improve my productivity. I'll notify the development team of this. -Paul
- Backup status in SQL Server module
- Agent job staus in SQL server module
- Remote Access to Linux
-
SNMP Server Module
Hi Michel, It's part of our wish list but due to the very little popularity of the Linux agent compared with the immense amount of feedback we receive for the Windows agent this was pushed from the Roadmap. I've brought this up in a meeting today and we're trying on bringing it back on the Roadmap. I apologize for the inconvenience. In the meantime you can create a bash script that will use SNMPGET to query SNMP devices and if the value doesn't meet your criteria then return an exit code (exit [number]) that's not zero to mark the script as failed (which can send a notification if enabled). -Paul
-
Trigger Maintenance Mode via Script/Task
I doubt that script 3 will execute. We don't continue a task execution after a reboot. If you need to schedule a reboot for your systems I recommend you to configure the Maintenance Schedule on your machines (can also be done via a Pulseway Group Policy). Powershell to control the maintenance mode: Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor" -Name "MaintenanceMode" -Value "1" -Paul