how to get windows device information in flutter using win32 api and wmi?
323
I created a package to solve this, is windows_info_device will help to get more details using WMI and PowerShell.
Related videos on Youtube
Author by
Abdul azeez VP
Updated on January 05, 2023Comments
-
Abdul azeez VP 5 months
I am trying to get windows machine information such as bios vendor, serial and other cpu info like cores, vendor, socket etc...(some static info). I believe that I can achieve this using ffi and win32 api, but I don't have basic idea to start. In other hand, how get these details in flutter desktop application? https://social.msdn.microsoft.com/Forums/en-US/027c7403-59ca-482a-a0b1-9bdfe0b273a9/win32-api-for-getting-system-information?forum=Vsexpressvc
-
Jeaninez - MSFT 11 monthsI suggest you could start from the following Docs: System Information Functions Retrieving Device Information
-
IInspectable 11 monthsDo you wish to get device information or do you wish to get device information using WMI?
-
Abdul azeez VP 11 monthsI wish to get information using WMI, I found an easy way to do it, using PowerShell execution from the flutter. Please suggest if you have any better and easy options.
-