Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
arrComputers = Array(" ip of local","Ip of system1","ip of system2")
For Each strComputer In arrComputers
Set objWMIService = GetObject("winmgmts:\\" & strComputer & _
"\root\cimv2\Applications\MicrosoftIE")

Set colIESettings = objWMIService.ExecQuery _
("Select * from MicrosoftIE_Summary")
Wscript.Echo "Computername" & strComputer
For Each strIESetting in colIESettings
Wscript.Echo "Version: " & strIESetting.Version
Wscript.Echo "Product ID: " & strIESetting.ProductID
Wscript.Echo "Cipher strength: " & strIESetting.CipherStrength
Next

set ColSet = objwmiservice.ExecQuery("select * from MicrosoftIE_InternetExplorer")
for each strIESetting in colset
wscript.echo "The install is " & strIESetting.InstallDate
next
next

sir

This is my coding sir..

i created for access the IE information's of the local and remote system
The coding works fine while access the IE information in local system . if i try to use the remote system the Getobject() provides the error...

what i want to do now.. for that problem sir.
Posted

1 solution

You need to have Administrator rights on the remote computer to be able to do that.
 
Share this answer
 
Comments
@BangIndia 29-Aug-11 7:28am    
But i have the admin permission only then also i can't able to access..
[no name] 29-Aug-11 7:41am    
You must be an admin on the remote computer, not just your local computer. If your local and remote computers are on the same domain, you must be a domain admin.
@BangIndia 29-Aug-11 7:43am    
ok.. otherwise we can't access ah..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900