• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. RobTitian16
    3. Topics
    • Profile
    • Following 0
    • Followers 1
    • Topics 39
    • Posts 256
    • Groups 0

    Topics

    • RobTitian16R

      Joining to Domain - Location Computer OUs

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Windows Problems
      5
      0 Votes
      5 Posts
      2k Views
      george1421G

      @george1421 I’ve also used a custom vb program and the unattend.xml first run feature to auto login to the workstation right after imaging and then run the vbscript to move the target computer from a build up OU to the proper OU. Then reboot. I have the fog postinstall script update a parameter that is passed to the vbscript during imaging. While I didn’t write this script http://blog.coretech.dk/jgs/vbscript-move-computer-object-to-another-ou-via-command-line-parameter/ it is crazy similar to the one I wrote. It would have been nice If I found this one first to save me some grief.

      The only caveat here is that this script must be run as a user that has domain move computer rights.

    • RobTitian16R

      Importing CSV 'Successful' But Now Showing Anything

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      5
      0 Votes
      5 Posts
      1k Views
      RobTitian16R

      @Tom-Elliott Nice - thanks!

    • RobTitian16R

      FOG Snapin Not Working in Group

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      10
      0 Votes
      10 Posts
      2k Views
      RobTitian16R

      @Tom-Elliott Yeah, I thought it would come down to naming the snapins appropriately. In our case, I think most like to know what they’re signing up for. As such, I’ll just create a document for them to follow and then answer any questions that do come up from it.

      Thanks for the help and assistance!

    • RobTitian16R

      Snapin PowerShell Script Can't Run (Execution Policy)

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      5
      0 Votes
      5 Posts
      2k Views
      Q

      I use a slightly alternative method personally, where I run the powershell command from a batch script, which requires a slightly different approach.

      Example:

      powershell -Command "& {Set-ExecutionPolicy RemoteSigned; Import-Module PSWindowsUpdate; Get-WUInstall}"
    • RobTitian16R

      Software Installation Post-Image

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

      Thanks, Wayne. I’ll test this out shortly and report back my findings 🙂

    • RobTitian16R

      FOG Won't Join Imaged PC to Domain

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      15
      0 Votes
      15 Posts
      3k Views
      RobTitian16R

      @Wayne-Workman Yep, I already learnt that one the hard way 😛
      Thanks!

    • RobTitian16R

      Change Image ID Number

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      44
      0 Votes
      44 Posts
      18k Views
      RobTitian16R

      @Wayne-Workman Perfect - thanks for this!

    • RobTitian16R

      Rolling FOG out to US Site

      Watching Ignoring Scheduled Pinned Locked Moved Solved General
      97
      0 Votes
      97 Posts
      67k Views
      RobTitian16R

      @george1421 +1 for a wiki page. This is really useful stuff and I only found out about it when coming onto the forums and talking with George. Without the forums, I wouldn’t have ever found this out/get it working.

    • RobTitian16R

      FOG Node - getversion.php Missing

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      22
      0 Votes
      22 Posts
      7k Views
      RobTitian16R

      @Wayne-Workman Indeed - many thanks for your help 🙂

    • RobTitian16R

      Booting to Various ISOs

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      7
      0 Votes
      7 Posts
      2k Views
      Q

      @RobTitian16 If you like, you can use my batchfile for this. It should work across all Windows ADK as far as I know

      @echo off rem The fileserver IP set FILESERVER=192.168.1.155 rem Share on the fileserver. set SHARE=INSTALLERS\ISOFILES\0-WINPE rem Username for the share set SHAREUSER=root rem Password for the share set SHAREPASS=root rem amd64 or x86 set ARCH=amd64 rem Path to hold working files. Needs about 500MB of free space. set PEPATH="c:\winpe_%ARCH%" rem ########################################################## rem Don't edit anything below here rem ########################################################## echo Creating the PE image call copype.cmd %ARCH% %PEPATH% > NUL echo Mounting the image dism /Mount-Wim /WimFile:%PEPATH%\media\sources\boot.wim /index:1 /MountDir:%PEPATH%\mount /quiet echo Adding commands to the startup script in PE echo. >> %PEPATH%\mount\windows\system32\startnet.cmd echo ping %FILESERVER% >> %PEPATH%\mount\windows\system32\startnet.cmd echo net use z: \\%FILESERVER%\%SHARE% %SHAREPASS% /u:%FILESERVER%\%SHAREUSER% >> %PEPATH%\mount\windows\system32\startnet.cmd echo z: >> %PEPATH%\mount\windows\system32\startnet.cmd echo z:\64.bat >> %PEPATH%\mount\windows\system32\startnet.cmd echo Creating the pxeboot directory mkdir %PEPATH%\pxeboot > NUL mkdir %PEPATH%\pxeboot\Fonts > NUL copy /y %PEPATH%\mount\windows\boot\Fonts\*.* %PEPATH%\pxeboot\Fonts\ > NUL copy /y "%WinPERoot%\%ARCH%\Media\Boot\boot.sdi" %PEPATH%\pxeboot\ > NUL copy /y "%WinPERoot%\%ARCH%\Media\Boot\BCD" %PEPATH%\pxeboot\ > NUL echo Unmounting the image dism /unmount-Wim /MountDir:%PEPATH%\mount /Commit /quiet echo Optimizing the image imagex /EXPORT %PEPATH%\media\sources\boot.wim 1 %PEPATH%\pxeboot\boot.wim > NUL echo. echo All the files you need for your PXE server are in: %PEPATH%\pxeboot\

      Adjusts the variables as needed.

      Then you can have a 64.bat at the target location, which you can edit at any time to for example create a selection menu for different setup.exe files

    • RobTitian16R

      Can't Upload Image - Hangs or 'Attempting to Check-In'

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

      @Wayne-Workman Not sure, dynmically sized hard drives can cause all kinds of issues though, one of them being that you only get the space used when your image is deployed and you’re unable to expand it in Windows.

    • RobTitian16R

      FOG Upload Slow/Slowing

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      7
      0 Votes
      7 Posts
      2k Views
      RobTitian16R

      @RobTitian16 Just seems to have been a slow network day I guess as it’s running through fine now at 3GB/min 🙂

    • RobTitian16R

      Schema/Installer Doesn't Ask For Update/Can't Upload Image

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

      @Sebastian-Roth Updated to fail in the case we can’t create the mount directory OR the partition cannot be mounted. Because I write the data to a log, I am also able to output the “reasoning” behind the failure too to try to help people hone in on the issue.

    • RobTitian16R

      Issues Updating to Latest Version of Trunk

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      2
      0 Votes
      2 Posts
      1k Views
      ch3iC

      @RobTitian16 said in Issues Updating to Latest Version of Trunk:

      Hi everyone,

      I’m currently getting the following error when trying to update to the latest version of trunk:

      0_1466075064417_Capture.PNG

      It seems to be stuck on preparing package manager now as well… should I try updating later? Is this a known issue with the latest version?

      Hi, OS ?

    • RobTitian16R

      Imaging New VM with 8.1 Image

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

      Thanks for the help! Somehow after increasing the size of my FOG server hard drive, it went through perfectly fine 🙂

    • RobTitian16R

      Parted Magic Boot Menu

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      22
      0 Votes
      22 Posts
      17k Views
      A

      @RobTitian16 That’s what I’ve done, yes. I discovered, by luck, that not appending anything to memdisk works for certain ISOs. I use Parted Magic frequently, so I was happy to get it working. I’ve never seen this documented anywhere…glad you’re working!

    • RobTitian16R

      Can't Upload Image - "Cluster accounting failed... extra cluster in $Bitmap"

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      11
      0 Votes
      11 Posts
      4k Views
      RobTitian16R

      @Quazz I had to change the hard drive as it wasn’t playing ball, but upon doing so even that one messed me around and failed to mount the partition. It updated the database and then removed the job from the list of active tasks. I removed the host from Fog and re-registered it, thus fixing the issue. I was able to upload the image successfully after that 🙂

      Thanks for the help and suggestions!

    • RobTitian16R

      DNS Name Goes to Old FOG Installation

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      19
      0 Votes
      19 Posts
      9k Views
      RobTitian16R

      @Wayne-Workman That’s solved it! Thanks a lot for your help 🙂

    • RobTitian16R

      Dell PCs Can't Boot From Hard Drive - Press A Key to Reboot

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      6
      0 Votes
      6 Posts
      1k Views
      RobTitian16R

      @george1421 Upgrading to trunk has resolved this issue - thank you! 🙂

    • 1
    • 2
    • 2 / 2