Skip to main content

Tip when trying to install server 2012 from Win PE

Instructions on how to create a Win PE boot USB drive. 

Creating a Win PE boot disk requires the Windows Assessment and Deployment Kit (Windows ADK)

Information on how to create the USB drive is available from https://technet.microsoft.com/en-au/library/hh825109.aspx

The following features from the ADK need to be installed:
  • Deployment Tools: includes the Deployment and Imaging Tools Environment.
  • Windows Preinstallation Environment : includes the files used to install Windows PE.

  1. Start the Deployment and Imaging Tools Environment as an administrator.
  2. Create a working copy of the Windows PE files. Specify either x86, amd64, or arm:
    copype amd64 C:\WinPE_amd64
    
  3. Install Windows PE to the USB flash drive, specifying the drive letter:
    MakeWinPEMedia /UFD C:\WinPE_amd64 F:

The guide at the link above also includes trouble shooting tips.


Storing Windows Images on the Windows PE Drive

  • Typically you won't be able to store or capture Windows images on a Windows PE USB flash drive.
    Most USB flash drives support only a single drive partition. The MakeWinPEMedia command formats the drive as FAT32, which supports booting both BIOS-based and UEFI-based PCs. This file format only supports file sizes up to 4 GB.
  • For external USB hard drives, you can create a separate NTFS partition that can handle larger file sizes:
    diskpart
      list disk
      select <disk number>
      clean
      rem === Create the Windows PE partition. ===
      create partition primary size=2000
      format quick fs=fat32 label="Windows PE"
      assign letter=P
      active
      rem === Create a data partition. ===
      create partition primary
      format fs=ntfs quick label="Other files"
      assign letter=O
      list vol
      exit
    
    MakeWinPEMedia /UFD C:\WinPE_amd64 P:
    
    

Troubleshooting

  • If the copype command isn't recognized, make sure you're running the command from the Deployment and Imaging Tools Environment, which is part of the Windows ADK.
  • If Windows PE doesn't appear, try the following workarounds, rebooting the PC each time:
    • To boot a PC that supports UEFI mode, in the firmware boot menus, try manually selecting the boot files: \EFI\BOOT\BOOTX64.EFI.
    • Try a different USB port. Avoid hubs or cables.
    • Avoid USB 3.0 ports if the firmware doesn't contain native support for USB 3.0.
    • Clean the USB flash drive, and then reinstall Windows PE. This can help remove extra boot partitions or other boot software.
      diskpart
        list disk
        select disk <disk number>
        clean
        create partition primary
        format quick fs=fat32 label="Windows PE"
        assign letter="F"
        exit
      
      MakeWinPEMedia /UFD C:\winpe_amd64 F:
      
    • Try booting Windows PE from a DVD instead. Create an ISO file that you can burn onto a DVD:

      MakeWinPEMedia /ISO C:\winpe_amd64 c:\winpe_amd64\winpe.iso
      
      In File Explorer, navigate to C:\winpe_amd64, right-click winpe.iso, and select Burn to disc. Follow the prompts to create a DVD.
    • If your PC requires storage or video drivers to boot, try adding those same drivers to the Windows PE image. For more info, see WinPE: Mount and Customize.
    • Update the firmware of the PC to the latest version.
  • If the PC doesn't connect to network locations, see WinPE Network Drivers: Initializing and adding drivers.
  • WinPE should have all the drivers for a Server 2012 installation 
  • Check out "Source Image" , for an answer file, you may need to specify install.wim,

Comments

Popular posts from this blog

Changing Password - in AD, when you're changing one of your other accounts, not the logged in account

  Use Powershell  Step 1 - Put your existing password in a Secure String  $oldPassword = Read-Host "Your old Password" -AsSecureString  Step 2 - Start the password change set-AdAccountPassword -Identity paul-admin -OldPassword  $oldPassword Step 3 - Enter your new password You'll be prompted for your new password... Please enter the desired password for 'CN=xxxx,OU=Admin Users,OU=Users,OU=Privileged,DC=CAIS,DC=com,DC=edu,DC=au' Password: ************************** Repeat Password: **************************

Tip to create an underline on a heading shorter than the heading itself

You can use a pseudo element with :before (or :after ): h1 { font - weight : 300 ; display : inline - block ; padding - bottom : 5px ; position : relative ; } h1 : before { content : "" ; position : absolute ; width : 50 %; height : 1px ; bottom : 0 ; left : 25 %; border - bottom : 1px solid red ; } http://jsfiddle.net/9e27b/ This is another solution that centers the heading, the problem here is that the underline gets shorter as the column gets shorter. h2 {   display: inline-block;   padding-bottom: 15px;   position: relative;   width: 100% ;   text-align: center; } h2:before{     content: "";     position: absolute;     width: 8%;     height: 1px;     bottom: 0;     left: 46%;     border-bottom: 1px solid red; }

The web.config no extension mime problem Lets Encrypt on IIS/Windows

  Tip when using LetsEncrypt in Windows - Feature Requests - Let's Encrypt Community Support In a paragraph, just use the web.config file to set the mime type, eg...  After trying to figure out why my Lets Encrypt failed to generate in Windows, and discovering that it's the no extension mime type problem, I wondered whether certbot could fill in the missing gap. All that is needed is the following web.config file to be placed in the same directory as the challenge <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <mimeMap fileExtension="." mimeType="text/xml" /> </staticContent> </system.webServer> </configuration> Because there's no mime type for files without an extension on IIS, IIS sends back a 404 when verification happens. The web.config file above sets the mime type. After I created the .well-known