• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. larosejm
    3. Posts
    L
    • Profile
    • Following 0
    • Followers 1
    • Topics 2
    • Posts 18
    • Best 2
    • Controversial 0
    • Groups 0

    Posts made by larosejm

    • RE: FOG 1.5.0 active directory domain password auto-encryption not working

      @fog_rob I am experiencing this issue as well, not related to clients whatsoever, the web interface just doesn’t auto-encrypt the plaintext password in the web interface.

      posted in FOG Problems
      L
      larosejm
    • RE: Win 10 image

      @jackiejack you don’t need another machine… install virtualbox on your current machine… you can export it when you get everything good to a network share somewhere

      posted in General
      L
      larosejm
    • RE: Win 10 image

      @jackiejack definitely start from scratch. Its quick enough, and if this is your image your gonna use on a bunch of machines, you want it to be perfect… plus it’ll be easier to document all the steps you do.

      posted in General
      L
      larosejm
    • RE: Win 10 image

      @jackiejack you could use a physical machine, but virtualbox is easier and transerable… your machine doesn’t matter. I actually use virtualbox on a mac… from some notes… “install Windows using Audit Mode* in virtual box with 4gb ram, 2 processors, 50gb dynamic hard drive, bridged adapter”

      posted in General
      L
      larosejm
    • RE: Win 10 image

      @jackiejack yes, first thing you do is go into audit mode… do the windows updates in the virtualbox before sysprep (be sure to select bridged network adaptor) so you’ll be able to upload to fog. Put network drivers for all models in c:\windows\inf folder somewhere. You could install software before sysprep if you want. The only software we install before sysprep is Microsoft Office and do the rest post image.

      posted in General
      L
      larosejm
    • RE: Win 10 image

      @jackiejack PDQ is more of a remote deployment type deal, but I suppose it could work. Puppet is open source. I found Salt easier to use, which is open source as well, but beware that you need to know what your doing with these and make sure they are secure because they give ALOT of control, but if in place and once properly setup, can be used to automate everything. A simple free solution is create silent installers in a central network share and combine PDQ for remote deployment (free if you just run bat files from the central share) and WPI (http://www.majorgeeks.com/files/details/windows_post_install_wizard_(wpi).html) for locally running post installs/configs. The trick is, you have to create silent installers for everything. You may also have luck with Fog for post config and software.

      posted in General
      L
      larosejm
    • RE: Win 10 image

      I would actually put the minimal amount of software and configuration on the image as possible… create the image with virtualbox and snapshot before every sysprep so you go go back and do windows updates regularly. Use a tool like WPI, or even better, config management tool like salt/puppet for post software install/config… but yes, you have the right idea… make sure to put the network drivers for each model on the image as well

      posted in General
      L
      larosejm
    • RE: Win 10 image

      I’ve had luck with sysprep up until 1703, anyone else having issues or have successfully sysprepped Windows 10 Enterprise 1703?

      posted in General
      L
      larosejm
    • RE: IPXE Error: No configuration methods succeeded

      I get the same exact error, every time, for every machine and then after rebooting once, it works every time. This just happened all of a sudden. Wireshark doesn’t see any tftp servers.

      posted in FOG Problems
      L
      larosejm
    • RE: Post Sysprep Driver Install

      @Quazz said in Post Sysprep Driver Install:

      But say you work repair service where every possible model under the sun gets dumped for you to fix, then you need a broader solution.

      warning with snappy driver installer… the project was hijacked and now includes malware… therefore a fork was generated called snappy driver installer origin…

      https://sourceforge.net/projects/snappy-driver-installer-origin/

      posted in General
      L
      larosejm
    • RE: Post Sysprep Driver Install

      @Wayne-Workman

      1. Be on a Mac, version 10.8 or higher
      2. download AutoPkgr… https://github.com/lindegroup/autopkgr/releases
      3. Open AutoPkgr and install Git and AutoPkg with the provided buttons
      4. In the “Add a repo URL manually” box, add the following to get many Dell drivers and software … https://github.com/jeremylarose/autopkg-recipes.git
      5. right click on any pkg you want and click “Create Override”… this is to protect you from any malicious changes ( https://github.com/lindegroup/autopkgr/wiki/Overrides-and-Trust-Info )
      6. now you can right click on the created local recipe (Recipe identifier changes to local.pkg…) and click run this “Run this Recipe Only” to create that package at ~/Library/AutoPkg/Cache

      that’s it, although…

      1. you’ll likely want to checkmark all the packages you want and setup a schedule to run automatically
      2. you’ll likely want to create your own recipes for different models, which you can essentially duplicate the ones I already have created and modify, or just ask and I can probably do it real quick

      bonus…

      1. I created a PkgOrganizer PostProcessor that will organize them in a PkgOrganizer folder, to add that…
      2. in AutoPkgr, click “Folders and Integration” then click “Configure AutoPkg” button and paste this into the postprocesser… com.github.jeremylarose.SharedProcessors/PkgOrganizer

      Now you have silent installers to do whatever your want with. I find this tool extremely handy, saves alot of work. Its also amazing for macs with munki.

      posted in General
      L
      larosejm
    • RE: Post Sysprep Driver Install

      @Avaryan yes, that’s why I provided a tool to automatically generate those 7zip packages for you… add some recipes for your models.

      posted in General
      L
      larosejm
    • RE: Post Sysprep Driver Install

      @larosejm now that i think about it, if you use the snap-in feature of fog, you could just use the generated silent installer packages as snap-ins as well

      posted in General
      L
      larosejm
    • RE: Post Sysprep Driver Install

      I use AutoPkgr (mac program, https://github.com/lindegroup/autopkgr/releases ) to automatically check for updates, download, and generate packages out of Driver Packs and Bios updates ( https://github.com/jeremylarose/autopkg-recipes ) daily. … Then I use Salt ( https://docs.saltstack.com/en/latest/ ) to deploy them, with this simple state…

      {% set model = grains[‘productname’] %}

      ‘c:\salt\drivers{{ model }}.exe’:
      file.managed:

      • source: ‘salt://win/drivers/win10/{{ model }}.exe’
      • makedirs: True

      install_drivers:
      cmd.run:

      • name: ‘“c:\salt\drivers{{ model }}.exe”’
      • onchanges:
      • file: ‘c:\salt\drivers{{ model }}.exe’
      posted in General
      L
      larosejm
    • Configuration management frontend?

      fog is amazing for provisioning machines, but after that, I generally remove the client and move on. I feel it is close to being much more. If fog was able to act as a gui front end for a config management system that already works great (saltstack(preferred), puppet, chef, etc…) and then report current/accurate software status on machines (ocs inventory) then it would be the ultimate sysadmin tool for windows machines.

      posted in Feature Request
      L
      larosejm
    • RE: BSDPy - Apple NetBoot server

      Thanks. I remember trying that about a year ago and couldn’t seem to get it to work for the iml13 I was using. The problem was likey because I was using dnsmasq. I’m using Fog on an internal network and using FOG for dhcp now so I will give it another go. We image all models of macs and Yosemite and up for OS X and Windows 7 64-Bit and up for Windows.

      posted in Feature Request
      L
      larosejm
    • BSDPy - Apple NetBoot server

      https://bitbucket.org/bruienne/bsdpy

      I think it would be amazing to be able to get rid of a mac and deploy studio and have FOG do it all. How hard would it be to get BSDP implemented within fog? It seems like it uses many of the same services and runs on the same Linux OS’s. This link provides a pretty good process using Linux for imaging Macs…:

      http://jrhoades.com/blog/2015/07/21/mac-deployment-using-autodmg-imagr-and-bsdpy/

      Thanks!

      posted in Feature Request
      L
      larosejm
    • RE: Checking in...Error on GIT 4728

      I have the same issue, after installing the latest git and svn. I also have a worse issue that started on version 4457 where the web interface is all screwed up, different things are all over the place, but it was still working, until the latest git / svn where I get this “Checking in” error

      I’m running FOG using DNSMASQ on ubuntu 14.04.3 LTS Server on VM … thanks.

      posted in FOG Problems
      L
      larosejm
    • 1 / 1