Sunday, December 09, 2018

Add user to windows

WTF!? Why do I have to give option for password recovery when creating a local user account!!!

On windows 10, Going through the normal user dialogs is painful, Microsoft tries so hard to only allow you to add Microsoft accounts to your machine that is maddening.

If you just want to add a nice, simple local user account you will have to directly call the old add user application, to do you have to call it from the run command, so:
  1. Open the run command dialog: Windows key + R
  2. Open the user dialog, by running the command: control userpasswords2

Monday, June 18, 2018

Add NAT to Hyper-V

New-VMSwitch -SwitchName “vNAT” -SwitchType Internal


New-NetIPAddress -IPAddress 10.1.3.1  –PrefixLength 24  –InterfaceAlias "vEthernet (vNAT)"

 Get-NetAdapter

 New-NetIPAddress -IPAddress 10.1.3.1  –PrefixLength 24  –InterfaceIndex 65
New-NetNAT -Name “NATNetwork” -InternalIPInterfaceAddressPrefix 10.1.3.0/24

Set ip of guest to 10.1.3.2

https://cloudtidings.com/2017/10/31/hyper-v-networking-improvements-nat-and-what-does-it-means-to-you/