• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Mentaloid
    3. Best
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 59
    • Best 5
    • Controversial 0
    • Groups 0

    Best posts made by Mentaloid

    • RE: Snapins - Snapins with reboot after cause infinite boot loop

      @Tom-Elliott
      Thanks Tom, whatever you changed seems to have fixed things right up!

      Reboot after is now working without causing tasks to be re-created when next checkin occurs.

      You guys are awesome - did I mention that before?

      posted in FOG Problems
      M
      Mentaloid
    • RE: FOG + Powershell (WinUpdate) Question

      @Wayne-Workman

      Yep - I ended up doing that as well, but things I noted:

      Some stuff the AD join and hostname change should be completed first (wsus server and policies and proxy via AD and group policies) - and without the service running, that won’t be completed. Enabling the service at the send of the setupcomplete.cmd means the rename and join hasn’t been completed. Doing it at the beginning, and then running other tasks mean that it will reboot while completing the other tasks.

      This is what I’ve done to get the best of both…

      example sysprep.cmd

      sc stop FOGService
      sc config FOGService start=disabled
      sc stop FOGService
      
      copy \\fog\Deploy\W10\unattend.xml %systemroot%\System32\sysprep\unattend.xml
      mkdir %systemroot%\setup\scripts
      copy \\fog\Deploy\W10\setupcomplete.cmd %systemroot%\setup\scripts\setupcomplete.cmd
      
      net use * /del
      del c:\users\administrator\desktop\*.lnk
      c:
      cd \windows\system32\sysprep
      c:\windows\System32\sysprep\sysprep.exe /quiet /oobe /generalize /shutdown /unattend:unattend.xml
      

      and my setupcomplete.cmd

      @echo off
      del /Q /F c:\windows\system32\sysprep\unattend.xml
      del /Q /F c:\windows\panther\unattend.xml
      net user Administrator /active:yes
      sc config FOGService start=auto
      sc start FOGService
      net use * /del
      exit
      

      Then the snapins run after fog service renames and joins the domain.

      The reason I use snapins for everything else - because I like my setupcomplete to be simple and fast - anything I want beyond the basics, I can choose to implement or not without changing the setupcomplete; just add the snapins (which for @RLane, would be the windowsupdate snapin).

      posted in Windows Problems
      M
      Mentaloid
    • RE: Converting Images from single SSD to multiple SSD

      Areca cards work well in both environments, they are all pretty universal. I’ve used quite few different models in both OS’s (DebianLinux and Windows) . Debian has support built as modules (arcmsr) into the kernel out of the box, and those modules are also by default in the initrd. I’m not sure what the FOG kernel/initrd are based on, but I would imagine it couldn’t be too hard to add if needed.

      I can attest they are fast cards, and fully support 4k sectors and 64bit LBA, as well as some SSD specific options.

      One thing to be aware of - most OS’s aren’t aware of TRIM support for RAID drives. Some controllers expose emulated TRIM and convert it to drive level TRIM, but that is rare. Consequently, SSD’s will wear out rather quickly in a RAID array with a lot of writes.

      posted in FOG Problems
      M
      Mentaloid
    • RE: mbr2gpt problem after deployment

      MBR2GPT not finding the OS partition is either corrupt BCD, or missing recovery environment. Both would occur if not all partitions including the recovery partition, or you didn’t capture the recovery env from the main os partition. Possibly fastboot was enabled and you had a fastboot state saved when captured as well?

      Resizable should work, but I suspect that not all partitions were captured being the root cause.

      posted in Windows Problems
      M
      Mentaloid
    • RE: FOG Client 11.2 upgrade from 10.6

      @Joe-Schmitt

      Makes sense, and I had suspected as much.

      Thanks!

      PS snapin if anyone needs it.

      Start-Transcript -path c:\SnapinLogs\CleanupUpdaterLog.log
      $strFileName="c:\program"
      If (Test-Path $strFileName){ Remove-Item $strFileName }
      Stop-Transcript
      
      posted in FOG Problems
      M
      Mentaloid
    • 1 / 1