I am unable to run my Java app on Windows PE. Basically, my application gets data of Hhardware plus operating system information. I am using Oshi Java library for this purpose, but Oshi uses the JNA library, which is continuously crashing.
Note: My application runs fine on any other OS, but is unable to run on Windows PE. Code that I am using is as follows:
HardwareAbstractionLayer hal = si.getHardware();
OperatingSystem os = si.getOperatingSystem();
hal.getComputerSystem();
Any help will be appreciated.
From what I can tell, Oshi does not support Windows PE:
The Oshi FAQ does not mention Windows PE as support. For Windows, it lists:
I found no issues in the Oshi issue tracker that mention Windows PE
When I Googled for "oshi windows pe", nothing relevant showed up.
There is a property file in the codebase that maps Windows OS ids to names. It does not mention any Windows PE version numbers.
The JNA library documentation makes no mention of Windows PE.
None of these facts is conclusive, but taken together they paint a clear picture.
This is not to say that Oshi could not support Windows PE. But to make some progress you would need to provide more details; e.g. tell us how it is crashing.