Jump 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.

Dan P

Members
  • Joined

  • Last visited

  1. This is becoming a growing issue for us, to the point where I'm actively looking for alternative solutions. Remote control works great for Windows computers. But for Mac OS...not at all really. Maybe 1 out of 10 times will I actually be able to connect to the Mac. And even then, oftentimes my mouse wont actually be on the remote screen where it shows up on my side. I just don't know what else to try.
  2. I have what was a working PowerShell script to get a list of all my systems in Pulseway. It is no longer working. I am getting a 200 response, just no data. I even tried to replicate it in Node JS since there is official documentation for it, but I get the same response - 200 but no data. $username = 'administrator' $password = '*************' #Adding credentials to header $header = @{Authorization = 'Basic ' + [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes("$($username):$($password)")) } #Call API to return first 100 systems - calls are limited to 100 results $first100 = Invoke-RestMethod -uri https://xxxxxxxxxxxx.pulseway.com/api/v2/systems -Method GET -Header $header -ContentType "application/json" #Call API to return second 100 systems using offset of 100 as a query $second100 = Invoke-RestMethod -uri https://xxxxxxxxxxx.pulseway.com/api/v2/systems?offset=100 -Method GET -Header $header -ContentType "application/json" #Create and calculate variable for total number of systems counted $total = 0 $total += $first100.data.length $total += $second100.data.length Foreach ($r in $first100.data) { If ($r.name[6] -match "-" -and $r.group -match "US Workstations") { Write-Host $r.name } } Foreach ($r in $second100.data) { If ($r.name[6] -match "-" -and $r.group -match "US Workstations") { Write-Host $r.name }

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.