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.

Featured Replies

Posted

Pulseway doesn't seem to send the following script to create an INI file correctly to the target computer. The script runs fine on local Powershell, but it creates a setupconfig.ini file with text as a long string when run through Pulseway. 

$fqdn=(Get-WmiObject win32_computersystem).DNSHostName+"."+(Get-WmiObject win32_computersystem).Domain
$fqdn=$fqdn.Substring($fqdn.IndexOf(".") + 1)
$sysfolder="\\$env:computername\sysvol\$fqdn\policies\"
$setupconfig="\\$env:computername\sysvol\$fqdn\policies\setupconfig.ini"
$functiontext = @"
[Setupconfig]
auto=upgrade
BitLocker=AlwaysSuspend
Compat=IgnoreWarning
Priority=Normal
DynamicUpdate=Enable
ShowOOBE=None
Telemetry=Enable
DiagnosticPrompt=Enable
"@
new-item $setupconfig -type file -force -value $functiontext

Anything I need to change?

Edited by Forcys

  • Administrators

Most likely it's a line ending problem. Try adding this line before new-item:

$functiontext = $functiontext -replace "`r", "" #avoid duplicating the carriage return
$functiontext = $functiontext -replace "`n", "`r`n"

-Paul

Create an account or sign in to comment

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.