1
vote
0answers
58 views

WMI query in VB.NET - access denied

I am getting access denied when running the below code with alternate credentials ('Access is denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)). If I run the whole program under standard ...
0
votes
1answer
700 views

Change IP Address in VB.Net

I am writing a Windows Forms App in VB.Net that will (among other things) change the IP Address, Default Gateway, Subnet Mask, and set the IP Address to Static on an image of Winfows 7 only. Sysprep ...
0
votes
1answer
486 views

VB.NET/WMI - Real-Time Windows Service Monitoring?

So there's an application at my work that installs several Windows services to a server. As a side project, I've been asked to make a simple GUI that will list these services with a "light" (a ...
0
votes
1answer
109 views

Enumerate Properties collection in vb.net

Microsoft's article, ManagementBaseObject.Properties Property, shows how to enumerate the properties in a collection For Each p As PropertyData In properties Console.WriteLine(p.Name) ...
1
vote
1answer
462 views

How do I make a vb.net multi-threaded WMI query application

I'm a beginner so forgive me if this is a stupid question... I have a list of machines that I then want to pull WMI information for (in this case it's OS info) and then update a ListView in a form. ...
0
votes
0answers
126 views

RegistryKeyChangeEvent - New share fires two events

I need to detect share creation through registry changes (I cannot use Events in Security Event Log because for that you need to have Object Audit Enabled and in our ambient we cannot use that because ...
0
votes
2answers
608 views

Best way to run remote VBScript in ASP.net? WMI or PsExec?

I am doing some research to find out the best and most efficient method for this. I will need to execute remote scripts on a number of Window Servers/Computers (while we are building them). I have a ...
2
votes
1answer
641 views

WMI and Win32_Process - determine if 32 or 64 bit?

I wonder if there is any value I can check on win32_process to see if it is a x86 or x64 process? http://msdn.microsoft.com/en-us/library/windows/desktop/aa394372%28v=vs.85%29.aspx
0
votes
1answer
279 views

wmi “log on as” property of a service

i am trying to write a service monitor tool like services.msc where can the attribute "log on as" be found using WMI thanks erez
0
votes
1answer
356 views

Retrieve a list of services running on a server vb.net

I'm looking for a way to get details of the name and status of all services running on a service. I did use the following code: Public Sub GetServices() Dim localServices As ...
0
votes
1answer
95 views

Write an xml document to group information from two different sub routines vb.net

I am trying to retrieve all processes running on a machine with the usual information; process id, name and the memory usage. im trying to export it all under one xml file, however to get all the ...
-1
votes
1answer
909 views

Create remote process via WMI and wait for it to exit

I'm using System.Management to start a process on a remote target via WMI like this: ... InputParameters("CommandLine") = "executable here" OutputParameters = ManagementClass.InvokeMethod("Create", ...
0
votes
2answers
2k views

WMI remote process to copy file

Long story short, my application needs to copy a file to a remote target where UNC connections TO the target might not be possible. However UNC connections FROM the target and BACK to the server will ...
1
vote
1answer
3k views

VB.Net - Local WMI Connection with user credentials

In VB.Net, I'm trying to connect to WMI on my local computer with different credentials (the user won't have admin rights) and I get this exception : « User credentials cannot be used for local ...
1
vote
1answer
400 views

how to check if user has full control permissions on a shared folder?

I use the following code in order to check if certin user exists in the DACL: Dim l_managemantObject As ManagementBaseObject() = CType(securityDescriptor.Properties("DACL").Value, ...
0
votes
1answer
640 views

System.Diagnostics.Process from ManagementBaseObject

I'm executing a remote process using WMI and would like to redirect the StandardOutput of that process back to my program. I have found these code examples: ...
0
votes
1answer
78 views

Strange error reported in this code, please explain?

I put together this bit of code from a few other samples, and I am getting an error I cant understand. On this line in the code below, on the word Observer, Dim Results As ManagementObjectCollection ...
0
votes
1answer
232 views

Want to use WMI to monitor SMART via vb.net

The code below: For Each queryObj As ManagementObject In searcher.Get() objWriter = New StreamWriter("C:\vsl\scripts\results.txt", False) objWriter.Write("Active: {0} ", queryObj("Active")) ...
0
votes
1answer
139 views

variable replacement in WMI method

I am trying to execute a command that works with hard coded variables, but when I try and replace the name test below with selectedname, I cannot get the syntax for escaping the command. The basic ...
2
votes
1answer
2k views

DisconnectedContext was detected when using ManagementObjectSearcher

I am using the following function within a WndProc override: Public Function GetPortName() As String Dim portNameData As String Dim comPortNumber As String Try Dim portSearcher ...
0
votes
1answer
794 views

VB.NET Help with outputting Method Parameters

I am trying to print (to a text file) the fragmentation information give by Win32_Volume class using the DefragAnalysis method and have come up with the following VB.NET code: Dim objReader As ...
0
votes
2answers
830 views

Access CPUIDs (cpu serial numbers) WITHOUT using WMI using VB.net or C# [duplicate]

Possible Duplicate: x86/x64 CPUID in C# I need to retrieve CPU's serial numbers. When using WMI, it is called CPUID. My goal is to access that information WITHOUT using WMI. Unmanaged is ...
0
votes
1answer
3k views

Vb.net - Display each network adapter, enabled or disabled

I'm trying to display the network adapters on the computer running this application. For that I want to be able to display all network adapters, no matter which status they have. Then I want to be ...
0
votes
2answers
920 views

How to change Primary DNS Suffix of a computer in .NET?

I'm working on an auto-configure app for new PC's. I managed to programatically set all the needed parameters, except Primary DNS Suffix of a computer (please remember that this is different from the ...
0
votes
1answer
1k views

WMI and getting CommandLine of running Process in VB.net

This is the command line I want to use inside my VB.NET program. Look for the running process "mpc-hc.exe" and get the commandline of the running process wmic process where name='mpc-hc.exe' get ...
0
votes
0answers
505 views

Creating an HTTP-Redirected Virtual Directopry in IIS 6.0 without specifying physical path & WMI/ADSI?

My question is : Is it possible to create a working IIS 6.0 Virtual Directory with providing Physical Path of the Virtual Directory.? I know that manually, it is not possible via IIS but ...
5
votes
1answer
962 views

Shared folder permission!

I use this code to share folder: Public Sub Share() Dim managementClass As New ManagementClass("Win32_Share") Dim inParams As ManagementBaseObject = ...
4
votes
4answers
4k views

Getting Service Tag from Dell Machine using .net?

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 As ManagementObjectSearcher ...
0
votes
1answer
2k views

How to use VB.NET to query remote server event logs?

I am working on creating a web app that will query event logs on internal servers for events using a specific ID. Since most of the servers are running Windows Server 2003, I cannot use the preferred ...
0
votes
3answers
688 views

What could cause a long delay after reading events from WMI using Vb.Net

I have a windows user control that reads events from the application log of a remote server. I can read in the information alright, and it appears to happen very quickly, however the thread hangs up ...
2
votes
8answers
5k views

How can I find the Harddisk Device Serial Number without using the WMI in .NET?

I want to get the hardwired serial number from the hard disk but NOT using WMI. I tried using WMI code, and it doesn't work on my machine for sure. So is there any alternative in .NET for finding the ...
0
votes
3answers
130 views

Automatically Restarting a chat server application on system restart

I developed a chat application with an attendant chat server. Everything is working fine. The issue now is the fact that whenever the chat server goes down (for instance, the server system shuts down ...
1
vote
3answers
5k views

Any faster method to get Volume Serial number?

Hi I'm using this code to generate machine signature. But it's take noticeable time to execute. Wonder why it's that slow ? Any faster method recommended ? Public Shared Function DriveSN(ByVal ...
2
votes
1answer
883 views

Change DNS Zone from secondary to Primary with WMI ChangeZoneType

Has anyone used the WMI ChangeZoneType DNS command in C#\VB.net before. I get an incorrect parameter exception when i try and invoke the changezonetype command. I get the dns zone that i want to ...
1
vote
1answer
4k views

Best way to query disk space on remote server

I am trying to nail down free space on a remote server by querying all the drives and then looping until I find the drive I am seeking. Is there a better way to do this? Dim oConn As New ...