• Boot Option Issue (PXE booting)

    Solved
    10
    0 Votes
    10 Posts
    3k Views
    D

    @Gilberto-Ferraz said in Boot Option Issue (PXE booting):

    Hello @Brendan-Clemente!
    I have the same problem I tried to solve with the suggestion of @george1421 using Dell CCTK tool kit. But I could not. Are all your machines from Dell for this tool to work? Do you have any tutorials to follow?

    Tools for working with BIOS configuration options are both manufacturer dependent and model dependent. Most manufacturers are moving toward some kind of wmi-acpi support, but each manufacturer has their own timetable for switching and that switch requires a new tool. You will likely want to consult the support pages for the manufacturer(s) of your machines as there is no universal solution.

  • FOG 1.5.6: Windows unattended.xml is intermittently failing to work

    Moved Solved
    29
    0 Votes
    29 Posts
    9k Views
    S

    @tech49 In this topic there is more than one issue being discussed. So “exact same issue” is not clear. As this was on FOG 1.5.6 I suppose things might be different anyway. Please open a new topic and post all your details: FOG version, Linux OS/version, error message (picture)…

  • FOG service quits running

    Solved
    17
    0 Votes
    17 Posts
    2k Views
    S

    @Joe-Gill Are you still around? Would be great to hear if you still see this issue on some of your machines. I have tried to replicate this problem but wasn’t able to. See here: https://forums.fogproject.org/topic/13902/fog-service-and-interventions

  • Activating Windows 10 Pro after deployment

    Solved
    24
    0 Votes
    24 Posts
    9k Views
  • Windows 10 image will not boot from hard drive

    Solved
    6
    0 Votes
    6 Posts
    2k Views
  • Windows 10 Deployment stuck

    Solved
    16
    0 Votes
    16 Posts
    2k Views
    S

    @Mr-Pinguin777 Did you ever get this solved? Any more help you need from us? See George’s questions.

  • Windows PC Lock up in sleep mode

    Solved
    3
    0 Votes
    3 Posts
    428 Views
    D

    @Scott-Boucher This issue is definitely not fog related. I have seen this on multiple occasions and usually comes down to a UEFI machine with a SSD. either try disabling sleep is the advanced power settings, try disabling hibernation, Disable fast boot in bios, or theres a “turn off hard disk after” setting that you may want to see if thats disabled. I have linked this issue to usually the computers bios misidentifying the SSD as a HDD making windows use the wrong things to sleep/hibernate.

    If you are using a HDD then try to see if there is a bios update for your machine and/or driver updates from the manufacturers website. Good Luck, this problem is proprietary to your type of device. Do some research in that and also look at disabling the settings.

    I have also learned that 5400 rpm 2.5" HDD are absolutely horrible. If that is what you have within those machines, try to put in a SSD for a test and see if you get the same results.

  • 0 Votes
    26 Posts
    6k Views
    Tom ElliottT

    @Gael et al.

    I’m post a more descriptive post to summarize what the issue is. I don’t know how to fix (so I’ll start there.)

    TL;DR;

    Linux Kernel is putting a volatile Firmware on the NIC. This happens when FOS loads and the kernel begins associating the drivers. On restart, the firmware is still existing on the NIC from the Kernel. When Windows Boots, it re-flashes the volatile firmware so subsequent elements will work. Or a full power pull will do too (completely cold boot.)

    Basis:

    This particular issue, is due to Linux Kernel having a firmware defined for the NIC. This is volatile. This means when power is pulled, the firmware will no longer be present and normal actions will work properly.

    While the machine is in FOS, the linux kernel hands it a temporary Firmware File and this is what’s causing the strangeness with the NIC.

    Pulling the power cord causes the firmware to wipe. Similarly, if booting to Windows immediately after, and then powering off the machine, it should WOL. This is because Windows has a FW being applied when it loads, overwriting whatever the Linux Kernel pushed.

  • ipxe initialising devices fog stuck

    Solved
    14
    0 Votes
    14 Posts
    4k Views
    P

    @Wayne-Workman Worked for me

  • How to shutdown the machine automatically when deployment is complete

    Solved
    2
    0 Votes
    2 Posts
    724 Views
    S

    @samuel You can set a kernel parameter in the iPXE menu options to make machines shut down on deploy (or other tasks). Go to the FOG web UI -> FOG Configuration -> FOG Settings -> General Settings and add shutdown=1 to the field FOG_KERNEL_ARGS.

  • Windows 10 - Deployment can't boot

    Solved
    3
    0 Votes
    3 Posts
    496 Views
    F

    @Sebastian-Roth hi, yes: they have the same settings, they are all from the same batch (production wise)

    I believe the system partition is the issue. I tried imaging on legacy and uefi, issue doesn’t change.

    Tried to wipe the disks first, also no change.

    Will try the full copy tomorrow, thanks for your suggestion.

  • Golden Image Deploy Problems

    Moved
    8
    0 Votes
    8 Posts
    1k Views
    D

    @agray You said you set the machine to legacy, and secure boot is off, but
    1 did you enable CSM support?
    2 did you change your boot order?
    Please take a picture of your BIOS/UEFI settings so i can help as well.
    Im interested in your boot page, CSM, boot order, and secure boot pages

  • Activate Windows 10 via FOG agent

    Solved
    18
    0 Votes
    18 Posts
    3k Views
    EduardoTSeoaneE

    @kralon @Sebastian-Roth

    I force the windows 10 activation on Windows 10 Pro with a script like this Script. It’s Writed thinking in WindowsUpdate disabled.
    It Works to me on all License Types, except LV’s that is not tested.

    If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { $arguments = "& '" + $myinvocation.mycommand.definition + "'" Start-Process powershell -Verb runAs -ArgumentList $arguments Break } # License $serviceName = "wuauserv" $hostinfoFile = "c:\nntt\hostinfo.txt" # this is the hostinfo file downloaded from the postdownload $COAProductKeyPattern = "(?<=hostproductkey=).*" $COAProductKey = Select-String -Path $hostinfoFile -Pattern $COAProductKeyPattern | ForEach-Object {$_.Matches.Value -Replace "'",""} $BIOSProductKey = (get-wmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey.Trim() Set-Service -Name $serviceName -StartupType Manual Start-Sleep -s 5 Start-Service -InputObject $serviceName (Get-Service -InputObject $serviceName).WaitForStatus('Running') If ($BIOSProductKey) { Invoke-Expression -Command "changepk.exe /productkey $BIOSProductKey" } ElseIf ($COAProductKey) { Invoke-Expression -Command "changepk.exe /productkey $COAProductKey" } Invoke-Expression -Command "$env:SYSTEMROOT\System32\cscript.exe //B $env:SYSTEMROOT\system32\slmgr.vbs /ato" Start-Sleep -s 10 Stop-Service -InputObject $serviceName (Get-Service -InputObject $serviceName).WaitForStatus('Stopped') Start-Sleep -s 5 Set-Service -Name $serviceName -StartupType Disabled Start-Sleep -s 5 # End License
  • Win7 manual partimage

    3
    0 Votes
    3 Posts
    441 Views
    S

    @sokhanh21xn Mind responding to my questions?

  • Windows 10 Image constantly trying to join domain after join.

    Solved
    12
    0 Votes
    12 Posts
    1k Views
    S

    This topic is being discussed on github in detail: https://github.com/FOGProject/fog-client/issues/110

  • Fog Client fails to join AD Domain with error 2202

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    A

    @Sebastian-Roth the domain alunos.sc.br is a sub-domain of sc.br. I will test it as you mentioned, only with user. Soon notice the return here, thanks for now!

  • Capturing W10 on Sata , restoring on NVME = Fail to boot

    Solved
    7
    0 Votes
    7 Posts
    996 Views
    S

    @mm-Ekimia From what I read between the lines I can imagine this being a UEFI vs. legacy boot issue or something.

    If you still need help with this I ask you to post the information I asked for. Marking as solved for now.

  • UEFI machine are always seen as BIOS machines causing boot issue

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    I

    @Quazz I know that I can capture and deploy UEFI images in Legacy mode, but I have to go in front of the PC turn it on, go in setup page, set network boot, then deploy, then go again in setup page, set windows boot manager … and do it 300 times.
    So at the moment I’ve made a Legacy installation image, and I leave all pc in network boot, so when I want to deploy I just select the group and fire a multicast deploy.
    I’m working on YASHI for booting in legacy mode I’ve ask to their support.

  • Windows 8.1 update does not work properly

    Solved
    12
    0 Votes
    12 Posts
    2k Views
    P

    @george1421

    Thank you George,

    I only can say ‘Busy Busy Busy’ as Twiki – I need to absorb the information.

    When I mentioned ‘the installation continues as from local media (DVD)’ – I meant that as files was made available from network resource the process will continue in same way as if it was run from local media (I meant that process will not be different, except that files be accessed from network and not from local computer media).

    Thank you again George
    Polar Bear

  • Fog Client fails to join AD Domain with error 1326

    Solved
    11
    0 Votes
    11 Posts
    3k Views
    I

    @Sebastian-Roth I don’t want to say definitely that there is a character issue since it could have been a whole host of other things that changing the domain account and password fixed. I’ll try to give it a test when I get some more free time in the next week or so to see if that’s really the issue.

    Thanks for all your help!

177

Online

12.3k

Users

17.4k

Topics

155.6k

Posts