Tuesday, November 08, 2016

Bootable Windows Server 2016 UEFI ISO

This is an update of my http://hiltont.blogspot.com.au/2013/09/bootable-windows-server-2012-iso.html post.

Back in the Windows F^HVista/7 and Server 2008/2008R2 days, it was possible to install an operating system instance without needing to input a key during the installation process.  You could use various methods to make a bootable OS Install USB key then simply remove the \sources\ei.cfg file and you'd be able to choose between all the versions of the OS inside the boot.wim file - this was very handy!

Microsoft has made a change since Windows Server 2012/Windows 8 whereby they don't allow you to install Windows without the use of a Product Key.  There is no ei.cfg file in the \sources folder and you are forced to input a Product Key during installation.

Well, there's a simple way to work around this to not only create a bootable USB Key that doesn't need a Product Key during install (and lets you choose among the multiple OS variants in the boot.wim file), but also to re-create a bootable ISO image so that you can then mount this as an installation media source in Hyper-V!

The steps to achieve these goals are:
  • First, you'll need to download a Windows Server 2012, 2012R2 or 2016 ISO image or use the VL ISO image you already have there.  Then you'll need to either extract this image to a folder, or better still, just run the (portable) Rufus application to make yourself a bootable USB key that allows for quite quick OS installs.
  • Now, you'll need to copy the following into a new plain text file called ei.cfg in the \sources folder of the USB key:
    [Channel]
    Retail
    [VL]
    1
  • If you only need the bootable USB key, you can stop here, however if you now wish to recreate the ISO image file so that you can then use this modified image in a Hyper-V environment...
  • Download and install the latest Windows Assessment and Deployment Kit (ADK) (the latest at time of writing this post was for Windows 10 Build 1607).  The installer itself is around 1.7MB and the only component you need to install for this process is Deployment Tools, which is around 68MB
  • Now, to create an ISO image that will work with BIOS-based systems, assuming the USB Key we just made is available at U: and you're creating the ISO image on D:
    • Run the Deployment and Imaging Tools Environment (Command Prompt) as Administrator, change to the "amd64\oscdimg" folder and then type the following:
    • oscdimg.exe –l<disc_label> -m -u2 –b<path_of_bootable_img_file> <path_of_installation_source> <path_where_ISO_is_to_be_created>
    • Please see this link for an explanation of the oscdimg.exe command-line options
    • Example:
      oscdimg.exe -lSVR2016BIOS -m -u2 -b"U:\boot\etfsboot.com" "U:\" "D:\Svr2016BIOS.iso"
  • If you wish to create an ISO image that will work on both BIOS-based and UEFI-based systems such as a Hyper-V 2012 R2 and 2016 Gen 2 guest instance, assuming the USB Key we just made is available at U: and you're creating the ISO image on D: (this uses a modified version of the instructions found here):
    • Run the Deployment and Imaging Tools Environment (Command Prompt) as Administrator, change to the "amd64\oscdimg" folder and then type the following:
    • oscdimg -l2016UEFI -m -o -u2 -udfver102 -bootdata:2#p0,e,b"U:\boot\etfsboot.com"#pEF,e,b"U:\efi\microsoft\boot\efisys.bin" "U:\" "D:\2016-ei-UEFI.iso"
    • Please see the original post (here) for more information on the command-line options used.
  • Now, you can burn this ISO image to a DVD or simply use it as the source for a Hyper-V guest and because it contains both the BIOS and UEFI boot data, it can be used to install either a Gen 1 (BIOS) or Gen 2 (UEFI) Hyper-V Guest. :)

Enjoy!


Regards,

The Outspoken Wookie

Thursday, October 06, 2016

Network Stack Reset - Access Denied

A number of times I have seen network stack corruption on a Windows desktop and when trying to reset the stack, an "access denied" error message is given and the stack reset fails.

Here's how to fix this.

  1. Run RegEdit and provide approval/authentication at the UAC prompt.
  2. Navigate to HKLM\SYSTEM\CurrentControlSet\Control\NSI\{eb004a00-9b1a-11d4-9123-0050047759bc}\26
  3. Right click on the "26" key and choose "Permissions"
  4. Click on "Everyone" and then "Full Control" under "Allow", Apply, OK and exit from RegEdit
  5. In an elevated command prompt, type "netsh int ip reset"
  6. Check that all steps reset successfully
  7. Reboot and all will be good with the world(1)

(1) Well, with this teensy little part of it at least...


Regards,

The Outspoken Wookie

Friday, April 22, 2016

Microsoft Action Pack Subscription Promo Codes

Does anyone need to renew their MAPS (Microsoft Action Pack Subscription)? If so, when you go to pay, use the Promo Code "WELCOME2ACTIONPACK" for a 50% discount and then once you have entered this one, enter "GROWYOURBIZWITHMAPS" for a further 50% discount - that brought it from $490 ex tax down to $134.20 inc tax! :)

Regards,

The Outspoken Wookie

Thursday, March 03, 2016

Mar 2016 Update to .NET Redistributables

I have just updated my http://hiltont.blogspot.com.au/2008/01/net-redistributables.html post with links to the latest redistributables for dotNET 4.6 and 4.6.1.  :)

Regards,

The Outspoken Wookie