• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. adukes40
    3. Topics
    • Profile
    • Following 2
    • Followers 1
    • Topics 38
    • Posts 331
    • Groups 1

    Topics

    • adukes40A

      Host Cleanup

      Watching Ignoring Scheduled Pinned Locked Moved General
      7
      0 Votes
      7 Posts
      2k Views
      adukes40A

      @george1421 I’ll give it a try. Dont need a fancy report, just a listing would suffice, I was going g to cross reference it with inventory to see if it has been relied, or trashed. Thanks George

    • adukes40A

      Snapins and Client version

      Watching Ignoring Scheduled Pinned Locked Moved General
      1
      1 Votes
      1 Posts
      573 Views
      No one has replied
    • adukes40A

      SQLSTATE[42S22]

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      32
      0 Votes
      32 Posts
      16k Views
      adukes40A

      @Tom-Elliott its no big deal. once this summer is over, adding new hosts gets more rare. It was just this being our first roll out, there will be a lot of machies to touch. All good though, rather have FOG do what it needs correctly instead of me tearing it up.

    • adukes40A

      Http 500

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      13
      0 Votes
      13 Posts
      3k Views
      Wayne WorkmanW

      @adukes40 I guess if I was more on top of my game tonight, I’d have seen the 500 page and said to look at the Apache Error logs, and I imagine we would see some errors about memory being exhausted… I’m glad you figured it out.

    • adukes40A

      Snap-in ID Numbers

      Watching Ignoring Scheduled Pinned Locked Moved General
      4
      0 Votes
      4 Posts
      969 Views
      Wayne WorkmanW

      @adukes40

      select sID, sName from snapins INTO OUTFILE '/root/Snapins.txt';

      Something like that.

      Reference: http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/

    • adukes40A

      Memory Question

      Watching Ignoring Scheduled Pinned Locked Moved General
      10
      0 Votes
      10 Posts
      2k Views
      Tom ElliottT

      @adukes40 I suppose yes. What you should be concerned with in regards to memory is if you see a lot of stuff moving in out out of SWAP space.

    • adukes40A

      Early HostnameChanger

      Watching Ignoring Scheduled Pinned Locked Moved General
      16
      0 Votes
      16 Posts
      5k Views
      adukes40A

      OK, so I ended up bypassing the HNC and EHNC all together. Being we need a reboot to occur before joining the domain, I created a powershell script to run on that first auto logon to take care of the name change. So the unattend names it with the * variable, then PS runs and pulls the current computer name, the asset from the bios, and serial from the bios and mashes them together and is working perfectly. Here is the script if it helps someone else gets started with their PS script:

      #Rename the Workstation
      $CurrerntComputerName = (Get-WmiObject -Class Win32_ComputerSystem -Property Name).Name
      $SerialNumber = (Get-WmiObject -Class Win32_BIOS | Select-Object SerialNumber).SerialNumber
      $AssetTag = (Get-WmiObject -Class Win32_SystemEnclosure | Select-Object SMBiosAssetTag).SMBiosAssetTag

      $OSDComputerName = “$($AssetTag)-$($SerialNumber)”

      Rename-Computer -ComputerName $CurrerntComputerName -NewName $OSDComputerName

    • adukes40A

      Drivers script

      Watching Ignoring Scheduled Pinned Locked Moved General
      24
      0 Votes
      24 Posts
      9k Views
      george1421G

      since the /tmp/mydrivers link is created make sure you can list the contents of ls /ntfs/Drivers If both checkout then just issue the copy command manually cp -R /tmp/mydrivers/* /ntfs/Drivers That should copy the files to the windows 😄 drive.

    • adukes40A

      Client reboot screen

      Watching Ignoring Scheduled Pinned Locked Moved General
      13
      0 Votes
      13 Posts
      4k Views
      Wayne WorkmanW

      @george1421 said in Client reboot screen:

      I could see value in an option for a snapin to install now vs a delayed install/reboot.

      If the snapin is script-based, one could easily include a sleep command in the script.

    • adukes40A

      Snap-in MSI with multiple files

      Watching Ignoring Scheduled Pinned Locked Moved General
      12
      0 Votes
      12 Posts
      4k Views
      Wayne WorkmanW

      Personally, I install smart notebook on every image. Then I leave a copy of the installer on the C:\ drive for actual smartboards. We just run the installer and choose “Smartboard Drivers” so it works with the smartboard.

    • adukes40A

      Create Capture task returns HTTP 500

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      9
      0 Votes
      9 Posts
      2k Views
      Tom ElliottT

      Fix for this pushed.

    • adukes40A

      Snap-in Process

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      4
      0 Votes
      4 Posts
      1k Views
      Wayne WorkmanW

      @adukes40 Sounds right.

    • adukes40A

      General Replication question

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      3
      0 Votes
      3 Posts
      596 Views
      adukes40A

      That’s what I figured. thanks for clarification.

    • adukes40A

      Snap-in Replication

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      11
      0 Votes
      11 Posts
      3k Views
      Tom ElliottT

      @adukes40 no problem.

    • adukes40A

      QuickReg and Inventory issue

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      16
      0 Votes
      16 Posts
      5k Views
      adukes40A

      @george1421 agreed, but it ws already bought… so will work with what I got.

    • adukes40A

      Host/Group replication between FOG Servers

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      52
      0 Votes
      52 Posts
      29k Views
      Wayne WorkmanW

      @Tom-Elliott helped out, it was a bug in replication. It should be fixed in the current.

    • adukes40A

      Setting Environment Variables

      Watching Ignoring Scheduled Pinned Locked Moved General
      10
      0 Votes
      10 Posts
      3k Views
      george1421G

      I couldn’t resist the challenge. This should get you pretty close.

      #!/bin/bash . /usr/share/fog/lib/funcs.sh; mkdir /ntfs 2>/dev/null echo "Mounting Windows File System"; mount.ntfs-3g "/dev/sda2" /ntfs 2>/tmp/mntfail mntRet="$?"; if [ ! "$mntRet" = "0" ] then echo "Failed to mount Windows partition"; echo ""; cat /tmp/mntfail; echo ""; sleep 12; exit 1; fi #Mount successful echo "******************************************************"; read -p "Enter your room number " rn echo "setx /M RoomNumber \"${rn}\" " >>/ntfs/Windows/Setup/Scripts/SetupComplete.cmd echo "******************************************************"; umount /ntfs sleep 5;
    • adukes40A

      New server not updating inventory

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      8
      0 Votes
      8 Posts
      2k Views
      adukes40A

      Just wanted to say I updated to SVN 6955 and inventory is running great. Thanks Sebastian and Tom for the hard work.

    • 1 / 1