Several ways to rename a computer in Windows

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!

Hello,

A video showing several methods of renaming a computer in Windows.

The computer name must comply with the following constraints:
- No special characters 
- Not all numbers.
- Between 1 and 15 characters.

The name is not case sensitive.

Video - Renaming a computer in Windows

Renaming a computer in Powershell

# Renaming a computer
Rename-Computer -NewName new-name
# Rename a computer and reboot
Rename-Computer -NewName new-name -Restart
# Rename a computer by specifying other identifiers
Rename-Computer -NewName new-name -Credential (Get-Credential)

Video : Several ways to rename a computer in Windows

Related links