473,396 Members | 2,011 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

ManagementScope WMI query

Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 12 '06 #1
9 7741
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 12 '06 #2
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 12 '06 #3
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 12 '06 #4
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 12 '06 #5
Are the two domains Windows domains? that is, do they have their own domain controller? What snap-in are you talking about?

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OG**************@TK2MSFTNGP04.phx.gbl...
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 13 '06 #6
They are Windows 2003 domains with their own domain controllers. bb is a child domain of aa.

AD domains and trusts shows:
--aa.local
----bb.aa.local

Properties for aa.local->trusts
Domain Name Trust Transitive
bb.aa.local Child YES

??

thanks, Adrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:OK**************@TK2MSFTNGP04.phx.gbl...
Are the two domains Windows domains? that is, do they have their own domain controller? What snap-in are you talking about?

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OG**************@TK2MSFTNGP04.phx.gbl...
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 13 '06 #7
Ok, transitive trusts in an AD domain are two way by default, I would suggest you to check the security log on the remote box, you also need to check the WMI security privileges.
What happens when you try to access a share on the same remote server?

Willy.
"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OI**************@TK2MSFTNGP05.phx.gbl...
They are Windows 2003 domains with their own domain controllers. bb is a child domain of aa.

AD domains and trusts shows:
--aa.local
----bb.aa.local

Properties for aa.local->trusts
Domain Name Trust Transitive
bb.aa.local Child YES

??

thanks, Adrian


"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:OK**************@TK2MSFTNGP04.phx.gbl...
Are the two domains Windows domains? that is, do they have their own domain controller? What snap-in are you talking about?

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OG**************@TK2MSFTNGP04.phx.gbl...
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 13 '06 #8
1. The security log on the workstation shows nothing.
2. set up a share on the child domain server, and gave it default 'read'. I could see it and share it from the parent domain, no problem.
3. On the child domain workstation I ran computer man->Services and Controls->WMI Management locally and opened up root\cimv2 to everyone

It worked ! Thaaks for the WMI Managment tip!

However local changes are taboo. Is there some group policy where I can enable WMI for the whole child domain to to a parent domain user/group?
And thanks for giving so much of your time. I hope this chain will be helpful to others.
Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP02.phx.gbl...
Ok, transitive trusts in an AD domain are two way by default, I would suggest you to check the security log on the remote box, you also need to check the WMI security privileges.
What happens when you try to access a share on the same remote server?

Willy.
"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OI**************@TK2MSFTNGP05.phx.gbl...
They are Windows 2003 domains with their own domain controllers. bb is a child domain of aa.

AD domains and trusts shows:
--aa.local
----bb.aa.local

Properties for aa.local->trusts
Domain Name Trust Transitive
bb.aa.local Child YES

??

thanks, Adrian


"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:OK**************@TK2MSFTNGP04.phx.gbl...
Are the two domains Windows domains? that is, do they have their own domain controller? What snap-in are you talking about?

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OG**************@TK2MSFTNGP04.phx.gbl...
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 13 '06 #9
Adrian,
I'm a bit surprised that the Everyone ACE was not in the ACL list of the WMI namespace-level security on the domain workstation(s). By default Everyone should be included with Enable Account, Execute Methods, and Provider Write on the local computer granted. What OS are they running? Is it possible that ACE was removed during system install?

Note that "Remote enable" permission must be granted if you want the group to execute WMI remotely , which I would not recommend for security reasons, remote WMI access should only be granted to administrators (which do have this privilege enabled by default) or to a separate group (say "helpdesk"). I don't think you can apply namespace security through a GPO, but I could be wrong, you may get better answers when you post to the WMI NG instead.
Willy.
"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eJ**************@TK2MSFTNGP05.phx.gbl...
1. The security log on the workstation shows nothing.
2. set up a share on the child domain server, and gave it default 'read'. I could see it and share it from the parent domain, no problem.
3. On the child domain workstation I ran computer man->Services and Controls->WMI Management locally and opened up root\cimv2 to everyone

It worked ! Thaaks for the WMI Managment tip!

However local changes are taboo. Is there some group policy where I can enable WMI for the whole child domain to to a parent domain user/group?
And thanks for giving so much of your time. I hope this chain will be helpful to others.
Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP02.phx.gbl...
Ok, transitive trusts in an AD domain are two way by default, I would suggest you to check the security log on the remote box, you also need to check the WMI security privileges.
What happens when you try to access a share on the same remote server?

Willy.
"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OI**************@TK2MSFTNGP05.phx.gbl...
They are Windows 2003 domains with their own domain controllers. bb is a child domain of aa.

AD domains and trusts shows:
--aa.local
----bb.aa.local

Properties for aa.local->trusts
Domain Name Trust Transitive
bb.aa.local Child YES

??

thanks, Adrian


"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:OK**************@TK2MSFTNGP04.phx.gbl...
Are the two domains Windows domains? that is, do they have their own domain controller? What snap-in are you talking about?

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:OG**************@TK2MSFTNGP04.phx.gbl...
Willy,

I thought that as I created bb as a sub domain of aa (bb shows up as a sub tree item from aa in the SnapIns), a trust would be set up automatically. Do you have to set the trust manually and if so how?
Thanks, Adrian
"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
Ok, I see you were talking about IP domains.
Now, windows uses Netbios names to acess the remote windows resources, but this is no issue, Wins takes care of that.
What's important here is to know whether the remote systems are part of the same" Windows" domain or part of a domain with a two way trust with the client's domain. If there is no trust and both client and server belong to different Windows domains, you won't be able to authenticate the client, and the resource (here the WMI service) will be accessed as "anonymous", which has no access privileges, hence the "access denied". One solution is to create a trust between the Windows domains, another is to specify explicit credentials when connecting (see System.Management.ConnectionOptions).

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:eK**************@TK2MSFTNGP03.phx.gbl...
Willy,

Here's more data, I have a Console app that gets WMI serial number thus:

GetSerialNo \\xp1.aa.local\root\cimv2
= SUCCESS

GetSerialNo \\xp10.bb.aa.local\root\cimv2
= (Access denied)
bb is a sub domain of aa. I wish to get WMI data centrally, running the console app on aa, but the report serial numbers of computers on bb.

Is there a particular right for WMI to work from aa across to bb ?
thanks in advance, ADrian

"Willy Denoyette [MVP]" <wi*************@telenet.bewrote in message news:O$**************@TK2MSFTNGP05.phx.gbl...
There are domains and trusted domains, what do you call a subdomain?
Anyway, your problem is due to a lack of access rights to the remote system, that is, the identity used to connect to the remote system is unknown or has no access to the WMI namespace you are connecting with.

Willy.

"Adrian Dev" <ad*********@spam.btconnect.comwrote in message news:ea**************@TK2MSFTNGP02.phx.gbl...
Hi,

I have succesfully used a ManagementScope object to get WMI information about workstations on the current domain using "//xp10/root/cimv1". But if I make a request to a workstation on a sub-domain, the command fails to connect with "Access denied".

Do I need to alter the string somehow to include the sub domain name or could this be a rights issue ?
Thanks in advance, Adrian


Oct 14 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: jaysonsch | last post by:
Hello! I am having some problems with a database query that I am trying to do. I am trying to develop a way to search a database for an entry and then edit the existing values. Upon submit, the...
29
by: shank | last post by:
1) I'm getting this error: Syntax error (missing operator) in query expression on the below statement. Can I get some advice. 2) I searched ASPFAQ and came up blank. Where can find the "rules"...
9
by: netpurpose | last post by:
I need to extract data from this table to find the lowest prices of each product as of today. The product will be listed/grouped by the name only, discarding the product code - I use...
3
by: Harvey | last post by:
Hi, I try to write an asp query form that lets client search any text-string and display all pages in my web server that contain the text. I have IIS 6.0 on a server 2003. The MSDN site says...
4
by: Diamondback | last post by:
I have two tables, WIDGETS and VERSIONS. The WIDGETS table has descriptive information about the widgets while the VERSIONS table contains IDs relating to different iterations of those widgets...
0
by: B111Gates | last post by:
Why do I get an ManagementScope invalid paremeter exeption when I do use a administrative share (c$)? I may be going about this the wrong way however, basically I am writing a Server side client...
5
by: toupeira23 | last post by:
Hello I'm trying to connect to another server via WMI, and it works just fine. But everytime it first tries to connect with the current user credentials, which naturally don't exist on the...
0
by: =?Utf-8?B?YXVsZGg=?= | last post by:
i'm working with WMI and trying to collect a remote machine network shares. i recalled that this did work. but maybe a MS hotfix put an end to this. i cannot seem to get the remote machine data...
0
by: federico | last post by:
Hello, is there a way to limit the time a "ManagementScope.Connect" execution takes to end before it times out by itself? I tried using ConnectionOptions.TimeOut property to no avail. I am...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.