Skip to content
View in the app

A better way to browse. Learn more.

Pulseway

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Paul

Administrators
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Paul got a reaction from Fred_BD in Select Multiple Systems > Run Script   
    Thanks. This is a great idea, we'll consider it for a future release. It's annoying that you have to create tags, a scope and a task only when you need something real quick. We'll see how we can improve this.
    -Paul
  2. Upvote
    Paul got a reaction from kavaa in Remote Desktop shadowing from Mobile   
    Hi,
    Pulseway Remote Desktop feature is not available on the mobile apps or the web app at this moment however this is something we have on the Roadmap over here:
    -Paul
  3. Upvote
    Paul reacted to Martin Stevnhoved in Backup status in SQL Server module   
    Have you looked in to this?
    It looks like a very easy quickfix for you, and would help us a lot.
    Put two new options in SQL Server config. One for how old a full/differential backup is allowed to be, and one for how old the log backup is allowed to be.
    Then loop through the databases (except tempdb)  and check for last backup time for all databases and last log backup for databases not in "simple" recovery mode.
    Last full or differential backup (for model db as an example)
    SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type IN ('D', 'I')) AND (database_name = N'model') ORDER BY backup_finish_date DESC Last log backup (for model db as an example)
    SELECT TOP (1) database_name, backup_finish_date FROM msdb.dbo.backupset WHERE (type = 'L') AND (database_name = N'model') ORDER BY backup_finish_date DESC You could also look at the databases create time, so we don't get notified because the first backup hasn't run yet.
  4. Upvote
    Paul reacted to kavaa in Install CCleaner with PowerShell   
    I made a install script for CCleaner to do a Silent install and clean if needed.
    UPDATED VERSION 3 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    When a new version of CCleaner comes out, just change the ccsetup526 to the new value.
    # CCleaner Download / Update Location # http://www.piriform.com/ccleaner/download mkdir C:\CCleanerInstall Invoke-WebRequest http://download.piriform.com/ccsetup526.exe -OutFile C:\CCleanerInstall\ccsetup526.exe Start-Process -FilePath "c:\CCleanerInstall\ccsetup526.exe" -ArgumentList "/S" Start-Sleep -s 20 rm-R -Force C:\CCleanerInstall If you want you can also add: 
    Start-Process -FilePath "C:\Program Files\CCleaner\CCleaner.exe" -ArgumentList "/CLEANER /AUTO" Start-Sleep -s 20 This will do a Auto Clean with CCleaner
    You can add this to Scripts as a PowerShell Script.
  5. Upvote
    Paul got a reaction from Tyson in Folder Monitor   
    We'd love to have a folder monitoring feature in Pulseway. I've added a todo for it, this could be used to detect cryptolocker, see if backups aren't rotated and much more.
    -Paul
  6. Upvote
    Paul got a reaction from kavaa in Order Of Scripts   
    You can change the order of the scripts in a task by dragging them up and down. Moving scripts from one category to another is a great idea. We will support this in a future release.
    -Paul
  7. Upvote
    Paul got a reaction from ArieArie in Windows agent crashed, can't repair, or install, or uninstall   
    Hi,
    Try downloading this archive and extract in the Pulseway installation directory then try to start Pulseway Manager again and see if everything works now. There's no need to uninstall only to reinstall it again.
    -Paul
  8. Upvote
    That was simple.  Extracted the zip in the Pulseway dir, overwrite existing files, and voila! Started Pulseway , Started the Service and all is working. THANK YOU!
  9. Upvote
    Yes it can...enable the Windows server backup module.
    After that, go to the tab Notifications -> Server Modules -> Windows Server Backup
    All done from Pulseway manager...
  10. Upvote
    Paul got a reaction from ArieArie in Windows agent crashed, can't repair, or install, or uninstall   
    Hi,
    Please PM me your update.log and the output of a dir command in the Pulseway directory.
    -Paul
  11. Upvote
    Paul reacted to Spicy Support in Global Uninstall Applications   
    Just tested it on 2 PCs and it works perfect, Thanks Paul!!!!!!!!
    Wishlist Removal Scripts 

    - SuperAntispyware
    - Spybot
     -ESET

    We could then make 1 script to remove them all.

    This would then enable us to push out Kaspersky without issues...
  12. Upvote
    Paul reacted to Dilbert in Group Scripts From Mobiles   
    Hi,
    it would make life much easier if we can execute scripts on groups and scopes without creating seperate tasks. I have a script that I normally execute only once on a new agent. At the moment, I run it manually on every agent.
    Dilbert
  13. Upvote
    Paul reacted to Spicy Support in Group Scripts From Mobiles   
    Hi Paul,
    Yes that would be good.
    I love the way you guys tweak the system for your customers needs !!!!

    Thanks

    Phil
  14. Upvote
    Paul reacted to itshero in Error in creating task   
    Indeed it has worked.  Thanks for your help.
  15. Upvote
    Paul got a reaction from itshero in Error in creating task   
    Hi,
    Thank you for letting us know. This should work now. We just published an update and this happened while some server components were updating. Can you confirm it's working now?
    -Paul
  16. Upvote
    Paul reacted to Michel van Son in LDAP Authentication   
    Hi Paul,
     
    Thank you for the fast response.
    Please do consider it, I think it will be a must have feature for larger companies with multiple support agents. Also, from a security standpoint, this is a good feature to have.
    For example: when an employee quits, removing the AD account would automatically remove the RMM account and perhaps even PSA account !
  17. Upvote
    Paul got a reaction from kavaa in Folder Monitor   
    We'd love to have a folder monitoring feature in Pulseway. I've added a todo for it, this could be used to detect cryptolocker, see if backups aren't rotated and much more.
    -Paul
  18. Upvote
    Paul reacted to hat00121 in Add support for Azure Resource Manager   
    Please add support for the more recent Azure Resource Manager deployment model for virtual machines. Currently only the classic model is supported, so virtual machines on my Azure subscription are not visible. 
  19. Upvote
    Paul reacted to Mark in Monitor java process?   
    Hi,
    You can make a systemctl service:
    [Unit] Description=HA Bridge Wants=network.target After=network.target [Service] Type=simple ExecStart=/usr/bin/java -jar -Dserver.port=8090 -Dconfig.file=/home/pi/habridge/habridge.config /home/pi/habridge/ha-bridge-3.5.1.jar > /home/pi/habridge/habridge-log.txt 2>&1 [Install] WantedBy=multi-user.target  
    Mark
  20. Upvote
    Paul reacted to bbb in connect failed in tcp_connect()   
    fixed - ws0.pulseway.com was inaccessible via just my ISP for 8 hours, but fine using any other ISP. 
  21. Upvote
    Paul reacted to Edd in Spread the word   
    @ComputerConsulting we will be looking to launch a referral platform sometime this year, where you'll be reward for each referral that signs up to Pulseway. Will keep you posted on this.
  22. Upvote
    Paul reacted to ComputerConsulting in Spread the word   
    Perhaps Pulseway should look into some form of affiliate marketing.  I love the product, and I've also looked at many others, but I pay for your product and if I'm going to promote it, I want a share of the profits.  
    I've got my own business to market.  
  23. Upvote
    Paul reacted to itshero in Batch Scripts being ran showing up as "skipped"   
    Cheers this worked.  I didn't see the workstation was indeed offline...  I literally solved the issue right after I posted this.  Thanks a bunch. 
  24. Upvote
    Paul got a reaction from itshero in Batch Scripts being ran showing up as "skipped"   
    Hi there,
    We mark a task execution as skipped when there is no online agent that can run the script in the task's scope. Can you check if any agents were online on the scope you've configured for the task?
    -Paul
  25. Upvote
    Paul reacted to Mark in Red Hat 5.11   
    Hi KenL
    Unfortunately Pulseway Linux agent doesn't support RH version 5.
    Best regards,
    Mark

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.