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

Hi Folks,

 

I'm new to Pulsewau scripting, please bear with me.

I've tried to run the following PowerShell command, but it doesnt seem to run.

Rename-Computer -NewName "Computer123" -DomainCredential MyDomain\Administrator -Restart

Any advice on what I should do, to rename a computer?

  • Administrators

Hi @AMC,

Based on the documentation, the DomainCredential parameter says:

Quote

If you type a user name, this cmdlet prompts you for a password.

We run PowerShell in a non-interactive mode, this prevents inputs from being triggered. You can provide a PSCredential object instead of the username and that should do the trick.

$password = "ThisIsAPlaintextPassword" | ConvertTo-SecureString -asPlainText -Force
$username = "contoso\Administrator"
[PSCredential] $credential = New-Object System.Management.Automation.PSCredential($username, $password)
Rename-Computer -NewName "NewComputerName" -DomainCredential $credential -Restart

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