get the interface id of the loop back interface

1
netsh int ip sh int

add the address to id

1
2
netsh int ip add addr <ID> <IP>/32 st=ac sk=tr
netsh int ip add addr 1 192.168.2.59/32 st=ac sk=tr

delete the address from id

1
2
netsh int ip delete addr <ID> <IP>
netsh int ip delete addr 1 192.168.2.59