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

    Some laptops cannot get past "Starting Windows"

    Scheduled Pinned Locked Moved Unsolved
    Windows Problems
    7
    22
    6.8k
    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.
    • george1421G
      george1421 Moderator @mark.dangelo
      last edited by

      @mark.dangelo how do you create your master image?

      Quazz brings up a good point about AV. Are you installing it in your master image or post imaging?

      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!

      M 1 Reply Last reply Reply Quote 0
      • sarge_212S
        sarge_212 @george1421
        last edited by

        @george1421 thank you, I will certainly look into that on the Dell website, and post my findings. Appreciate it.

        1 Reply Last reply Reply Quote 0
        • F
          FoSTerCyber
          last edited by

          I have ran into this before. The problem was that some of the settings in the BIOS were not the same as when the image was initially pulled. My issue was that the SATA settings on one was set to RAID and the other laptop was either set to ATA or AHCI. Hope this helps you.

          M 1 Reply Last reply Reply Quote 0
          • sarge_212S
            sarge_212
            last edited by

            Changing from RAID on in BIOS to AHCI fixed this issue for me. Thanks so much for the tip @FoSTerCyber !!

            1 Reply Last reply Reply Quote 2
            • M
              mark.dangelo @Quazz
              last edited by

              @Quazz Yes, we use the generalize switch. @george1421 No, we install the AV post imaging.

              1 Reply Last reply Reply Quote 0
              • M
                mark.dangelo @FoSTerCyber
                last edited by

                @FoSTerCyber said in Some laptops cannot get past "Starting Windows":

                have ran into this before. The problem was that some of the settings in the BIOS were not the same as when the image was initially pulled. My issue was that the SATA settings on one was set to RAID and the other laptop was either set to ATA or AHCI. Hope this helps you.

                Thanks for the suggestion! We create the image with-in VirtualBox, but have tried both settings and we are not configuring it for RAID.

                1 Reply Last reply Reply Quote 0
                • AvaryanA
                  Avaryan
                  last edited by Avaryan

                  Just for reference. I have Dell OptiPlex 7040’s and they’ve worked fine from FOG version 1.2.0 and higher.

                  I believe I may have had to change some BIOS settings before deploying to them the first time.

                  edit: Imaged 7040 with both Windows 7 and Windows 10. I’ll set one up and check the BIOS settings.
                  edit2: Here are the relevant BIOS settings on the OptiPlex 7040 that I think I changed (like a year ago).

                  Under System Configuration:

                  • Integrated NIC
                    – Uncheck “Enable UEFI Network Stack” (this might be default)
                    – Select “Enabled w/PXE”
                  • SATA Operation
                    – Select “RAID ON” (Default was either Disabled or AHCI)

                  I think that’s all I changed.

                  1 Reply Last reply Reply Quote 0
                  • M
                    mark.dangelo @george1421
                    last edited by

                    @george1421 I am not sure if I responded to your question, but we are creating a master 7 windows image on Virtual Box. Then running sysprep. We have no unattend or setupcomplete.cmd currently in place. I am leaning towards the problem being with Mass storage drivers or something driver related considering the fact that we have no driver install set-up it is currently all done after via a CD. Would this be helpful? Or do you guys have any other driver tutorials that would point us in the right direction?

                    Thanks!

                    george1421G 1 Reply Last reply Reply Quote 0
                    • george1421G
                      george1421 Moderator @mark.dangelo
                      last edited by

                      @mark.dangelo That wiki is a bit old but still usable.

                      At my work we also develop our golden images on a vm, sysprep them and then capture with FOG. From there we use fog post install scripts to copy the appropriate drivers to the target computer during imaging. We previously instruct windows OOBE to look for drivers in a specific location when OOBE is running so the drivers get installed at that time. The system works pretty well. We support about 14 different hardware models in our fleet of computers (all Dell BTW).

                      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!

                      M 1 Reply Last reply Reply Quote 0
                      • M
                        mark.dangelo @george1421
                        last edited by

                        @george1421 said in Some laptops cannot get past "Starting Windows":

                        we also develop our golden images on a vm, sysprep them and then capture with FOG. From there we use fog post install scripts to copy the appropriate drivers to the target computer during imaging. We previously instruct windows OOBE to look for drivers in a specific location when OOBE is running so the drivers get installed at that time. The system works pretty well. We support about 14 different hardware models in our fleet of computers (all Dell BTW).

                        Thanks for the info! That is what we would like to do as well. Where do you store the drivers folder and do you specify this location in the unattend.xml script? Could you possibly send a step-by-step procedure for doing this, or perhaps some more information on it? You can PM as well. That would be awesome!

                        Thanks!

                        george1421G 1 Reply Last reply Reply Quote 0
                        • george1421G
                          george1421 Moderator @mark.dangelo
                          last edited by

                          @mark.dangelo said in Some laptops cannot get past "Starting Windows":

                          Where do you store the drivers folder and do you specify this location in the unattend.xml script?

                          Sorry for the delay this one slipped through the cracks.

                          The driver directory can be stored anywhere on the target computer that windows can reach during the OOBE process. I have seen some place the drivers in c:\driver, c:\windows\drivers, c:\windows\drv

                          Then in your unattend.xml file you need to add this section

                              <settings pass="offlineServicing">
                                  <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                                      <DriverPaths>
                                          <PathAndCredentials wcm:action="add" wcm:keyValue="1">
                                              <Path>C:\Windows\DRV</Path>
                                          </PathAndCredentials>
                                      </DriverPaths>
                                  </component>
                              </settings>
                          

                          ref: https://forums.fogproject.org/topic/8889/fog-post-install-script-for-win-driver-injection/4

                          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!

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

                          206

                          Online

                          12.0k

                          Users

                          17.3k

                          Topics

                          155.2k

                          Posts
                          Copyright © 2012-2024 FOG Project