This is the official System Information plugin for ZPE.
The plugin provides access to CPU, BIOS, baseboard, sensors and graphics card information.
Place zpe.lib.systeminfo.jar in your ZPE native-plugins folder and restart ZPE.
You can also download with the ZULE Package Manager by using:
zpe --zule install zpe.lib.systeminfo.jar
Full documentation, examples and API reference are available here:
View the complete documentation
import "zpe.lib.systeminfo"
sys = new SystemInfo()
cpu = sys->get_cpu()
print(cpu->get_identifier())
print(cpu->get_physical_core_count())
cards = sys->get_graphics_cards()
for (c in cards)
print(c->get_name())
end for
- Uses OSHI internally.
- Cross-platform (Windows, macOS, Linux).