1
vote
3answers
23 views
Possible to access WMI through ADO?
Is there an OLEDB provider for WMI/WBEM?
In other words, could someone access WMI through:
ADO in shell vbscript
ADO in ASP script
ADO in Win32 native process
SQL Server linked …
0
votes
0answers
21 views
Getting bssid-s from WMI
I tried to get information about available networks using WMI. Unfortunately I always get an empty list. I tried it both via VBScript (using http://www.scriptinternals.com/new/us/s …
0
votes
1answer
30 views
Windows 7 Action Center messages
I would like to know how to read, via vbscript, WMI, Powershell etc -the new Windows 7 Action center messages that the user normally gets informed of.
I want to read all those mes …
0
votes
0answers
28 views
Detecting Eject/Insert of Removeable Media
I am working on a project in which I need to be able to detect when a CD or a USB drive is inserted or removed. I found some source code that was supposed to do this very thing, ho …
2
votes
2answers
55 views
Get the date-time of last windows shutdown event using .NET
Is there a way to find out when the system was last shutdown?
I know there's a way to find out last boot up time using the LastBootUpTime property in Win32_OperatingSystem namespa …
0
votes
1answer
49 views
How do I list device types using WMI?
I'm using WMI Code Creator to generate code to help list the types of devices shown in Device Manager. I'm trying to detect the presence of a debugger that shows up in Device mana …
1
vote
4answers
108 views
How to Read Remote Registry Keys?
I need to be able to read the values in a specific Registry Key from a list of Remote Computers.
I can do this locally with the following code
using Microsoft.Win32;
…
1
vote
1answer
34 views
Methods of programatically altering ipsec rules with C#?
Hey stackoverflow,
The only method I know how to execute IPsec changes involves calling netsh to do the changes. Is there a method using System.Management and WMI objects directly …
0
votes
1answer
37 views
How to determine Windows.Diagnostics.Process from ServiceController
This is my first post, so let me start by saying HELLO!
I am writing a windows service to monitor the running state of a number of other windows services on the same server. I'd …
3
votes
2answers
65 views
Windows processes vs. applications
I can easily identify running processes by looping through the WMI Win32_Process elements. Is there a similar way to identify "applications" as in Task Manager? I assume that thi …
2
votes
2answers
81 views
How can I tie my application to specific hardware?
I have a C# .NET app. This application is tightly coupled to a piece of hardware. Think ATM, drive up kiosk kinda thing. I want a way for my application to assure it is being run o …
-1
votes
2answers
106 views
Getting Service Tag from Dell Machine using .net?
Hello folks I've got a class that pulls model information (hardware info)
for a local machine code is like so:
Imports System.Management
Public Class clsWMI
Private objOS …
0
votes
1answer
60 views
Windows PowerShell authentication
I am running PowerShell 1.0 under Windows XP, attempting to connect to machines running XP, Vista, and Server 2003 with the following command:
gwmi -cl Win32_OperatingSystem -co C …
1
vote
1answer
49 views
Why are Route.EXE and WMI / IpHelper reporting different metrics?
When I call "route PRINT" from the command line in Windows XP I get (? characters are IP addresses I obfuscated intentionally for posting):
Active Routes:
Network Destination …
3
votes
4answers
47 views
What determines the order for sound devices in windows when using winmm.dll?
I am trying to use NAudio to create a multiple sound output application. We have 8 USB sound cards installed. NAudio lets me use all 8 but I can't figure out a pattern for determ …
