Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Updating via WMI

Tags:

c#

wmi

wmi-query

I need an example of an update query using WMI. I have searched but I couldn´t find anything.

Can anyone paste some sample code if possible?

Thanks.

like image 986
NicoRiff Avatar asked Mar 14 '11 13:03

NicoRiff


1 Answers

Process Information and Notifications using WMI is an example of WMI.

The WMI Query Language (WQL) is read-only. There are no keywords such as INSERT or UPDATE. You cannot modify the WMI objects.

like image 95
SwDevMan81 Avatar answered Sep 20 '22 12:09

SwDevMan81