• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Windows install ISO FOG server 1.3

    Scheduled Pinned Locked Moved
    FOG Problems
    5
    28
    16.6k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Q
      Quazz Moderator
      last edited by

      I’ll post a script to make your own WinPE on Monday. It does require you to have Windows AIK, but you can just download that from Microsoft.

      It allows you to automatically map your network drive and even launch setup with arguments. It all depends on what kind of setup you want of course, but hopefully you’ll at least get some insight in how to approach the situation with it.

      1 Reply Last reply Reply Quote 1
      • R
        raice @Wayne Workman
        last edited by

        @Wayne-Workman @Quazz already on it. Mounted the disk with DISM

        dism /Mount-Image /ImageFile:“c:\temp\winpe\x86_64\media\sources\boot.wim” /index:1 /MountDir:“c:\temp\winpe\x86_64\mount”

        navigated to Windows\System32\startnet.cmd

        It already contains wpeinit. Do not change that line, but add your code after that.
        Mine so far is
        net use z: \x.x.x.x\isos\win7
        net use x: \x.x.x.x\isos\win8
        net use y: \x.x.x.x\isos\win10
        menu.bat
        now creating a menu in a separate batch file
        So after that I created a menu.bat in the system32 folder with
        http://www.sevenforums.com/tutorials/78083-batch-files-create-menu-execute-commands.html
        to start the setup of different windows versions. Now I only have one PE box and 3 Windows installs. The next step is to automate the installations.

        Q Wayne WorkmanW 2 Replies Last reply Reply Quote 1
        • Q
          Quazz Moderator @raice
          last edited by

          @raice Don’t use x: to mount a network drive as WinPE will mount itself on X: on boot already!

          1 Reply Last reply Reply Quote 0
          • aruhunoA
            aruhuno
            last edited by

            I’m using that with FOG 1.2.0:

            :WS2012R2
            sanboot --no-describe --drive 0x81 ${boot_url}discimg/WS2012R2.iso
            goto MENU
            

            "Parce que la connaissance appartient à tout le monde", inios.fr

            1 Reply Last reply Reply Quote 0
            • Wayne WorkmanW
              Wayne Workman @raice
              last edited by

              @raice said:

              The next step is to automate the installations.

              I’d rather my installations not be automated lol. I WANT to do it manually, then I’ll take an image with FOG and blast it out to 500 computers in an automated fashion… 😉

              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
              Daily Clean Installation Results:
              https://fogtesting.fogproject.us/
              FOG Reporting:
              https://fog-external-reporting-results.fogproject.us/

              george1421G 1 Reply Last reply Reply Quote 0
              • george1421G
                george1421 Moderator @Wayne Workman
                last edited by george1421

                @Wayne-Workman said:

                I’d rather my installations not be automated lol. I WANT to do it manually, then I’ll take an image with FOG and blast it out to 500 computers in an automated fashion…

                Really? And out of those 500 systems, how many are the same make and model? Lets make it a bit harder for our selves like, lets install the french version of MS Windows and then load a US English mui so the Americans can use the computer. 😑

                While I understand what the OP is trying to accomplish there are better/easier ways than using FOG to hand out the iso images (thinking a multiboot flash drive would be less complex).

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                Wayne WorkmanW 1 Reply Last reply Reply Quote 0
                • Wayne WorkmanW
                  Wayne Workman @george1421
                  last edited by

                  @george1421 I make an image per model. 😉 and our 1Gbps network is far faster than USB 2.0 or optical disk. Plus, it’s handy. I will be able to load an alternative OS anywhere at any moment instead of carrying around flash drives.

                  Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                  Daily Clean Installation Results:
                  https://fogtesting.fogproject.us/
                  FOG Reporting:
                  https://fog-external-reporting-results.fogproject.us/

                  R 1 Reply Last reply Reply Quote 0
                  • R
                    raice @Wayne Workman
                    last edited by

                    @Wayne-Workman in out environment that’s nearly impossible. We sell new and second hand laptops. So we got different models every day. Now we can just start the installation and sysprep it afterwards.

                    Do you want the documentation or did you write your own now? I almost finished and only need to translate it.

                    Wayne WorkmanW 1 Reply Last reply Reply Quote 0
                    • Q
                      Quazz Moderator
                      last edited by Quazz

                      @echo off
                      
                      rem The fileserver IP
                      set FILESERVER=192.168.1.155
                      
                      rem Share on the fileserver.
                      set SHARE=INSTALLERS\ISOFILES\0-WINPE
                      
                      rem Username for the share
                      set SHAREUSER=root
                      
                      rem Password for the share
                      set SHAREPASS=root
                      
                      rem amd64 or x86
                      set ARCH=amd64
                      
                      rem Path to hold working files. Needs about 500MB of free space.
                      set PEPATH="c:\winpe_%ARCH%"
                      
                      rem ##########################################################
                      rem     Don't edit anything below here
                      rem ##########################################################
                       
                      echo Creating the PE image
                      call copype.cmd %ARCH% %PEPATH% > NUL
                       
                      echo Mounting the image
                      dism /Mount-Wim /WimFile:%PEPATH%\media\sources\boot.wim /index:1 /MountDir:%PEPATH%\mount /quiet
                       
                      echo Adding commands to the startup script in PE
                      echo. >> %PEPATH%\mount\windows\system32\startnet.cmd
                      echo ping %FILESERVER% >> %PEPATH%\mount\windows\system32\startnet.cmd
                      echo net use z: \\%FILESERVER%\%SHARE% %SHAREPASS% /u:%FILESERVER%\%SHAREUSER% >> %PEPATH%\mount\windows\system32\startnet.cmd
                      echo z: >> %PEPATH%\mount\windows\system32\startnet.cmd
                      echo z:\64.bat >> %PEPATH%\mount\windows\system32\startnet.cmd
                       
                      echo Creating the pxeboot directory
                      mkdir %PEPATH%\pxeboot > NUL
                      mkdir %PEPATH%\pxeboot\Fonts > NUL
                      copy /y %PEPATH%\mount\windows\boot\Fonts\*.* %PEPATH%\pxeboot\Fonts\ > NUL
                      copy /y "%WinPERoot%\%ARCH%\Media\Boot\boot.sdi" %PEPATH%\pxeboot\ > NUL
                      copy /y "%WinPERoot%\%ARCH%\Media\Boot\BCD" %PEPATH%\pxeboot\ > NUL
                       
                      echo Unmounting the image
                      dism /unmount-Wim /MountDir:%PEPATH%\mount /Commit /quiet
                       
                      echo Optimizing the image
                      imagex /EXPORT %PEPATH%\media\sources\boot.wim 1 %PEPATH%\pxeboot\boot.wim > NUL
                       
                       
                      echo.
                      echo All the files you need for your PXE server are in: %PEPATH%\pxeboot\
                      

                      This script needs to be called from the Deployment and Images Tool Environment command prompt.

                      I based myself on http://www.wcooke.org/wiki/Installing_Windows_using_PXELINUX but modified it since certain things didn’t work (it would create a corrupt BCD when there’s a perfectly fine working one included with WinPE) and other things were unnecessary.

                      If you make changes to the script and call it again make sure to delete the target directory first or your startnet.cmd will get messed up!

                      edit: Added ping command to give network drivers time to load before attempting to mount the network location.

                      1 Reply Last reply Reply Quote 1
                      • Wayne WorkmanW
                        Wayne Workman @raice
                        last edited by

                        @raice Your instructions would be greatly appreciated, the more the better! We can compare notes and come up with the best solution!

                        And for your environment, yes, being able to install windows from the network on many different models of PCs is the best option for you! I imagine you are a fan of Fog’s “Quick Image” feature that doesn’t require a registered computer, eh?

                        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                        Daily Clean Installation Results:
                        https://fogtesting.fogproject.us/
                        FOG Reporting:
                        https://fog-external-reporting-results.fogproject.us/

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 1 / 2
                        • First post
                          Last post

                        136

                        Online

                        12.1k

                        Users

                        17.3k

                        Topics

                        155.3k

                        Posts
                        Copyright © 2012-2024 FOG Project