The information below is a living document about the use of Microsoft’s Windows Server 2016. As always, double-check the official documentation as this page may beĀ out of date over time.
Installing VMware Tools
- Mount the VMware Tools ISO
- Login to console with admin rights
- To find the ISO drive Mount:
get-psdrive
- Run Setup:
:setup.exe
- You might need to minimize the Powershell screen to see the installer window
- Reboot:
restart-computer
Setting Static IP
- To find the current Idx number for the NIC you want to modify:
netsh interface ipv4 show interface
- To Set Static IP:
netsh interface ipv4 set address name="" source=static address= mask= gateway=
- To Set DNS:
netsh interface ipv4 add dnsserver name="" address="" index=1
Renaming Computer
- To see the current Name:
hostname
oripconfig
- To Rename:
netdom renamecomputer /newName:
- Reboot:
Restart-Computer