All Projects → matteofabbri → WindowsMonitor

matteofabbri / WindowsMonitor

Licence: MIT License
WMI namespaces and classes

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to WindowsMonitor

Iglance
Free system monitor for OSX and macOS. See all system information at a glance in the menu bar.
Stars: ✭ 1,358 (+8953.33%)
Mutual labels:  monitor, system, hardware
Librehardwaremonitor
Libre Hardware Monitor, home of the fork of Open Hardware Monitor
Stars: ✭ 685 (+4466.67%)
Mutual labels:  monitor, system, hardware
Node Os Monitor
simple OS monitoring for Node.js
Stars: ✭ 83 (+453.33%)
Mutual labels:  monitor, system
Sysmon
A B/S mode system monitor for linux (demo http://199.247.1.240:2048)
Stars: ✭ 110 (+633.33%)
Mutual labels:  monitor, system
hardware
Get CPU, Memory and Network informations of the running OS and its processes
Stars: ✭ 70 (+366.67%)
Mutual labels:  system, hardware
Bash Oneliner
A collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance.
Stars: ✭ 1,359 (+8960%)
Mutual labels:  system, hardware
Workshops
Workshops organized to introduce students to security, AI, AR/VR, hardware and software
Stars: ✭ 162 (+980%)
Mutual labels:  hardware, software
Geotic
Entity Component System library for javascript
Stars: ✭ 97 (+546.67%)
Mutual labels:  query, system
Fanctrl
FanCtrl is a software that allows you to automatically control the fan speed on your PC.
Stars: ✭ 102 (+580%)
Mutual labels:  hardware, software
Pool2021
Pools organized for Epitech's students in 2021.
Stars: ✭ 19 (+26.67%)
Mutual labels:  hardware, software
APC
Arduino Pinball Controller
Stars: ✭ 27 (+80%)
Mutual labels:  hardware, software
Tetra3d
Tetra3D is a 3D hybrid software/hardware renderer made for games written in Go with Ebitengine.
Stars: ✭ 271 (+1706.67%)
Mutual labels:  hardware, software
Luminous
Luminous provides you a lot of information about the system and a lot of handy methods to quickly get useful data on the iOS platform.
Stars: ✭ 298 (+1886.67%)
Mutual labels:  system, hardware
Ibm Z Zos
The helpful and handy location for finding and sharing z/OS files, which are not included in the product.
Stars: ✭ 198 (+1220%)
Mutual labels:  hardware, software
mix-agent
基于rust语言开发的一套运维监控探针,支持widnows、linux、macos系统
Stars: ✭ 14 (-6.67%)
Mutual labels:  monitor, system
Discordgsm
📺 Monitor your game servers on Discord and tracks the live data of your game servers. Also support one-click deployment to Heroku, self-hosted. Invite: https://discordgsm.com/invite
Stars: ✭ 74 (+393.33%)
Mutual labels:  query, monitor
Liqi
LiQi of robinwen.
Stars: ✭ 83 (+453.33%)
Mutual labels:  hardware, software
Nokia Book
NOKIA Book covers selected aspects of the telecommunication industry programmer's work
Stars: ✭ 87 (+480%)
Mutual labels:  hardware, software
monitor
mac 实时网速监控 bandwidh monitor
Stars: ✭ 23 (+53.33%)
Mutual labels:  monitor, system
MooInfo
Visual implementation of OSHI, to view information about the system and hardware.
Stars: ✭ 83 (+453.33%)
Mutual labels:  system, hardware

WindowsMonitor

Fully manged wrapper for WMI ( Windows Management Instrumentation ) namespaces and classes. Useful to retrieve informations abou software and hardware installed on local and remote machine.

 //Retrieve voltage information from local probes
 var probes = VoltageProbe.Retrieve();
   
 foreach (var probe in probes)
 {
     Console.WriteLine($"{probe.Name} {probe.CurrentReading}");
 }

 //Retrieve voltage information from probes on remote machine
 var probes = VoltageProbe.Retrieve("remote host", "username", "password");
   
 foreach (var probe in probes)
 {
     Console.WriteLine($"{probe.Name} {probe.CurrentReading}");
 }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].