I haven't been able to see the issue. Is the new version not working on the older machines either?
Posts made by theopenem_admin
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
-
RE: Policy priority across multiple groups
That is not the intended result. It should order them based off the group endpoint priority. If you select a computer and view the effective policy, it should list the policies in the order they will run. Changing the priority should change the order they appear in the effective policy. Is that happening?
-
RE: Crypto RSA folder issue
Thanks, I was trying to replicate this and was unable to, I'll update to latest security updates and try again.
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
Looks like the tftp server is empty for some reason. I'll double check some things
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
Here is the latest version, i see you are using the proxy.
http://files.theopenem.com/ipxe.efiPlace it in
Program Files\tftpboot\static\ipxe\proxy\ipxe_efi_64Then in admin settings->pxe /boot menu ->pxe settings, change your ipxe 64 bootloader to something other than ipxe_efi, save it, and then change it back to allow the new file to copy to the correct folder.
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
Sorry my dev vm died and I lost a lot of my build scripts. Getting everything setup again, hopefully in the next day or 2.
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
I could try building the latest version of iPXE but it may take a few days
-
RE: Trouble booting into iPXE from new HP Probook 440 G11
can you try using the ipxe snp only or snp file
-
RE: Computer-> reset requests What does it mean?
It means you have a duplicate computer name or install ID, or that computer needed to re-provision for some reason. Just apply that reset request and if it goes away you are good, if it then knocks off a different computer then those 2 computers are somehow duplicated.
-
RE: Error deploing images on HP elitebook G11
There is a new 6.13.4x64-updated kernel available, can you give it a try?
-
RE: WIE Builder - Adding Drivers For PE
These are the 3 intel rst drivers that most people need for dell drive detection in RAID.
There is also one newer one 20.1 I think, it's hard to track down.
-
RE: WIE Builder - Adding Drivers For PE
Yes, it does the whole dism thing. The driver need to be in inf format, that's how winpe works, you can't just drop an exe into winpe, the drivers need to be extracted. For them to show up in the winpe builder page, you need to add them as a file copy module with the is driver option checked. I typically just add all of my drivers to a single zipped upload, but you can add multiple files to the module if you want.
-
RE: WIE Builder - Adding Drivers For PE
I'm not sure I'm following you. This already exists, When you build WinPE you just need to select which drivers you want to add to it. I have all the RVST drivers packaged together and I just check the box when I want to embed it into the WinPE, no problems with drives being detected.
-
RE: WinPE TFTP Speed
It is technically possible to send WinPE over http but the problem is that it breaks secure boot, so I have not included it. If you haven't already seen this page, it goes over the pros and cons of each imaging environment.
https://docs.theopenem.com/imaging/imaging-environments.html
-
RE: theopenEM Installer
Yea, Microsoft is making things difficult. The nature of the program which allows remote commands to execute causes the false positive. I've submitted a request to get it allowed, but I highly doubt they will approve it.
-
RE: TOEC crashes on login policy with impersonation
Impersonation only works when running as a service, won't work at login since it runs under that users context.
-
RE: MariaDB "Too many connections"
You could also just try increasing the max connections.
In the my.ini file just add something like
max_connections = 1024you can check the existing max_connections with a query:
SHOW VARIABLES LIKE "max_connections"; -
RE: MariaDB "Too many connections"
Not really sure what else to try. You could try adding the following to your connection string in web.config for the clientapi to try and close connections faster.
ConnectionIdleTimeout=5
<add name="toems" connectionString="server=localhost;port=3306;database=theopenem;Uid=root;Pwd=password;Allow User Variables=True; ConnectionIdleTimeout=5;" providerName="MySql.Data.MySqlClient" />
or disable pooling
Pooling=false
<add name="toems" connectionString="server=localhost;port=3306;database=theopenem;Uid=root;Pwd=password;Allow User Variables=True; Pooling=false;" providerName="MySql.Data.MySqlClient" />
-
RE: persistent image reverting
Sorry, that is beyond the scope of Theopenem and is not available.
-
RE: Is adding rows to smart_group_queries to speed up dynamic criteria entry a bad idea?
There wouldn't be any way to do this currently. The next version will provide a way to write your own SQL queries.