• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. fry_p
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 51
    • Posts 356
    • Best 57
    • Controversial 0
    • Groups 2

    Posts made by fry_p

    • RE: Issue joining domain & activating Windows after deployment

      @ckasdf Please do the following for me. Log into the FOG web gui and search for the host. Select the host and click the “Service settings” tab. Please take a screenshot of this so I may compare to my setup.

      Please also, while in the web gui, click on the three gears icon (Client settings) and pick the task reboot tab. Please let us know which boxes are ticked.

      Finally, please click on the wrench (FOG Configuration) and click on FOG Settings on the left column. Scroll down to the FOG Client - Task reboot heading and click on it. Please let us know what is checked there.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Issue joining domain & activating Windows after deployment

      @ckasdf I realized I was only looking at the beginning of the log and replied before I read enough. So it looks like it is authenticating properly as of 5/9. Let me look for a few moments, but chances are you followed proper protocol when you migrated.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Issue joining domain & activating Windows after deployment

      @ckasdf I am seeing some authentication issues in the log. If you did migrate from an old server to a new one, please take a look at this article from the wiki https://wiki.fogproject.org/wiki/index.php?title=FOG_Client#Maintain_Control_Of_Hosts_When_Building_New_Server
      I believe you can follow the first set of instructions (copying the ssl directory from the old server to the new one and rerunning the installer). I would strongly advise against recreating the CA (second set of instructions in this part of the article) because it will essentially break all existing fog client installations.
      If you do not have access to the old server, I think someone else may have to help as that is beyond my knowledge.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Issue joining domain & activating Windows after deployment

      @fry_p said in Issue joining domain & activating Windows after deployment:

      If all else fails, please post the contents of your fog.log from a pc that is not automatically rebooting.

      Doing this will help our friends diagnose the issue. You can find it either at C:\fog.log or at C:\Program Files (x86)\FOG\fog.log depending on where you chose when you installed the client.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Database maintenance script?

      @Sebastian-Roth I can give you an example as to why. I work in a school district and I would like to create a group for the 200 wing at the high school in FOG. So I go to the search bar and type “HS2”, bringing up all of the 200 wing hosts. Cool. I use the select all checkbox on the host list results and go to the bottom to create a group or add it to an existing group. Everything on this page looks good.

      When I go to the group and select membership, I see all of the “HS2” hosts I selected but there are other hosts I did not select in the group. They are always the hosts that have been registered since the last Database maintenance.

      The funny thing about this is if I create a new group, select membership, check the box for hosts that can be added and use that search box, it only adds the ones I search for.

      I suppose this could be more of a bug report at this point. I can provide screenshots/logs on Monday if needed, perhaps earlier if I remote in this weekend at all. I just assumed this was normal FOG maintenance.

      posted in Bug Reports
      fry_pF
      fry_p
    • RE: FOG 1.5.6 Officially Released

      Well done boys! I’ll be sure to give my server a good ol’ update soon!

      posted in Announcements
      fry_pF
      fry_p
    • Database maintenance script?

      Hi all,
      First and foremost, congrats on the 1.5.6 release! I will try to convince my boss to upgrade soon!
      I had a question about the viability and potential harm in creating a script that would periodically run the (safe) database maintenance commands from the wiki.

      My question is really should I do this? Is there anything this could mess up if it runs regularly? Right now I sporadically copy and paste them from the wiki into bash manually, but I am all about the automation of tasks like this. I typically only do this when I notice issues with adding to groups, but also periodically when I update fog or do OS updates on the server.

      If you guys don’t think it is harmful (I still accept that I will be doing this at my own risk), I can write up a simple script and maybe even share it here!

      Thanks as always!

      posted in Bug Reports
      fry_pF
      fry_p
    • RE: Issue joining domain & activating Windows after deployment

      Since setupcomplete is running after the image, I am assuming this was not an OEM version of windows as it wouldn’t automatically run at all. It seems to be hanging on part of it. My recommendation is to start simple. According to the wiki, the setupcomplete.cmd file should contain the following:

      sc config FOGService start= auto
      shutdown -t 0 -r
      

      I see you have some customization for your environment in your current one. I would omit those for testing.

      Please also try to reset the encryption data on the host. This can be done from the host management page on a yellowish button at the top.

      If all else fails, please post the contents of your fog.log from a pc that is not automatically rebooting.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Filesystem check error after capturing W10 image.

      @luis-acacio said in Filesystem check error after capturing W10 image.:

      I’ve tried to follow these tutorials but they are missing a lot of information… they’re just awful. Specially the one in the wiki.

      I feel as if I may need to clarify something for you. I understand you may be frustrated, but the FOG Project is an open source solution that is not only free and designed/maintained completely by a small group of very intelligent volunteers, but also has top notch support on these forums that rivals paid support contracts.

      Admittedly, the wiki is outdated. This is because these few developers are working on continuously improving fog and running a full fledged helpdesk for free, so it is understandable that the knowledge base takes the back burner. I assure you that every issue I have ever posted about in these forums was solved in an appropriate time-frame.

      I don’t speak for the project and the only way I am involved in it is solely as a user, but I hope you now have some insight into the reasons behind the shortcomings of the wiki and I hope your issue is resolved soon and to your liking.

      posted in FOG Problems
      fry_pF
      fry_p
    • RE: FOG Client Last Check-in Report

      @george1421 I took a complete 180 on the methodology on this problem with the help of my co-worker who is better with Powershell than I am. Below is the sanitized version of our simple script to check Domain PC’s for the FOG Client:

      ForEach ($Computer in (Get-ADComputer -Filter * -SearchBase "OU=Sample,DC=yourdomain,DC=com")) {
      $ComputerName = $Computer.Name
      If (Test-Connection $ComputerName -Count 1 -Quiet) {
          $FogService = Get-Service -Name FogService -ComputerName $ComputerName -ErrorAction SilentlyContinue
              If ($FogService) { Write-Output "FOG is running on $ComputerName" | Out-File C:\Scripts\FOG.csv -Append}
              Else {Write-Output "FOG is not running on $ComputerName" | Out-File C:\Scripts\FOG.csv -Append }}
      Else {Write-Output "$ComputerName is Offline" | Out-File C:\Scripts\FOG.csv -Append}
      }
      

      It isn’t the prettiest, but it is versatile in the way that you can really sub the FOGService with any other service name to check if said service is installed and running. I have a initial CSV for the online PC’s that had a broken or not installed FOG Client and set a GPO Startup script to remove any old service, install the new service, and finally start the service. Below is a sanitized batch file for that:

      msiexec /q /x C:\LegacyClientInstaller\FOG Service Installer.msi"
      msiexec /i "C:\NewClientInstaller" /quiet USETRAY="0" HTTPS="0" WEBADDRESS="YourFOGAddress" WEBROOT="/fog" ROOTLOG="1"
      net start FOGService
      

      Hope this may help someone someday!

      posted in General
      fry_pF
      fry_p
    • RE: FOG Client Last Check-in Report

      @george1421
      The first query you list gives me a table of 45,967 rows and displays the logins since 3-1-19 of what appears to be my entire host list.
      The second query you list gives me a table of 1053 rows and displays what appears to be my entire host list.

      I’m not an expert on DB stuff at all, but it looks like the first query is designed to look at the most recent logins (since 3-1-19). I tried “>” instead of a date range in the first query and got less rows, but it is just showing any login dates prior to that date. It isn’t quite telling me for sure if there are more recent logins. Also, in the first query, if I use the “<” method prior to '2019-01-01" I get an empty set.

      posted in General
      fry_pF
      fry_p
    • RE: FOG Client Last Check-in Report

      @george1421 I will play with this tomorrow as I am out of the office today. Thanks for the reply!

      posted in General
      fry_pF
      fry_p
    • FOG Client Last Check-in Report

      Hi All,
      Not sure if this is the right section to post in, but I am tasked with deploying a small script to install a web filter client to every PC in our district. I think snapins are perfect for this. The only issue I see is that on some PC’s that were imaged a while ago with older images, the fog client is either missing or in a “funky” state. I was hoping to somehow either query the database or use the API (though I am very unfamiliar with it) to run a custom report to see the last client check-in time for each host (if any) and possibly the version. Hopefully this will tell me what needs to be updated or fixed. Below are my specs:

      FOG 1.5.5 on CENTOS7
      Client version vary, but the most common one should be 0.11.16.
      Client OS ranges from Windows 7 SP1 to Win 10 1803.

      As always, many thanks for everything you guys do!

      posted in General
      fry_pF
      fry_p
    • RE: Quick Registration makes windows not genuine

      @easp , may I ask which type of licensing you are using for Windows (I.E Individual or KMS)? I am no expert on the registration process, but I think the answer to this will help whomever is more knowledgeable than I in the matter figure this out. I myself use full registration and I believe there is a field for a license key, but as we use KMS at our District, we do not use this feature. I believe we use the Unattend.xml Answer file for this, though this was set up a long time ago and I don’t recall.

      posted in Windows Problems
      fry_pF
      fry_p
    • RE: Maybe the USB cable is bad

      @cool1107cm said in Maybe the USB cable is bad:

      Hi @Quazz & @fry_p

      How can I add kernel argument as below,
      Would you please provide me more detail info?
      Thank you so much

      usbcore.old_scheme_first=1
      has_usb_nic=1

      Hi @cool1107cm ,
      Much has changed in the way of Surface imaging for me. At the time of this post, I was able to image using these kernel arguments with a USB NIC on a Surface Pro 4 . However, as time passed, a number of other variables have come out of the woodwork to prevent the use of FOG on Surface Pro’s for me. I have reverted to manually installing Windows. I believe for a while I was working with @Sebastian-Roth and/or @george1421 on getting this to work. If you have a surface pro/ usb nic issue, I would highly recommend starting a new thread. Perhaps someone has come up with a solution since the time of this post.

      Sorry I couldn’t be much more help. For the record, I used the Host Kernel Argument box on the host information page for the particular host on the web GUI and added these arguments in the order I specified separated by a single space.

      posted in Hardware Compatibility
      fry_pF
      fry_p
    • RE: Anyone in UK have hardware from stone?

      @falko on first glance it looks like they use Intel branded NIC’s (both wired and wireless). Any ideas for which model you are going with? Full disclosure, I am US based an know very little about Stone.

      posted in Hardware Compatibility
      fry_pF
      fry_p
    • RE: SketchUp 2017 snap-in

      @jameto333 I have a little experience in installing similar programs with snapins and am familiar with Sketchup Pro. May I ask which file format you have the installer (exe or MSI)? Also, may I ask which type of licensing you have?

      posted in General Problems
      fry_pF
      fry_p
    • RE: Kernel Issue

      @george1421 I can get a screenshot to you on Monday, but I believe this is just simply an ordering issue on the Web UI in 1.5.5. I went to update the kernel, got the same message, and realized I installed 4.3, which was at the top of the list of available kernels. A lot of users including myself are used to it being ordered by newest to oldest. I had to go down near the bottom of the page to find 4.19.1.

      posted in FOG Problems
      fry_pF
      fry_p
    • RE: Kernel Issue

      @BrentC , I just did the same thing. The kernels are now out of order in 1.5.5 on the kernel update page. Just find the highest number near the bottom. I think it is 4.19.1 or something. For some reason, they aren’t in any order I could figure out.

      posted in FOG Problems
      fry_pF
      fry_p
    • RE: Presenting On FOG at conference?

      @onenerdyguy that sounds like quite a presentation! We would probably just stick to FOG and showing how we use it at our district. There are different methods (Golden image vs. model specific/sysprep or not, etc). Our goal would be to give them the foundation of it all and refer them to resources such as these wonderful forums and certain wiki pages to give them the tools to make informed decisions on what is best for their environment.

      When I went to Brainstorm Ohio last year, it was abandoned on the final afternoon, so I get that completely. Luckily last year the only thing after lunch was a few round table discussions. Hopefully if this happens, we at least get the morning slot of the final day.

      @Wayne-Workman Yep, I was thinking of providing the script for the most ease. All you need to do is change the IP of the server and run the script right? This is the one I know of: https://github.com/FOGProject/fog-community-scripts/tree/master/updateIP

      As for recording it, I love that idea! Just know this is far off and currently theoretical. I probably posted this way too early. If we do get a slot I don’t see a problem in recording it.

      posted in General
      fry_pF
      fry_p
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 17
    • 18
    • 6 / 18