Oct 31 2018 08:50 AM
I've been trying to join my Nano Server into my domain named Canopus.com via this PowerShell command:
>Import-Module .\NanoServerImageGenerator -verbose
...
>New-NanoServerImage -deploymentType Guest -Edition Datacenter -MediaPath E:\ -TargetPath D:\Hyper-V\NanoServers\Nano1.vhdx -ComputerName Nano1 -Domain Canopus.com -InterfaceNameOrIndex vEthernet -IPV4Address 192.168.0.4 -IPV4SubnetMask 255.255.255.0 -IPV4DNS 192.168.0.1
After the VM is created however, the nano server doesn't seem to have adapted the configurations related to IP Address.
Is there anyone who knows whether I've missed anything during this process?
Oct 31 2018 09:07 AM
-InterfaceNameOrIndex vEthernet
Only thing I could think of is that the interface name may be wrong? Maybe try the index value instead?
Use Get-NetAdapter to display the network adaptors.
Oct 31 2018 09:20 AM