Jump to content











Photo
- - - - -

Question: fastest way to install win7 and have a multi purpose vhd/ or pe

mdt vhd pe5 usb_boot

Best Answer steve6375 , 30 March 2014 - 10:12 PM

So do you build these systems with a recovery partition (like in Tutorial 89)? 

If you only have two images then imaging is def. the way to go as testing won't take do long after each change.

What method you use is up to you.

Go to the full post


  • Please log in to reply
3 replies to this topic

#1 mcwilli4

mcwilli4
  • Members
  • 5 posts
  • Location:Sunnyvale, CA
  • Interests:powershell, mdt, cats, linux (suse and redhat & debian), buffets
  •  
    United States

Posted 30 March 2014 - 07:30 PM

I want to make something to install windows a little faster but I'm not sure what's the fastest way. I'm walking into a setup that uses a litetouch mdt2013 on pe5 to install a vanilla windows 7x64 that then loads into audit mode and from the unattend it installs either office & av (if it's a desktop) or office & av & fde encryption if it's a laptop (usually I have about 30 different models to work on, so a sql server is up that has all the models in it to query and dism injects some drivers) and then from the end of the unattend, I djoin and setup the user accounts. Problem is, is that it takes around 45 minutes - an hour to load all of that. I'd like to boot to a vhd (easier to modify or install things to versus pe, right?) then use qemu to load parted magic (for disk wiping), along with some quick diagnostic tools (seatools, prime95), use USMT on offline drives, and instead of using mdt ... maybe take snapshots of the base, inject extra drivers using dpinst.. then convert the vhd to wim and then dism it over to the internal drive. I'd probably make HTA's of the complicated-ish code.Currently my base vhd is around 17gb, (I took out MSOCache, but didn't mess with the winsxs backup) .. I'd like to use vhd_compact, but I keep getting diskpart errors. Anyway, any recommendations would help. I don't have a pxe setup or sccm. I feel like while the project sounds a little complicated once it's up it'll save me tons of time.



#2 steve6375

steve6375

    Platinum Member

  • Developer
  • 7566 posts
  • Location:UK
  • Interests:computers, programming (masm,vb6,C,vbs), photography,TV,films
  •  
    United Kingdom

Posted 30 March 2014 - 08:46 PM

What you are doing sounds pretty close to the factory install method I developed for my old company. We installed over 200,000 PCs and notebooks a year.

 

On of the things about the install was that the base Windows 7 image was installed (using ImageX from the server) and then Application install folders were added + a script that would install them all. No network connection was required during the App and driver install phase once the system had booted and started Audit mode.

 

What this meant was that if a customer had scrambled their hard disk, we could quickly re-stream a new one for the same serial number (using any one of 20 bare-bone systems we had available) which was never actually booted, and then send him the new hard disk. When he got the hard disk, it would begin the 'Setup' phase automatically and install all drivers and applications etc. that he had before. We did not need the identical hardware at the factory. This meant we could quickly re-stream drives and it was the customer who waited 1-2 hours for it to finish installing and not us!

 

If you need to join the domain though to register user accounts, this approach would not work for you - unless you script it to only run if the correct network domain can be seen on boot up

 

We used to use partition images,  but the maintenance of them was a full time job.A simple change often meant we had to then change 30+ images, plus build and test them all again to check - a nightmare.

 

Having the systems 'build themselves' in the factory also meant that the customer would not find a problem if they re-installed the OS again themselves. Many large companies use disk imaging - whilst very fast, it does not necessarily mean that the customer won't hit a problem if he tries a DVD or network install himself.

 

Thinking ahead, you have Win8 and 9 to come. Any method you devise now will need to be replicated for these new OS's too. The advantage with a 'modular' install is that you only need to change the base OS (from Win7 to Win 8) and the 'application modules' should install themselves as they did in Win7.

 

So I would ask why installation+test time is so important to you, are these known good, new systems or are you building new systems from parts or what? If the process was automated, does it matter if the system is sitting on a shelf for 8 hours testing and installing itself?

 

You need to think about UEFI and GPT and even bitlocker or truecrypt compatibility too. Maybe not now, but maybe next year... Using Diskpart and ImageX/DISM in your process gives you a future proof path (as long as you stick with Windows). 

 

There are issues using DISM/ImageX to replicate a fully installed Windows OS. MS do not recommend it and you need to watch it does not break symbolic links. DISM\ImageX should only be used on a base sysprepped Windows image (i.e. OS+updates+SPacks+drivers but no apps).

 

I have found that shortcuts like injecting drivers can lead to problems too - you can find certain hardware combinations don't work or the chip model/revision may change next week and the driver you inject is actually now using the wrong INF file.

 

It really depends on how many systems you are installing a day, why does it need to be quick, how important is it that the systems are fault free (testing 8GB of RAM takes hours alone), how many different hardware and software combinations you have and what will happen in the future.

 

Any installation system you pick needs to be made as simple as possible  (and I don't mean using complicated scripts, I mean using a simple scripting language and very small scripts for each stage!). If you are the only one that understands your system, then that is a real risk to your company and when you leave the company, your nice fancy system will probably be discarded as no one can understand it or get it to work!

HTH

Steve

 

 

 

 

 

 

 

 

 

 



#3 mcwilli4

mcwilli4
  • Members
  • 5 posts
  • Location:Sunnyvale, CA
  • Interests:powershell, mdt, cats, linux (suse and redhat & debian), buffets
  •  
    United States

Posted 30 March 2014 - 10:03 PM

The speed issue is usually, uh oh, McAfee FDE started decrypting but you rebooted and ran chkdsk and 1/2 of sys32 is in found.001 as well as your user profiles. So for a break-fix sort of way I'd like to be able to reimage faster. Currently I've been killing uefi and sticking to mbr and installing Checkpoint FDE (no more McAfee!!), for Windows 7x64 .. I think I'm stuck on it until 2020 (when extended support stops). I have maybe 1200 folks I have to support, with an additional err... 300 in satellite offices. I can djoin offline if I write it into the script, but usually the folks I'm working with have a hard enough time finding the Start button on the screen..So I usually don't let them go through any OOBE process. If I did want them to.. I guess I could set it up in all the customsettings and oobesettings files. I'm getting tempted to just inject a bunch of drivers into a vhd and try to use the MS Complete System Image restore to perform bare-metal restores.Not sure if that'll work, but I'd just have two images to maintain.. that'd be simpler, maybe..Haven't seen the driver issue yet... well not on Windows (aside from 4k drives, which is an easy fix). I have SUSE systems that won't detect my e1000e, but I think I'll be able to patch the initrd .. just don't have the time/ usually I don't have to worry about the linux systems.

 

Oh, I love rmprepusb. I use it to make freedos usb's for bios updates.I didn't know linux images on usb needed to be contiguous until I read about it on your site. 



#4 steve6375

steve6375

    Platinum Member

  • Developer
  • 7566 posts
  • Location:UK
  • Interests:computers, programming (masm,vb6,C,vbs), photography,TV,films
  •  
    United Kingdom

Posted 30 March 2014 - 10:12 PM   Best Answer

So do you build these systems with a recovery partition (like in Tutorial 89)? 

If you only have two images then imaging is def. the way to go as testing won't take do long after each change.

What method you use is up to you.






0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users