Jump to content

postCucumber

Members
  • Posts

    2
  • Joined

  • Last visited

postCucumber's Achievements

Seeker

Seeker (1/7)

1

Reputation

  1. I did notice, but I also noticed that there was no concise answer and figured that someone could benefit from the answer that I gave. I see no issue in doing this. Sorry if I broke any rules.
  2. This information is stored in the registry and can be retrieved using the RegRead() function. Here's a quick way to read this info from the registry and display it in message boxes. #RequireAdmin #include <MsgBoxConstants.au3> Local $manufacturer = RegRead("HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\BIOS", "SystemManufacturer") Local $model = RegRead("HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\BIOS", "SystemProductName") MsgBox($MB_SYSTEMMODAL, "", "Manufacturer: " & $manufacturer) MsgBox($MB_SYSTEMMODAL, "", "Model: " & $model)
×
×
  • Create New...