Everything posted by Paul
-
Automation of Changing Pulseway Service Startup Type
You can do that but why not use the built-in script that enables the Pulseway Maintenance Mode a few minutes before your snapshot starts? -Paul
-
Kaspersky licenses in use on devices that are unavailable with no way of disabling them - SOLUTION!
Hello Maruco, Thank you for raising this issue with us. We will definitely review your support case to improve the quality of our support responses, let me apologize for the poor experience you've had with us. While it is true that most of our development team is booked with an upcoming release we definitely can handle escalations. For the systems that you no longer have access to, you should be able to remove the RMM agent registration from the Account -> Manage Systems section of the WebApp, this will also free any allocated addon licenses too. Do remove the systems that you no longer have access to in order to release your AV licenses and then send me a PM. I'll arrange a refund for the antivirus licenses you were charged for and did not use. -Paul
-
Whitelist Pulseway IP in iptables
Pulseway doesn't require any ports to be opened in inbound. We only use 443 in outbound. I'd suggest whitelisting the Pulseway executables in the firewall. -Paul
-
Network Monitoring
Hi Jason, The network monitoring feature is only available for the Team plan. If you are on the Team plan it should show up on the left menu as "Networks" underneath "Systems". -Paul
- "Start Remote Control Session" Grayed Out
-
Windows OS with Hostnames > 15 Characters not displaying
Hi there, Pulseway defaults the system name to the NETBIOS name which is as you've said, limited to 15 characters. You can easily change this from the Pulseway Manager app to a more meaningful name. -Paul
-
Pulseway not responding - MacOS 10.15.7
Thank you. We're looking into the problem right now. -Paul
-
Pulseway not responding - MacOS 10.15.7
Hi there, Can you also PM me with the system.log file (you can access it using the Console app - CMD + SPACE -> Console). We'll investigate this right away. -Paul
- Reactivating Pulseway on WKST that has been Upgraded
-
Does Pulseway also handle Solaris?
Hi Steve, Pulseway doesn't support Solaris right now. You can however have a Windows system in the same network as the Solaris machine to act as a network monitoring probe then enroll the Solaris machine as a generic network device which will allow you to monitor ports, SNMP variables and SSH into the system. -Paul
-
October 2020 Update
Hi Lane, Pulseway checks and installs updates every 24 hours. Do you have an on-premise server? We're releasing the on-prem 8.5 update on Monday. -Paul
-
Invalid scope system error when creating scopes for systems
Hi there, Many thanks for the report. We've resolved the issue and everything should be back to normal now. -Paul
-
How to upgrade an account from pro to team?
Hi Ricardo, I'll get one of my colleagues reach out to you with instructions on how you can upgrade your plan. -Paul
- PWY_HOME variable empty on some systems
- Notification Limit Reached
- Notification Limit Reached
-
RMM for IBMi
Hi @StevenB, I'm not familiar with IBM i but if it's a Linux derivate you can try to see if you can install the RPM page on it: https://pulseway.com/downloads. -Paul
-
forgot my account password :(
Hi Raji, You can reset your password at https://my.pulseway.com by clicking on the forgot password link. -Paul
-
Change configuration on multiple servers
I've recently built this script which also identifies the serial number of the disk to fill in the ID field: $query = 'SELECT VolumeSerialNumber FROM Win32_LogicalDisk where DriveType=3 AND Name=''' + $env:SystemDrive + '''' $serialNumber = (gwmi -Query $query).VolumeSerialNumber $count = 0 # rule 1: < 5000MB - Elevated Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Id' + $count) -Value $serialNumber Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Percentage' + $count) -Value '15' # not used Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Priority' + $count) -Value '2' # elevated Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('SizeMB' + $count) -Value '5000' Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('UsePercentage' + $count) -Value '0' $count = $count + 1 # rule 2: < 2000MB - Critical Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Id' + $count) -Value $serialNumber Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Percentage' + $count) -Value '15' # not used Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('Priority' + $count) -Value '3' # critical Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('SizeMB' + $count) -Value '2000' Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name ('UsePercentage' + $count) -Value '0' $count = $count + 1 Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\HDDList' -Name 'Count' -Value $count Set-ItemProperty -Path 'HKLM:\SOFTWARE\MMSOFT Design\PC Monitor' -Name 'SendNotificationOnLowHDDSpace' -Value '1' -Paul
- "Start Remote Control Session" Grayed Out
-
External drive temperature
Hi there, We don't support external hard drive sensor monitoring at this time however we will definitely consider it for the future. -Paul
-
Probe deployment for different IP Ranges/Subnets
The discovery probe allows you to scan all reachable private IP subnets based on the assigned IP addresses to the NICs. We also have an option that allows the probe to include public networks in the scans as well. -Paul
-
Probe not discovering any devices
Hi there, Can you please post the output of the following command: ipconfig /all You can censor any public IP addresses or MAC addresses if you wish. -Paul
- "Start Remote Control Session" Grayed Out
-
Need Help with Custom system uptime script
Please don't forget to inform Pulseway of the new $Final value using the following line: Start-Process -FilePath "$env:PWY_HOME\CLI.exe" -ArgumentList ("setVariable Final $Final") -Wait -Paul