Navigation

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. Recent
    Log in to post
    • All categories
    • Announcements
    • Support
    • Feature Requests / Feedback
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • M

      Client boot error
      Support • • mjaiswal

      1
      0
      Votes
      1
      Posts
      153
      Views

      No one has replied

    • M

      Clonedeploy installation
      Support • • mjaiswal

      1
      0
      Votes
      1
      Posts
      153
      Views

      No one has replied

    • C

      EFI stub: Loaded initrd from command line option
      Support • • cracking.skulls

      3
      0
      Votes
      3
      Posts
      586
      Views

      J

      @cracking-skulls I'm having this same issue. Were you able to resolve it?

    • M

      Imaging unable to create partitions
      Support • • mzprays

      2
      0
      Votes
      2
      Posts
      348
      Views

      M

      I did some digging and it appears bootType is being incorrectly detected as legacy, so the script is formatting the drive as MBR. $env:firmware_type contains the correct value, EFI. I found that the boot type is determined using Confirm-SecureBootUEFI, interpreting a failure to run as legacy boot. This system does not support secure boot, causing Confirm-SecureBootUEFI to crash, although it does use UEFI. Is there a reason Confirm-SecureBootUEFI is used instead of $env:firmware_type for the boot type?

    • G

      Admin Settings DB Maintenance
      Support • • Gunnie

      1
      0
      Votes
      1
      Posts
      262
      Views

      No one has replied

    • J

      Client computer won't do force checkin
      Support • • jiverson

      1
      0
      Votes
      1
      Posts
      156
      Views

      No one has replied

    • T

      Hardware Targeting File Copy Modules
      Feature Requests / Feedback • • Tyler

      1
      0
      Votes
      1
      Posts
      306
      Views

      No one has replied

    • D

      LIE Bootclient not working on Latitude 5550
      Support • • dbenitez

      1
      0
      Votes
      1
      Posts
      169
      Views

      No one has replied

    • C

      Problem with Toec Client export
      Support • • Chavi

      18
      0
      Votes
      18
      Posts
      1482
      Views

      C

      @chavi Thank you Chavi for your reply.
      I successfully installed my config on my new server.
      The problem was the mysql export.

    • D

      Issue uploading via WIE USB
      Support • • davmedei

      3
      0
      Votes
      3
      Posts
      276
      Views

      D

      @tmowdy Yes, I've confirmed the information is correct. I think the cause of this is the image file was too large. Switching to SMB resolves this for me.

    • K

      Caching Management
      Feature Requests / Feedback • • kie7777

      4
      0
      Votes
      4
      Posts
      560
      Views

      T

      1.5.7, no tentative release date yet though.

    • I

      Using “default” File Instead of “default.ipxe” in tftpboot/pxelinux.cfg
      Support • • ImMau22

      1
      0
      Votes
      1
      Posts
      158
      Views

      No one has replied

    • C

      Change iPXE Menu / Picture
      Support • • Cyrano

      1
      0
      Votes
      1
      Posts
      185
      Views

      No one has replied

    • R

      Could not contact API
      Support • • robtorr289

      1
      0
      Votes
      1
      Posts
      165
      Views

      No one has replied

    • M

      Unkown error occurred while dertermining minimum hd size required.
      Support • • mardedude

      2
      0
      Votes
      2
      Posts
      209
      Views

      C

      @mardedude

      Same issue hier.
      I have also post it at the forum.
      link forum post

    • C

      Error in deploy image via TOEC
      Support • • Cyrano

      1
      0
      Votes
      1
      Posts
      157
      Views

      No one has replied

    • C

      lie_upload hang at gdisk
      Support • • cocoon

      1
      0
      Votes
      1
      Posts
      191
      Views

      No one has replied

    • C

      LIE with no compression broken?
      Support • • cocoon

      1
      0
      Votes
      1
      Posts
      137
      Views

      No one has replied

    • R

      Overnight Login and database issue
      Support • • rgrigg

      7
      0
      Votes
      7
      Posts
      339
      Views

      R

      @theopenem_admin Problem Resolved Thank you. AT least this is here now for others to see if needed!

    • S

      Policy: Run a module if process X is not running?
      Support • • SoWhy

      2
      0
      Votes
      2
      Posts
      312
      Views

      S

      Okay, I figured it out by reading the manual for another, unrelated module. For those who struggle with the same problem:

      Create a script module with the content

      if (! (Get-Process X)) { Exit -1 }

      where "X" is the name of the process. You can use * as a wildcard, e.g. X* will match any process whose name starts with "X". Set the "Success Codes" value to "-1" and toggle "Use As Condition". Save the module with some name you can remember, e.g. "Check if X is running"

      Now, when creating a policy, you can use this module as a condition in the "Conditions" tab and it will only run if the process is not running.