client pcs info from server

kaveri

New member
Joined
Jan 18, 2008
Messages
2
Programming Experience
Beginner
hey,
can anyone help me with a problem in .NET.
i need to know how we can get the hardware and software configuration of client pcs from server using .net.
plz help,
kaveri
 
Do some research about WMI, Windows Management Instrumentation. Also try WMI Code Creator.
 
Access Rights Problem!!

hi,

i tried to establish the connection with a remote pc using a managementscope object... but there is an error in this code

Dim scope As ManagementScope
scope = New ManagementScope( _
"\\FullComputerName\root\cimv2")
scope.Connect()

it gives an error like this:-
tha RPC server is unavailable.(exception from HRESULT:0x800706BA)
or things like that..
can you help me how can i change the rights on some other machine so that i may remotely access it..or some other solns..
regards,
kaveri
 
Don't write code yourself until you know it's working on a basic level, WMI Code Creator (or Wbemtest) doesn't make programming errors.
RPC error could be a firewall issue. Also verify that RPC and WMI services are running on remote computer.
 
Back
Top