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.

Rasmus Tved

Members
  • Joined

  • Last visited

  1. I have created this small script to enable monitoring of the active network adapter on a given machine. Hope this can be of some help for others in the forum. $activeadapter = Get-NetAdapter | Where-Object {$_.status -EQ "UP" -and $_.HardwareInterface -and $_.Name -notlike "*npcap*"} | select DeviceID $DeviceID = $activeadapter.DeviceID Set-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\NetworkInterfaces\" -Name count -Value 1 Set-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\NetworkInterfaces\" -Name service0 -Value "$DeviceID"
  2. Hi, I have expanded a bit on this small script, both to do some error handeling and do some logging of changes made. I have this running on my instace multiple times a day. Hope this can help someone. #Check if eventlog source is already created, if not then create if (![System.Diagnostics.EventLog]::SourceExists("Pulseway Scripting")){ New-EventLog -LogName Application -Source "Pulseway Scripting" } #Set username to blank $username = '' #Set username to actual username $username = $(Get-WMIObject -class Win32_ComputerSystem | select username).username $usernamev2 = (((query user)[1]).TrimStart()).SubString(0,21) #Combine username and text $usertext = "| $username" #Fall back to alternative user information if first is empty if($usertext -eq "| ") { $usertext = "| $usernamev2" } #Collect current value $curvalue = $(Get-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\" -Name ComputerName).Computername #Check that there is a username If ($usertext -ne "| ") { #Collect computername $computername = $env:COMPUTERNAME #Combine username and text $pulsewayname = "$computername $usertext" #Check that current value is not the same as the new one if ($curvalue -ne $pulsewayname) { #Set the new value Set-ItemProperty "HKLM:\SOFTWARE\MMSOFT Design\PC Monitor\" -Name ComputerName -Value $pulsewayname #Write the changes to event log Write-EventLog -LogName Application -Source "Pulseway Scripting" -EventId 1000 -EntryType Information -Message ` "Event: Pulseway Computername Updated Current user: $username Computername: $computername Changed from: $curvalue Changed to: $pulsewayname " } }
  3.    Jamie Taylor reacted to a post in a topic: IMAP settings not working - email parser
  4. Hi, Have you tried this: https://intercom.help/pulseway/en/articles/5488944-oauth2-0-for-microsoft-o365-with-psa-email-parser I have just setup a email parser here and it seems to work.

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.