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.

Nexusphreez

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Nexusphreez got a reaction from Maruco in Create local admin account with rotating credentials   
    So here is a script that I use and just set it up on a schedule.  What it does is create a local and/or domain account with the specified user name and password.  I can run it manually, on an individual system basis or through a workflow.   The only minor drawback is that the password is listed in plain text.  But my justification for this is that anyone internal to my organization is going to have access to this anyway.  Its not visible to the client or anyone else.
     
    # Inputs
    $SetPassword = "Password Here"
    $SetUserName = "User Name Here"
    $group = "Administrators"
    $adsi = [ADSI]"WinNT://$env:COMPUTERNAME"
    $existing = $adsi.Children | where {$_.SchemaClassName -eq 'user' -and $_.Name -eq $SetUsername }
    if ($existing -eq $null) {
        & NET USER $SetUsername $SetPassword /add /y /expires:never
        
        & NET LOCALGROUP $group $SetUsername /add
    }
    else {
        $existing.SetPassword($SetPassword)
    }
    & WMIC USERACCOUNT WHERE "Name='$SetUsername'" 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.