Windows 10: Best way to create W10 Pro reference computer and deploy the image

Discus and support Best way to create W10 Pro reference computer and deploy the image in Windows 10 Installation and Upgrade to solve the problem; Oops. I grabbed the wrong quote! Bah. I'll edit it to clarify my question. Oh, oh yeah. You should be able to make several different images and squish... Discussion in 'Windows 10 Installation and Upgrade' started by ahelton, Jul 12, 2016.

  1. RBunning Win User

    Best way to create W10 Pro reference computer and deploy the image


    Oh, oh yeah. You should be able to make several different images and squish them into one .wim (then deploy the different images from the different indexes on the .wim). I haven't tried doing this just yet- but I probably will.
     
    RBunning, Jul 25, 2016
    #61
  2. ahelton Win User

    Cool. I was just curious. BTW, I just completed getting my reference computer set up the way I want it to be. Now it's on to this automated batch script thingy. Is there any sort of documentation to read a little bit more about this since I'm so unfamiliar with it? My scripting prowess is severely lacking.

    I have SublimeText3, so I figure I can just use that to accomplish editing the startnet.cmd file, correct?
     
    ahelton, Jul 25, 2016
    #62
  3. ahelton Win User
    Awesome. Thanks. What's the difference between the TechNet site and this msdn.microsoft site? I've come across both while researching this whole thing and have been wondering.
     
    ahelton, Jul 25, 2016
    #63
  4. DavidY Win User

    Best way to create W10 Pro reference computer and deploy the image

    Not sure which is best/more suitable, to be honest.
    I take info anywhere I can get it!
     
    DavidY, Jul 25, 2016
    #64
  5. RBunning Win User
    >>Whatever text editor is your favorite- it just needs to be able to pop open that file and write to it. I use Notepad++, but that's just me.

    >>I don't think you'll have problems writing your script- for the most part you can literally just copy down the commands you typed in WinPE to the script (why I recommended writing them down as you went). Only a few things (like the disk formatting will need to be automated with a separate script). Refer back to my earlier posts where I posted some scripts. I *think* I put an example in there that has disk formatting, but I can't remember.

    >>I'm generally going to say- I can help with this. There is some documentation out there, and allow me a few moments to go out and see if I can't find some websites out there that I used.

    >>If you're out seeking information yourself, you might want to search 'writing a batch file' (since batch is the "scripting language"). Batch is fairly easy as it is generally just going to be what you typed in WinPE's command prompt.

    You might also want to search 'How to <whatever you want to do> in a batch file'
     
    RBunning, Jul 25, 2016
    #65
  6. ahelton Win User
    True that. From what I can tell, the TechNet site seems to be geared more towards people using Microsoft developed products and the MSDN site seems to be geared towards those actually helping develop products and services using the Microsoft platform. Naturally, there's some overlap there I suppose.
     
    ahelton, Jul 25, 2016
    #66
  7. RBunning Win User
    Technet article about mounting and modifying WinPE:
    (has a 'Add customizations ' section):

    WinPE: Mount and Customize

    Some basic stuff about writing batch files:
    How To Write A Simple Batch (.bat) File

    Diskpart in a batch:
    Diskpart Batch File
    Diskpart Scripts and Examples

    I think that should be the basics in getting started with this. It should be fairly easy to get started, you'll probably just need to play around with it or whatever your way of learning new things is.

    I can also answer questions regarding the script portion of this.
     
    RBunning, Jul 25, 2016
    #67
  8. ahelton Win User

    Best way to create W10 Pro reference computer and deploy the image

    Great. This will give me something to work on tomorrow. I typed all the commands I used in a notepad file so I could just copy and paste them when I got to this point.
     
    ahelton, Jul 25, 2016
    #68
  9. RBunning Win User
    That's a great observation. MSDN is the Microsoft Developer's Network and is geared towards people trying to create new things for existing Microsoft products. This is for people like software developers, etc...

    Technet is generally the documentation and whatnot geared towards 'IT professionals' (as Microsoft calls them). People who work somewhere and are using a Microsoft product or resource to accomplish something (more commonly in the business/ enterprise world) and need documentation or assistance in how to use that product or resource. Technet seems to be what I use the most at work when you're stuck with something.
     
    RBunning, Jul 25, 2016
    #69
  10. ahelton Win User
    In the TechNet article, it seems to indicate that it is necessary to unmount the image after modifying it, but in your explanation you say not to unmount so that it's easier to edit should that be necessary. Why, in this case, can we not unmount it and it sill work fine?
     
    ahelton, Jul 26, 2016
    #70
  11. ahelton Win User
    Random, but still somewhat relevant question: I noticed that if I try to create a new working copy of WinPE by using the appropriate Dism copype command, it won't let me. It throws than error in the Deployment and Imaging Services Command Console that says "Error: Destination directory exists: <location of WinPE"

    Does this mean that once you copy it once, the Deployment and Imaging Services stores it somewhere (like coping to a clipboard or something) so that you don't have to copy it again? Or does it only do this until I try to copy some other file and then it will overwrite it?
     
    ahelton, Jul 26, 2016
    #71
  12. RBunning Win User
    The main problem with not unmounting is file permissions to both the mount directory and the image itself. It is not all and entirely necessary to unmount- all you need to do to make sure your changes are saved is commit the changes to the image. I assume that when your doing this you wont be deleting or moving the WinPE files on your ADK computer until you're done. When you're totally done with this is when you'll want to unmount (or you can just un- and re- mount each time you modify the WinPE image). I feel its more convenient to just commit without unmounting when you're testing and repetitively modifying WinPE.

    **>I've done this both ways and have had total success with both.
     
    RBunning, Jul 26, 2016
    #72
  13. RBunning Win User

    Best way to create W10 Pro reference computer and deploy the image

    What exactly did you type?
    Also, if you want to re-copy WinPE, you'll need to create a totally new folder separate from your previous copy and copy it there.
     
    RBunning, Jul 26, 2016
    #73
  14. ahelton Win User
    I typed the following when this happened a couple of days ago:

    Code: copype amd64 C:\WinPE_amd64[/quote] I guess I would have to specify something like C:\<New Folder>\WinPE_amd64. I just assumed it would overwrite it if I gave it the same location. Guess not. *Smile
     
    ahelton, Jul 26, 2016
    #74
  15. ahelton Win User
    @RBunning

    What's the point of the delays (eg. pinging a random IP address) in the various scripts? Is it just to make sure the script has had enough time to execute and complete whatever process was called?
     
    ahelton, Jul 26, 2016
    #75
Thema:

Best way to create W10 Pro reference computer and deploy the image

Loading...
  1. Best way to create W10 Pro reference computer and deploy the image - Similar Threads - Best create W10

  2. Best way to "fit" desktop background image?

    in Windows 10 Ask Insider
    Best way to "fit" desktop background image?: Some of the images I have for desktop backgrounds (slideshow), don't fit properly, even though I select the "fit" option. As far as I can tell, Windows is only scaling based on height, so when an image has an aspect ratio that is wider than tall compared to my desktop's...
  3. Best way to create system image?

    in Windows 10 Ask Insider
    Best way to create system image?: Hello so best software to create system image?is windows 10 built in system image creator ( windows 7) is reliable?idk how reliable it is so are there any better softwares to do that?i want to create a proper image of my whole drive c because i am gonna have to restore it...
  4. Best way to make W10 lightweight?

    in Windows 10 Ask Insider
    Best way to make W10 lightweight?: I just bought a HP Stream with 32GB storage. It runs Windows 10, but I was shocked, to say the least, at the fact it only has 3GB of free storage. What can I do to make the install as light as possible? submitted by /u/thattonybo [link] [comments]...
  5. Best way to create an image for windows 10

    in Windows 10 Installation and Upgrade
    Best way to create an image for windows 10: i would like to ask for the best way to create an image for hp Elitedesk 800 G4 DM 65W i am a beginner and i will use this image for my 2000 pcs , so i need any explanation or recommendation for my issue thank you...
  6. Creating a deployment windows 10 image

    in Windows 10 Installation and Upgrade
    Creating a deployment windows 10 image: Looking to create a deployment method for windows 10 pro image https://answers.microsoft.com/en-us/windows/forum/all/creating-a-deployment-windows-10-image/0e17cc7e-fc76-461e-a0b7-a6ca36ef2da4
  7. What's the best way to virtualize Linux Mint 19 under W10 Pro?

    in Windows 10 Virtualization
    What's the best way to virtualize Linux Mint 19 under W10 Pro?: Hi all - I'm considering virtualizing Linux Mint 19 if possible under W10 Pro, so I need some ideas... Found this, but it is not exactly entertaining, lol - need an easier way. Virtualbox? Hyper-V? Code: https://forums.linuxmint.com/viewtopic.php?t=245587[/quote]...
  8. Best way Imaging HDD to a Virtual Drive

    in Windows 10 Virtualization
    Best way Imaging HDD to a Virtual Drive: Hi, I have a Win 8.1 and I do not want to upgrade to Win 10, first concernes are about the lak of all Drivers (Sound, LAN,WLAN,BT). Before the Free Upgrade ends I thought to do a Image of my Win 8.1 Partition, upgrade it and see how it goes. Now, my HDD is 1TB, there are...
  9. What's the best way to image W10 partitions for backup?

    in Windows 10 Backup and Restore
    What's the best way to image W10 partitions for backup?: Hi -- I am looking for a good imaging program that will back up individual partitions in W10 -- including the boot partition. Preferably it's free but doesn't have to be. I had previously tried Aomei Backupper with W8.1 but just had a lot of problems restoring from image...
  10. Creating/Deploying Windows 10 Image

    in Windows 10 Installation and Upgrade
    Creating/Deploying Windows 10 Image: Hi all, I'm only a part time computer geek (OK, so more than part time), but I haven't dived into Windows ICD or image deployment. I know you use ICD to customize a provisioning package or image, but are there official tools or ways of converting a working live Windows 10...