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.

andy0609

Members
  • Joined

  • Last visited

Posts posted by andy0609

  1. I am curious to know what you normally do to onboard a client i.e.

    1. Install Pulseway on the computer
    2. Create local admin account on computer
    3. Push AV on computer
    4. Run hardware/software inventory
    5. Install specific applications
    6. etc...

  2. Is there any video training for the PSA module? it has tons of features and I see scattered videos of some modules and general talk about it, but I want videos that provide good training and makes me want to say I am a Guru at PSA

  3. I use this when I am onboarding a new client. Computers have been there and most people don't know/have their own admin password

    Quote

     

    $Username = "ADMIN-USERNAME-HERE"
    $Password = "ADMIN-PASSWORD-HERE"

    $group = "Administrators"

    $adsi = [ADSI]"WinNT://$env:COMPUTERNAME"
    $existing = $adsi.Children | where {$_.SchemaClassName -eq 'user' -and $_.Name -eq $Username }

    if ($existing -eq $null) {

        Write-Host "Creating new local user $Username."
        & NET USER $Username $Password /add /y /expires:never
        
        Write-Host "Adding local user $Username to $group."
        & NET LOCALGROUP $group $Username /add

    }
    else {
        Write-Host "Setting password for existing local user $Username."
        $existing.SetPassword($Password)
    }

    Write-Host "Ensuring password for $Username never expires."
    & WMIC USERACCOUNT WHERE "Name='$Username'" SET PasswordExpires=FALSE

     

     

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.