Navigation

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. brywhi
    3. Topics
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 49
    • Best 5
    • Groups 0

    Topics created by brywhi

    • B

      TOEM UI Login Timeout
      Support • • brywhi

      2
      1
      Votes
      2
      Posts
      248
      Views

      T

      @brywhi agreed! Mine is set to 240 and I get timed out at maybe 240 seconds. That setting is minutes though, right @theopenem_admin ?

    • B

      TOEM UI/Password manager
      Support • • brywhi

      2
      0
      Votes
      2
      Posts
      292
      Views

      M

      It also has issues with Bitwarden.
      When filling in the password, it leaves the field in plain text.
      After that, the javascript that switches the field type between text and password breaks, and it doesn't remove the 8-character limit on the password.

    • B

      The given header was not found.
      Support • • brywhi

      4
      0
      Votes
      4
      Posts
      424
      Views

      B

      @theopenem_admin - Is there a propery in log4net that is being set for the client IP? If so I could add it into the conversion pattern.

    • B

      DB issues
      Support • • brywhi

      4
      1
      Votes
      4
      Posts
      363
      Views

      B

      @brywhi Nevermind... this is fixed. Bad DB config on our part that eventually led to the DB being too slow. Fixed now. Not a TOEM bug at all, definitely an error on my side

    • B

      Target group members where software is not currently installed
      Support • • brywhi

      7
      0
      Votes
      7
      Posts
      707
      Views

      M

      @theopenem_admin Was this added in a release? I'm running into the same problem. I'm unsure how to script a condition as well, where can I find that?

    • B

      TOEM rename computer or add searchable notes
      Feature Requests / Feedback • • brywhi

      3
      2
      Votes
      3
      Posts
      452
      Views

      B

      @eruthon Great idea too- to just rename via PS script.

      We manage a lot of remote computers without physical access using TOEM/TOEC, and sometimes it gets crazy trying to figure out which computer is which

    • B

      TOEM Slow Login
      Support • • brywhi

      5
      0
      Votes
      5
      Posts
      211
      Views

      B

      @theopenem_admin
      Ah, yes, that does the trick. The dashboard is slow to load when I click to that tab, but now logging in is quick.
      Thanks!

    • B

      TOEC AppData folder
      Support • • brywhi

      7
      0
      Votes
      7
      Posts
      557
      Views

      T

      Looks good, you shouldn't need to worry about the client log files. They are capped at 10MB with a max of 2 files.

    • B

      Message Modules in Windows 11
      Support • • brywhi

      3
      0
      Votes
      3
      Posts
      269
      Views

      B

      @theopenem_admin
      Howdy- I just noticed that there was a TOEM and TOEC update available- I was on 1.4.4.

      Patched TOEM and deployed the latest TOEC version- and now it's working. Case closed.

      Thanks!

    • B

      Remotely/IP Filtering
      Support • • brywhi

      4
      0
      Votes
      4
      Posts
      312
      Views

      B

      @theopenem_admin That is true- I just am paranoid of the internet, and I like to implement IP filtering whenever possible. Thanks for the quick answer.

    • B

      Module Conditions
      Support • • brywhi

      3
      0
      Votes
      3
      Posts
      278
      Views

      B

      @theopenem_admin
      Awesome, thanks!

    • B

      Moving Database
      Support • • brywhi

      10
      0
      Votes
      10
      Posts
      840
      Views

      B

      @theopenem_admin
      Thanks for the hint- you lead me in the right direction.

      I fixed it. My fault- I had created some triggers on a few tables for some additional reporting I wanted to do, and they had a definer user specified in the mysqldump backup that didn't exist on the new server. After changing the definer to root in the mysqldump prior to recovering, everything is working!

    • B

      Can't Upload Files
      Support • • brywhi

      3
      0
      Votes
      3
      Posts
      580
      Views

      B

      @theopenem_admin
      Ha, I did, but there was a typo. Thanks for suggesting I check there.

      Resolved!

    • B

      Windows Update Global Report
      Support • • brywhi

      4
      0
      Votes
      4
      Posts
      516
      Views

      B

      @brywhi
      Just wanted to reply and say thanks again- this database is beautifully organized and very easy to understand.

      In case anyone else is interested, this query provides all updates in the inventory and which computers they are installed on. However, due to differences in OS versions, etc. we can't expect that all computers will have all of the updates installed.

      SELECT c.computer_name, wu.title AS update_title, wu.category AS update_category, coalesce(cu.is_installed, 0) AS is_installed, cu.install_date FROM computers c INNER JOIN wu_inventory wu ON 1 = 1 left JOIN computer_updates cu ON c.computer_id = cu.computer_id AND wu.wu_inventory_id = cu.wu_inventory_id ORDER BY c.computer_name, wu.title

      This query shows all the updates that are not installed and still required, as per the computer's own reporting. This is the one we're going to be monitoring:

      SELECT c.computer_name, wu.title AS update_title, wu.category AS update_category, coalesce(cu.is_installed, 0) AS is_installed, cu.install_date FROM computers c INNER JOIN computer_updates cu ON c.computer_id = cu.computer_id INNER JOIN wu_inventory wu ON cu.wu_inventory_id = wu.wu_inventory_id WHERE cu.is_installed = 0 ORDER BY c.computer_name, wu.title
    • B

      No Checkins
      Support • • brywhi

      5
      0
      Votes
      5
      Posts
      447
      Views

      T

      @brywhi said in No Checkins:

      If I similarly used a self-signed cert for 8888, I'm assuming I'd have to add that cert to the domain root CA , or else each client would reject communications with the server. Correct?

      Yes, or you can just skip it since it's already encrypted with the built in certs.

      Port 8080 is used when uploading files through the web ui.