• Windows 10 UEFI and Fast Startup

    Unsolved
    6
    0 Votes
    6 Posts
    3k Views
    N

    We noticed the same thing, looks like in the “specialize” phase Windows setup adds itself as the first entry. I didn’t see any option in the unattend.xml file to disable or alter this, and we didn’t want to use a Dell utility since we have other hardware, so we put this in the custom script we have running at the end of the “specialize” phase:

    bcdedit /set {fwbootmgr} displayorder {bootmgr} /addlast

    This moves the active Windows boot manager (which was just added and is referenced by {bootmgr}) to the end of the list. The {fwbootmgr} apparently references the system UEFI firmware. If you have more boot options you want in a specific order, you might be better off trying to move the PXE boot option to the top. Also, since you mentioned Bitlocker, I’ve seen posts indicating that you need to have the Windows Boot Manager first if you’re using Bitlocker, so you might not be able to do this anyway.

    Since Windows setup will just keep adding more boot managers to the UEFI list every time you image (when it goes through setup), we also added this block to our script to remove old entries:

    for /F "tokens=2 delims={}" %%i in ('bcdedit.exe /enum {fwbootmgr}') do ( if "%%i" NEQ "fwbootmgr" ( if "%%i" NEQ "bootmgr" ( echo Checking %%i for old Windows boot manager... bcdedit.exe /enum {%%i} | find /C "Windows Boot Manager" >nul if errorlevel 1 ( echo Not old Windows UEFI boot manager. bcdedit.exe /enum {%%i} | find "description" ) else ( echo Found Windows UEFI boot manager from previous installation, removing... bcdedit.exe /enum {%%i} bcdedit.exe /delete {%%i} ) ) ) )

    This will enumerate the UEFI boot list for Windows boot managers excluding the active one, and remove them, so you don’t keep adding an entry every time you image the computer. I would recommend testing this first if you’re going to use it, I have only tested it a couple times 🙂

  • Problems with Dell 3060 SFF Desktop PCs UEFI PXE boot with FOGv1.2

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    D

    @george1421 -Thanks for the quick reply. I’ll probably have to virtualize it, but open some space, as our VMWare environment is taxing on space. 🙂 No worries, red-hat enterprise has always been a good-solid OS.

  • Boot emtpy VM to PXE for deployment

    Unsolved
    4
    0 Votes
    4 Posts
    783 Views
    Q

    What VM software are you using?

  • A couple images won't shrink/resize on capture..

    Solved
    5
    0 Votes
    5 Posts
    784 Views
    G

    @george1421

    I consider it resolved. Thanks for chiming in.

  • 0 Votes
    5 Posts
    1k Views
    george1421G

    The tutorials will work at least for 2008 and 2012 servers. I was able to do it as a proof of concept. I could try with Windows 2016 server but I’ve traveled down that path before so there isn’t the motivation at the moment to do it again. When you get it setup, you will want to set the Windows storage node as the master node in your configuration. Because of changes in the FOG Project code, you can’t use a non-fog server as a storage node because image replication will happen over and over again because there is missing programs on the windows server.

    Just be aware; if you set the windows server as the master node then you can capture and deploy directly from the windows storage server. Replication to other storage node servers will not work.

    Also be aware; that while this configuration might work it is not a supported configuration by the FOG developers. So getting code tweaks to the programming to make a windows storage node configuration more robust will probably not happen.

  • WIN 10 DVD Drive Issues After Imaging

    Unsolved
    4
    0 Votes
    4 Posts
    618 Views
    S

    @Joe-Gill Great to hear you are making progress here! Definitely seems like one of the more difficult ones to figure out. Keep it up! 🙂

  • Multiple Windows Boot Manager using UEFI

    Unsolved
    12
    0 Votes
    12 Posts
    5k Views
    F

    You were correct, using DCC is not an option. I did find that by using the CMD prompt and entering

    bcdedit.exe /enum

    it will display your working Windows Boot Manager but not the extras. However, if you use

    bcdedit.exe /enum firmware

    it will display all the different WBMs, even the faulty ones.
    I am currently trying to build a script that will remove the false entries.

  • TFTP open timeout

    4
    0 Votes
    4 Posts
    895 Views
    S

    @mstumpo Please open your own topic as your setup and the issue is different to the one initially posted.

    Tell us your setup, FOG version, OS and so on.

  • How to Inject Drivers to Windows 10 Image

    Unsolved
    2
    0 Votes
    2 Posts
    3k Views
    T

    Hi Ahmed.

    There is already some information in this thread here:

    https://forums.fogproject.org/topic/11126/using-fog-postinstall-scripts-for-windows-driver-injection-2017-ed

    Maybe that will get you started. 🙂

  • Configure Windows after deploy

    Unsolved
    4
    0 Votes
    4 Posts
    898 Views
    A

    Update :

    Before sysprep, i created a temp_user.

    It’s working but the computer does not automatically join the domain.

    The service is starting well automatically.

  • Need a little help with MDT 2013 and Lenovo setup

    Moved
    1
    0 Votes
    1 Posts
    321 Views
    No one has replied
  • A deployed image does not boot - No Windows Boot Manager

    Unsolved
    4
    0 Votes
    4 Posts
    806 Views
    E

    Does somebody have any suggestions for me?

  • Windows 10 Hostnamechanger

    Solved
    2
    0 Votes
    2 Posts
    505 Views
    S

    Okay, got it working by checking the box Name Change/AD Join Forced reboot. It never fails that I can look at something for 2 hours and soon as I finally break down and ask everyone, I find the problem. 🙂

    Thanks.
    Scott

  • Upload image failed

    Solved
    4
    0 Votes
    4 Posts
    856 Views
    A

    Problem solved, perfect 🙂

  • 0 Votes
    1 Posts
    347 Views
    No one has replied
  • Writing Image Taken From RAID 1 to Non-RAID PC

    2
    0 Votes
    2 Posts
    353 Views
    S

    @amtiskaw This is not a FOG issue. It depends on so many things and can go wrong easily. Software or hardware RAID controller, model, driver; UEFI or legacy BIOS; …

    There is no simple answer to this and I won’t be able to help with this.

  • Customized image of Windows10 1803 RS4, partition resize issue

    Solved
    13
    0 Votes
    13 Posts
    2k Views
    R

    Finally, I had to reinstall FOG and everything was fixed.

    Thanks guys for the answers.

  • Imposible to boot from disk (black screen)

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    george1421G

    @aksl well you can edit the refind.conf file in /var/www/html/fog/service/ipxe/refind.conf and change the line for scanfor to look like this

    scanfor internal

    Save the config file and then attempt booting it again.

  • Dell XPS 15 9570 can't boot to fog USB disk

    3
    0 Votes
    3 Posts
    1k Views
    S

    @bricktop135 At which stage do you get the cursor on the black screen? Can take a series of pictures or video so we see the whole boot process?

  • Windows 10 version 1607 resize issue

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    george1421G

    @andrewg78 I’m still thinking its bit locker that is causing your issue. When you use single disk not resizable then clone the image, you are not changing the geometry of the disk. Please read through this post and see if running the commands to disable bitlocker makes single disk resizable work better. https://forums.fogproject.org/topic/10824/image-upload-deploy-taking-a-long-time/43

    Looking over the entire thread just for your info.

138

Online

12.3k

Users

17.4k

Topics

155.6k

Posts