Link to home
Start Free TrialLog in
Avatar of howmad2
howmad2Flag for United States of America

asked on

Hyper-V: Install of 2012 Std, no keyboard access.

I have a 2012 R2 Std Hyper-V host and I am trying to install a 2012 Std VM from an ISO.   During the installation I have no keyboard access in the VM....how do I work around this?
Avatar of Cliff Galiher
Cliff Galiher
Flag of United States of America image

Are you RDPing into the host or are you sitting at a console? Did you install other roles or software on the host? Is it a gen1 or gen2 VM? These are the first questions that come to mind.

This is not a known issue nor is it normal behavior, so *something* abnormal is going on. But details are helpful.
ASKER CERTIFIED SOLUTION
Avatar of Svet Paperov
Svet Paperov
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of howmad2

ASKER

I ended up taking all defaults.  Not using the mouse.  And RDPing to customize the install.
Avatar of Omar Santos
Omar Santos

How to patch Windows PE ISO image for Windows Server 2008-2012 UEFI platforms
Server 2012 intergation services manual image patch
1- Install Windows Assessment and Deployment Kit for Windows 8.1
2- create c:\mount-1 directory
c:\>md c:\mount-1
3- copy c:\mount
c:\>copy d:\osimage.iso c:\mount-1
4- Mount-DiskImage -ImagePath
c:\>Mount-DiskImage -ImagePath c:\mount-1\osimage.iso
5- create directory for image extraction
c:\>md c:\mount-1\extract
6- Copy files from mountpoint
c:\> Xcopy D:\*.* c:\mount-1\extract /s
7- Use the path ”C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" for the dism.exe file not the one built-in in windows
8- This will show you the content and the index images contained in the boot.win. We will be using index:2.
"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /get-imageinfo /imagefile:C:\winPE\extract\sources\boot.wim
9- Prepare image to add hyper-v integration services.
"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /mount-image /imagefile:C:\winPE\extract\sources\boot.wim /index:2 /mountdir:c:\mount-1
10- Add package to mounted point.
"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /image:c:\mount-1 /add-package /packagepath:C:\winPE\windows6.2-hypervintegrationservices-x64.cab
11- Unmount image to get ready for iso creation.
"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" /unmount-image /mountdir:c:\mount-1 /commit
12- Create ISO image for UEFI platforms.
"C:\Program Files (x86)\Windows Kits\8.0\Assessment and Deployment Kit\Deployment Tools\amd64\oscdimg\oscdimg.exe” -m -o -u2 -udfver102 -bootdata:2#p0,e,b”c:\mount-1\extract\boot\etfsboot.com"#pEF,e,b”c:\mount-1\extract\efi\microsoft\boot\efisys.bin" “c:\mount-1\extract" c:\winPE\server2012r2patched.iso