• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. x23piracy
    3. Topics
    • Profile
    • Following 1
    • Followers 6
    • Topics 118
    • Posts 1,166
    • Groups 3

    Topics

    • x23piracyX

      MAC Address duplicate, ignore MAC Address (Checkpoint Mobile)

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      3
      0 Votes
      3 Posts
      936 Views
      S

      @x23piracy Sorry for the long delay! This is a known issue in an older version of FOG and fixed in 1.5.9 and later.

    • x23piracyX

      Lenovo E15 Gen2 won't PXE boot (bzImage)

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      29
      0 Votes
      29 Posts
      11k Views
      T

      In the BIOS on the configuration tab, disable Intel VMD Controller and disable Secure Boot on the security tab. This is the only way i’ve gotten this to image.

    • x23piracyX

      First default domain admin login never ends when FOG (1.5.0) joins to domain (FOG Client 0.11.15)

      Watching Ignoring Scheduled Pinned Locked Moved Windows Problems
      3
      0 Votes
      3 Posts
      499 Views
      x23piracyX

      Hi,

      thanks for your suggestions, i made another try i gave the first login more time, after 10 minutes the first login attempt worked, i maybe was to impatient usually a login doesnt take such long, every login attempt after that first one is working normally.

      Hmpf, i will try recreate the image from scratch to see if this impact occours again.

      Best Regards X23

    • x23piracyX

      OMG my Company gets worse - Cloud Azure AD Office 365 Autopilot Intune

      Watching Ignoring Scheduled Pinned Locked Moved General
      1
      2 Votes
      1 Posts
      646 Views
      No one has replied
    • x23piracyX

      FOG (RC12) Settings Exit Types (legacy, efi) will not be saved after change

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      19
      0 Votes
      19 Posts
      3k Views
      x23piracyX

      @tom-elliott Hi Tom, sorry for the late answer, yes that sql statement solved my issue. Solved!

      UPDATE globalSettings
      SET settingCategory=‘FOG Boot Settings’
      WHERE settingKey
      IN (‘FOG_ADVANCED_MENU_LOGIN’,‘FOG_EFI_BOOT_EXIT_TYPE’,‘FOG_PXE_MENU_TIMEOUT’,‘FOG_PXE_MENU_HIDDEN’,‘FOG_PXE_ADVANCED’,‘FOG_KEY_SEQUENCE’,‘FOG_NO_MENU’,‘FOG_BOOT_EXIT_TYPE’,‘FOG_PXE_HIDDENMENU_TIMEOUT’,‘FOG_IPXE_MAIN_COLOURS’,‘FOG_IPXE_MAIN_CPAIRS’,‘FOG_IPXE_MAIN_FALLBACK_CPAIRS’,‘FOG_IPXE_VALID_HOST_COLOURS’,‘FOG_IPXE_INVALID_HOST_COLOURS’,‘FOG_IPXE_HOST_CPAIRS’,‘FOG_IPXE_BG_FILE’);

      @george1421 helped out with sorting the command 😉

    • x23piracyX

      PDQ Deploy run as logged on user, how the hell? :)

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Windows Problems
      3
      1 Votes
      3 Posts
      3k Views
      J

      @x23piracy a windows service can impersonate one of the logged in users without their password. Essentially the service grabs a process running as the user you wish to impersonate, and obtains a handle on the process’s access token (OpenProcessToken). The service then needs to duplicate the token so it can “impersonate” the user without affecting the process we lifted the token from (DuplicateToken), activate that token, and then perform the work. Finally the token handle must be closed.

      Its a pretty win32 api heavy approach. The client does not use this technique as there is no guarantee a user is logged in at any given point.

      TL;DR: grab an existing process running as that user, and perform multiple win32 API calls to impersonate that user.

    • x23piracyX

      Snapin definition (reboot, shutdown) add option "only install" when keeping radio buttons

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Feature Request
      5
      0 Votes
      5 Posts
      2k Views
      Wayne WorkmanW

      Bumping this, it’s a good idea still.

    • x23piracyX

      Current FOG version to Forum Signature plugin

      Watching Ignoring Scheduled Pinned Locked Moved Feature Request
      2
      0 Votes
      2 Posts
      934 Views
      Wayne WorkmanW

      @x23piracy I don’t think it’s worth the trouble or dev cycles.

    • x23piracyX

      Windows Keys Plugin and Hosts Product Key Field Coexistence, who wins?

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      8
      0 Votes
      8 Posts
      4k Views
      x23piracyX

      This can be marked as solved.

    • x23piracyX

      Win 10 Ent. compared to Win 10 Ent. LTSB what would be the right decision?

      Watching Ignoring Scheduled Pinned Locked Moved General
      40
      0 Votes
      40 Posts
      12k Views
      PsycholiquidP

      @x23piracy Not sure I am understanding the question

    • x23piracyX

      Migrate custom client banner image in filesystem when updating

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      12
      0 Votes
      12 Posts
      3k Views
      S

      @x23piracy Installer switch --oldcopy and/or .fogsettings parameter copybackold=…

    • x23piracyX

      Function to add "Code" to a thread answer is gone? Search function is also not working

      Watching Ignoring Scheduled Pinned Locked Moved Solved General
      10
      0 Votes
      10 Posts
      2k Views
      x23piracyX

      Search is still not working for me (tried it 5 seconds ago):

      Bild Text

    • x23piracyX

      Cannot boot local from my Advanced PXE Menu (EXIT Type differences?)

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      3
      0 Votes
      3 Posts
      2k Views
      george1421G

      @x23piracy Because there is a difference.

      Typically for bios (legacy) mode the exit mode is SANBOOT (that is the way iPXE attempts to location the hard drive). For uefi system the best exit mode is rEFInd, which is an external program that is used to find the boot drives. You may be able to tweak the refind.conf file to look for legacy stuff but I haven’t tried it.

      There is something I just discovered the other day while I was hacking FOG’s boot menus. That is the platform variable. ref: http://ipxe.org/cfg/platform you can use that in your boot local section to test to see if the platform is efi or pc-bios and then select the best exit mode there.

      such as in: (warning I just glued this code together there is no testing done)

      :bootlocal iseq ${platform} efi && goto boot-efi || goto boot-bios goto MENU :boot-efi <don't know the syntax for refind> || goto MENU :boot-bios sanboot --no-describe --drive 0x80 || goto MENU
    • x23piracyX

      Adjust Screen Resolution when booting via EFI

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

      Yes there is a kernel parameter for that its the vga parameter.

      vga=792 This should be 1024x768x24

      ref: https://unix.stackexchange.com/questions/71231/grub2-and-kernel-vga-parameter/114980

    • x23piracyX

      Delete Host Problem, Host deleted but left overs still in DB

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      12
      0 Votes
      12 Posts
      3k Views
      x23piracyX

      Solved in working branch. Thanks Tom.

    • x23piracyX

      Cannot add pushbullet account (nothing happens when i click on add)

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      17
      0 Votes
      17 Posts
      5k Views
      x23piracyX

      @tom-elliott problem solved, i talked to our firewall admin to free the server from proxy usage, after that i could easily add my pushbullet account and could also simply download the current oui.txt for the mac list.

      So i am going to think that something is wrong with group the fog server belongs to on our firewall server because it already was in a group that is free from forced proxy usage (must be some missconfiguration or something).

      Bild Text

      Regards X23

    • x23piracyX

      FOG Client / FOS report bios product key to database (Host) Activate through BIOS key (Deployment)

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      34
      0 Votes
      34 Posts
      10k Views
      Tom ElliottT

      https://www.microsoft.com/en-us/Useterms/OEM/Windows/10/UseTerms_OEM_Windows_10_English.htm

      In case anybody’s overly concerned. Here’s the OEM EULA. Notice, it states that you are allowed to transfer the license to another user so long as it’s with the device and the software is installed and the product key is given with it. There are no rules on what you can/cannot document. That’s like saying you can’t pull the serial number from the bios.

      Just trying to get people to calm down. We know the device and software are owned by the person. We know how to obtain the information. We don’t know how the user intends to use it after it’s been stored, but that’s out of our hands. We cannot control what the admins/users do with the key once it’s know, but that’s out of our control to begin with. There’s plenty of ways for users to get that information to begin with, I don’t see anywhere in the EULA where it states we cannot store a copy of it for ourselves.

    • x23piracyX

      Windows 10 1703 delete "this" if you use "CopyProfile" in unattend.xml

      Watching Ignoring Scheduled Pinned Locked Moved Solved Tutorials
      1
      2 Votes
      1 Posts
      3k Views
      No one has replied
    • x23piracyX

      Can't delete host with empty host name 1.5.0 RC 7

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      3
      0 Votes
      3 Posts
      1k Views
      x23piracyX

      @sebastian-roth solved, thank you.

      Regards X23

    • x23piracyX

      Can i mix 1.4.4 with 1.5 for evaluation?

      Watching Ignoring Scheduled Pinned Locked Moved General
      3
      0 Votes
      3 Posts
      977 Views
      x23piracyX

      @tom-elliott Thanks Tom, this said i will give 1.5 a try.

      Regards X23

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 1 / 6