Obtaining the OS from another computer
Greetings!
I need a method to determine the OS of computers on my
network by computer name. (IE: I have a list of computer
names, and need to identify their OS). I do not want to
query AD or the Domain, I want to query the workstation
itself. Any ideas?
Thanks for your help!!!! Tag: Server is Un Willing to Process your request Tag: 144417
Sorting CSV File
This is a multi-part message in MIME format.
------=_NextPart_000_0008_01C38C22.CAC06910
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Found this script on the internet in some newsgoup and modified for my =
usage.
Set oFS=3DCreateObject("Scripting.FileSystemObject")
outFILE=3D"zx_above80.csv"
Set outputFILE=3DoFS.CreateTextFile(outFILE,true)
set rs =3D createobject("ador.recordset")
strConnect =3D _
"Driver=3D{Microsoft Text Driver (*.txt; *.csv)};" & _
"DefaultDir=3Dc:\;"
Const adOpenStatic =3D 3
rs.open "select Interface,Peak,URL from zzz_above80.csv ORDER BY Peak =
DESC", strConnect, adOpenStatic=20
'msgbox "Recordcount: " & rs.recordcount
'msgbox "Fields per record: " & rs.fields.count
s =3D "Field names: "
dl =3D ""
for each f in rs.fields
s =3D s & dl & f.name: dl =3D "; "
next
msgbox s
do until rs.eof
s =3D ""
for each f in rs.fields
s =3D s & f.name & "=3D" & f.value & vbcrlf
outputFILE.writeline f.value
next
'msgbox s
'outputfile.writeline vbcrlf
rs.movenext
loop
=20
'msgbox "done..."
outputFILE.Close
Set outputFILE=3DNothing
Set oFS=3DNothing
With the input File (zzz_above80.csv)
Interface,Peak,URL
172.16.24.2_6,92.6,http://servername/mrtg/Files/html/172.16.24.2_6.html
172.16.24.2_6 =
(2),82.2,http://servername/mrtg/Files/html/172.16.24.2_6.html
172.16.24.2_5,94.6,http://servername/mrtg/Files/html/172.16.24.2_5.html
172.16.201.18_3,96.3,http://servername/mrtg/Files/html/172.16.201.18_3.ht=
ml
172.16.201.18_1,85.6,http://servername/mrtg/Files/html/172.16.201.18_1.ht=
ml
172.16.201.58_fastethernet0_1,90.0,http://servername/mrtg/Files/html/172.=
16.201.58_fastethernet0_1.html
172.16.201.34_9,98.9,http://servername/mrtg/Files/html/172.16.201.34_9.ht=
ml
172.16.145.1_serial0_0,98.1,http://servername/mrtg/Files/html/172.16.145.=
1_serial0_0.html
172.16.201.74_fastethernet0_0,92.3,http://servername/mrtg/Files/html/172.=
16.201.74_fastethernet0_0.html
172.16.201.34_1,89.9,http://servername/mrtg/Files/html/172.16.201.34_1.ht=
ml
172.16.24.2_7,82.0,http://servername/mrtg/Files/html/172.16.24.2_7.html
172.16.201.90_serial0_0,91.6,http://servername/mrtg/Files/html/172.16.201=
.90_serial0_0.html
172.16.201.66_fastethernet0_0,99.3,http://servername/mrtg/Files/html/172.=
16.201.66_fastethernet0_0.html
172.16.201.90_fastethernet0_0,90.4,http://servername/mrtg/Files/html/172.=
16.201.90_fastethernet0_0.html
172.16.64.2_2,89.9,http://servername/mrtg/Files/html/172.16.64.2_2.html
172.16.24.2_4,88.0,http://servername/mrtg/Files/html/172.16.24.2_4.html
However - the output I get is=20
172.162
99.3
http://servername/mrtg/Files/html/172.16.201.66_fastethernet0_0.html
172.162
98.9
http://servername/mrtg/Files/html/172.16.201.34_9.html
172.1614
98.1
http://servername/mrtg/Files/html/172.16.145.1_serial0_0.html
172.162
96.3
http://servername/mrtg/Files/html/172.16.201.18_3.html
172.1624
94.6
http://servername/mrtg/Files/html/172.16.24.2_5.html
172.1624
92.6
http://servername/mrtg/Files/html/172.16.24.2_6.html
172.162
92.3
http://servername/mrtg/Files/html/172.16.201.74_fastethernet0_0.html
172.162
91.6
http://servername/mrtg/Files/html/172.16.201.90_serial0_0.html
172.162
90.4
http://servername/mrtg/Files/html/172.16.201.90_fastethernet0_0.html
172.162
90
http://servername/mrtg/Files/html/172.16.201.58_fastethernet0_1.html
172.162
89.9
http://servername/mrtg/Files/html/172.16.201.34_1.html
172.1664
89.9
http://servername/mrtg/Files/html/172.16.64.2_2.html
172.1624
88
http://servername/mrtg/Files/html/172.16.24.2_4.html
172.162
85.6
http://servername/mrtg/Files/html/172.16.201.18_1.html
172.1624
82.2
http://servername/mrtg/Files/html/172.16.24.2_6.html
172.1624
82
http://servername/mrtg/Files/html/172.16.24.2_7.html
The sorting looks like it's working ok
However Field1 (IP address / interface) seems to be getting a bit =
garbled, and the output isn't how I want it
What I need is the output to look the same as the input file (obviously =
sorted in the right way!)
Can someone have a look at the code and tell me where it's going wrong =
and what I can do to fix it?
Many Thanks
DG
------=_NextPart_000_0008_01C38C22.CAC06910
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1226" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>Found this script on the internet in =
some newsgoup=20
and modified for my usage.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Set=20
oFS=3DCreateObject("Scripting.FileSystemObject")<BR>outFILE=3D"zx_above80=
.csv"</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Set=20
outputFILE=3DoFS.CreateTextFile(outFILE,true)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><BR><FONT face=3DArial size=3D2>set rs =3D=20
createobject("ador.recordset")<BR>strConnect =3D _<BR> =
"Driver=3D{Microsoft=20
Text Driver (*.txt; *.csv)};" & _<BR> =
"DefaultDir=3Dc:\;"<BR>Const=20
adOpenStatic =3D 3<BR>rs.open "select Interface,Peak,URL from =
zzz_above80.csv=20
ORDER BY Peak DESC", strConnect, adOpenStatic <BR>'msgbox "Recordcount: =
" &=20
rs.recordcount<BR>'msgbox "Fields per record: " & =
rs.fields.count<BR>s =3D=20
"Field names: "<BR>dl =3D ""<BR>for each f in rs.fields<BR> s =3D =
s & dl=20
& f.name: dl =3D "; "<BR>next<BR>msgbox s<BR>do until =
rs.eof<BR> s =3D=20
""<BR> for each f in rs.fields<BR> s =3D s & =
f.name=20
& "=3D" & f.value & vbcrlf<BR> outputFILE.writeline=20
f.value<BR> next<BR> 'msgbox s<BR> =
'outputfile.writeline=20
vbcrlf<BR> rs.movenext<BR>loop<BR> <BR>'msgbox =
"done..."</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>outputFILE.Close</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><BR><FONT face=3DArial size=3D2>Set outputFILE=3DNothing<BR>Set=20
oFS=3DNothing</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>With the input File =
(zzz_above80.csv)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial=20
size=3D2>Interface,Peak,URL<BR>172.16.24.2_6,92.6,http://servername/mrtg/=
Files/html/172.16.24.2_6.html<BR>172.16.24.2_6=20
(2),82.2,http://servername/mrtg/Files/html/172.16.24.2_6.html<BR>172.16.2=
4.2_5,94.6,http://servername/mrtg/Files/html/172.16.24.2_5.html<BR>172.16=
.201.18_3,96.3,http://servername/mrtg/Files/html/172.16.201.18_3.html<BR>=
172.16.201.18_1,85.6,http://servername/mrtg/Files/html/172.16.201.18_1.ht=
ml<BR>172.16.201.58_fastethernet0_1,90.0,http://servername/mrtg/Files/htm=
l/172.16.201.58_fastethernet0_1.html<BR>172.16.201.34_9,98.9,http://serve=
rname/mrtg/Files/html/172.16.201.34_9.html<BR>172.16.145.1_serial0_0,98.1=
,http://servername/mrtg/Files/html/172.16.145.1_serial0_0.html<BR>172.16.=
201.74_fastethernet0_0,92.3,http://servername/mrtg/Files/html/172.16.201.=
74_fastethernet0_0.html<BR>172.16.201.34_1,89.9,http://servername/mrtg/Fi=
les/html/172.16.201.34_1.html<BR>172.16.24.2_7,82.0,http://servername/mrt=
g/Files/html/172.16.24.2_7.html<BR>172.16.201.90_serial0_0,91.6,http://se=
rvername/mrtg/Files/html/172.16.201.90_serial0_0.html<BR>172.16.201.66_fa=
stethernet0_0,99.3,http://servername/mrtg/Files/html/172.16.201.66_fastet=
hernet0_0.html<BR>172.16.201.90_fastethernet0_0,90.4,http://servername/mr=
tg/Files/html/172.16.201.90_fastethernet0_0.html<BR>172.16.64.2_2,89.9,ht=
tp://servername/mrtg/Files/html/172.16.64.2_2.html<BR>172.16.24.2_4,88.0,=
http://servername/mrtg/Files/html/172.16.24.2_4.html<BR></FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>However - the output I get is =
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT><FONT face=3DArial =
size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>172.162<BR>99.3<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.66_fastethernet0_0.h=
tml">http://servername/mrtg/Files/html/172.16.201.66_fastethernet0_0.html=
</A><BR>172.162<BR>98.9<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.34_9.html">http://se=
rvername/mrtg/Files/html/172.16.201.34_9.html</A><BR>172.1614<BR>98.1<BR>=
<A=20
href=3D"http://servername/mrtg/Files/html/172.16.145.1_serial0_0.html">ht=
tp://servername/mrtg/Files/html/172.16.145.1_serial0_0.html</A><BR>172.16=
2<BR>96.3<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.18_3.html">http://se=
rvername/mrtg/Files/html/172.16.201.18_3.html</A><BR>172.1624<BR>94.6<BR>=
<A=20
href=3D"http://servername/mrtg/Files/html/172.16.24.2_5.html">http://serv=
ername/mrtg/Files/html/172.16.24.2_5.html</A><BR>172.1624<BR>92.6<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.24.2_6.html">http://serv=
ername/mrtg/Files/html/172.16.24.2_6.html</A><BR>172.162<BR>92.3<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.74_fastethernet0_0.h=
tml">http://servername/mrtg/Files/html/172.16.201.74_fastethernet0_0.html=
</A><BR>172.162<BR>91.6<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.90_serial0_0.html">h=
ttp://servername/mrtg/Files/html/172.16.201.90_serial0_0.html</A><BR>172.=
162<BR>90.4<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.90_fastethernet0_0.h=
tml">http://servername/mrtg/Files/html/172.16.201.90_fastethernet0_0.html=
</A><BR>172.162<BR>90<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.58_fastethernet0_1.h=
tml">http://servername/mrtg/Files/html/172.16.201.58_fastethernet0_1.html=
</A><BR>172.162<BR>89.9<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.34_1.html">http://se=
rvername/mrtg/Files/html/172.16.201.34_1.html</A><BR>172.1664<BR>89.9<BR>=
<A=20
href=3D"http://servername/mrtg/Files/html/172.16.64.2_2.html">http://serv=
ername/mrtg/Files/html/172.16.64.2_2.html</A><BR>172.1624<BR>88<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.24.2_4.html">http://serv=
ername/mrtg/Files/html/172.16.24.2_4.html</A><BR>172.162<BR>85.6<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.201.18_1.html">http://se=
rvername/mrtg/Files/html/172.16.201.18_1.html</A><BR>172.1624<BR>82.2<BR>=
<A=20
href=3D"http://servername/mrtg/Files/html/172.16.24.2_6.html">http://serv=
ername/mrtg/Files/html/172.16.24.2_6.html</A><BR>172.1624<BR>82<BR><A=20
href=3D"http://servername/mrtg/Files/html/172.16.24.2_7.html">http://serv=
ername/mrtg/Files/html/172.16.24.2_7.html</A><BR></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>The sorting looks like it's working =
ok</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>However Field1 (IP address / interface) =
seems to be=20
getting a bit garbled, and the output isn't how I want it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>What I need is the output to look the =
same as the=20
input file (obviously sorted in the right way!)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Can someone have a look at the code and =
tell me=20
where it's going wrong and what I can do to fix it?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Many Thanks</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>DG</FONT></DIV>
<DIV><BR></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV></BODY></HTML>
------=_NextPart_000_0008_01C38C22.CAC06910-- Tag: Server is Un Willing to Process your request Tag: 144412
List of files owned by spec. user
Howdy,
I am able to get the owner of a file by quering
"ASSOCIATORS OF {Win32_LogicalFileSecuritySetting='" & fileName & "'} WHERE
" & _
"AssocClass=Win32_LogicalFileOwner ResultRole=Owner"
and so on.
But how to this vice versa?
I want to get a list of all files (e.g. on a spec. drive or dir) owned by a
specific user without quering the owner of each file.
???
Tx
Jürgen Tag: Server is Un Willing to Process your request Tag: 144410
Cookie questions
A few questions relating to cookies, web scripting, and VBS. (When I ask
"how" I specifically mean "how with VBS on MSIE".)
1. How do you set cookies? Also
1a. How do you set an expiration date?
1b. How do you set multiple values?
1c. How do you limit site access? Specifically, my URL is in the form
"users.server.com/~username/" - can I limit my cookie so that it
can't be accessed by "/~user2/"?
1d. Can you set a cookie from a local file (saved to hdd)?
2. How do you delete cookies (programmatically)?
3. Can you dump an array into a cookie without having to step through
each element?
3a. If so, how do you retrieve them back into an array?
4. Is there any way that personally-identifiable info could get set into
my cookie without me knowing it? (The only info I plan on setting is
the above-mentioned array).
5. Is there a size limit for cookies? (Currently, my info ranges from a
few bytes to ~60KB, and the max will most likely increase with time.)
--
auric "underscore" "underscore" "at" hotmail "dot" com
*****
Are you NUTS!? Don't you realize that Granny here STOLE my BRAIN!? You can't join forces with her! Tag: Server is Un Willing to Process your request Tag: 144409
Apply to All Folders - programatically
Hi,
I am wondering does anybody know how to do the following:
1. Open Windows Explorer.
2. Choose Tools - Folder Options...
3. Click View.
4. Then Either Select "Apply to All Folders" or "Reset All Folders"
I have found the registry settings to achive 1-3 above. (Although would be
happier to find a more approved way of doing this). However have not been
able to work out how step 4 works. Is their either a registry setting, a
windows API call or VBScript function that can achieve this?
Thanks,
Ward. Tag: Server is Un Willing to Process your request Tag: 144403
Newbie question - deleting all emails/posts in an Exchange public folder
Hi,
I don't expect anyone to spell it out for me...but can someone
point me in the right direction with regards to deleting all posts in an
exchange 2000 public folder? What functions should I be looking at?
Also, is there a good vbscript primer/crash course about? I have a C
background.
Thanks in advance.
Cheers
Scott Tag: Server is Un Willing to Process your request Tag: 144402
Advice on client and server code
Dear All
[Please ignore the post before this post... Ooooopsss!]
I have created a calendar asp page accessing a SQL server database and all
works well, probably more by luck than good coding. I am able to view the
data displayed on the asp page, but my question is more of a design
structure question than a pure coding one.
I have created an asp page with the following structure:
<HTML>
<HEAD>
<% LANGUAGE = VBScript %>
<!-- #INCLUDE FILE="ADOVBS.INC" -->
Dim I, etc.
Variables Declared
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Functions To load Data into array
</SCRIPT>
</HEAD>
<%
Code to call the functions above
%>
<BODY>
Creates the calendar with data from above.
</BODY>
</HTML>
I get confused with the difference between <% LANGUAGE = VBScript %> and
<SCRIPT LANGUAGE=VBScript RUNAT=Server>. When should I use the former and
when the latter? How and when should I include external vbScript text files
so the code can be read at the server side and a separate script at the
client side?
The HTML I would want produced would be:
<HTML>
<HEAD>
<TITLE>Calendar </TITLE>
<SCRIPT LANGUAGE=VBScript SRC="AdditionalCode.vbs">
</SCRIPT>
</HEAD>
</BODY>
</HTML>
Where to you add the reference to the vbs file in the page so it is read at
the client side and where for the server side?
I hope I have not confused you all too much and you understand what I am
trying to ask. Well done for sticking with this post!
Kagsy Tag: Server is Un Willing to Process your request Tag: 144401
Client & Server code question
Dear All
I have created a calendar asp page accessing a SQL server database and all
works well, probably more by luck than good coding. I am able to view the
data displayed on the asp page, but my question is more of a design
structure question than a pure coding one.
I have created an asp page with the following structure:
<HTML>
<HEAD>
<% LANGUAGE = VBScript %>
<!-- #INCLUDE FILE="ADOVBS.INC" -->
Dim I, etc.
Variables Declared
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Functions To load Data into array
</SCRIPT>
</HEAD>
<%
Code to call the functions above
%>
<BODY>
Creates the calendar with data from above.
</BODY>
</HTML>
I get confused with the difference between <% LANGUAGE = VBScript %> and
<SCRIPT LANGUAGE=VBScript RUNAT=Server>. When should I use the former and
when the latter? How and when should I include external vbScript text files
so the code can be read at the server side and a separate script at the
client side?
The HTML I would want produced would be:
<HTML>
<HEAD>
<TITLE>Calendar </TITLE>
<SCRIPT LANGUAGE=VBScript SRC="AdditionalCode.vbs">
</SCRIPT>
</HEAD>
</BODY>
</HTML>
Where to you add the reference to the vbs file in the page so it is read at
the client side and where for the server side?
I hope I have not confused you all too much and you understand what I am
trying to ask. Well done for sticking with this post!
Kagsy Tag: Server is Un Willing to Process your request Tag: 144400
Client & Server code question
Dear All
I have created a calendar asp page accessing a SQL server database and all
works well, probably more by luck than good coding. I am able to view the
data displayed on the asp page, but my question is more of a design
structure question than a pure coding one.
I have created an asp page with the following structure:
<HTML>
<HEAD>
<% LANGUAGE = VBScript %>
<!-- #INCLUDE FILE="ADOVBS.INC" -->
Dim I, etc.
Variables Declared
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Functions To load Data into array
</SCRIPT>
</HEAD>
<%
Code to call the functions above
%>
<BODY>
Creates the calendar with data from above.
</BODY>
</HTML>
I get confused with the difference between <% LANGUAGE = VBScript %> and
<SCRIPT LANGUAGE=VBScript RUNAT=Server>. When should I use the former and
when the latter? How and when should I include external vbScript text files
so the code can be read at the server side and a separate script at the
client side?
The HTML I would want produced would be:
<HTML>
<HEAD>
<TITLE>Calendar </TITLE>
<SCRIPT LANGUAGE=VBScript SRC="AdditionalCode.vbs">
</SCRIPT>
</HEAD>
</BODY>
</HTML>
Where to you add the reference to the vbs file in the page so it is read at
the client side and where for the server side?
I hope I have not confused you all too much and you understand what I am
trying to ask. Well done for sticking with this post!
Kagsy Tag: Server is Un Willing to Process your request Tag: 144399
speed of string comparisons
Is a binary compare strComp faster or slower than a text compare for
simple text strings? Tag: Server is Un Willing to Process your request Tag: 144389
Urgent Help on Rotate Text
Dear all,
I'm not sure whether this question I should be posting
here, but hopefully can get help from you all.
I'm having a problem here. The problem is that I want to
rotate a text horizontally, for example 'ABCD' into 'DCBA'
but it is in horizontally way, because it is for printing
a report.
Needed help urgently.
Thanks in advance.
Mae Tag: Server is Un Willing to Process your request Tag: 144385
Quick and clean, help needed ..
Im totaly green when it comes to scripting, and im looking for a small
script that would look in the registry at
HKEY_USERS\S-1-5-21-1957994488-484763869-854245398-500\Software\Microsoft\In
ternet Explorer
and see the data in the Download Directory key then open that folder in my
computer or explorer, what ever is easier.
Does anyone have a time to punch it out ?
Im sorry about asking for it complete I usualy dont do this, but I kinda
need it asap,
otherwise I would try to learn how myself...
Thanks Allott !
Glenn H Tag: Server is Un Willing to Process your request Tag: 144378
date input mask
The date input mask "00\/00\/0099" with wrong date return a different date
instead an error. E.g.: 31/04/03 return 03/04/1931! Is there a reason?
Thanks.
Sandrobi Tag: Server is Un Willing to Process your request Tag: 144376
VBScript in a JavaScript page.
Hi,
I have a JavaScript page in which I would like to include VBscript
code. Is this possible? If it is possible, then how will I declare the
language type so that the browser can understand and final question
lets say I am hosting my page thru X server and my page uses database
which is located on Y server, both the servers are 3rd party servers.
Is it possible for me to link the database on Y server thru my page on
X server??
Thanx
--AV Tag: Server is Un Willing to Process your request Tag: 144372
Script number of users in each mailbox store
How is everyone doing today. IM looking for a script that
will be able to list the amount of users per mailbox store
in exchange 2000. Tag: Server is Un Willing to Process your request Tag: 144369
Curious
The HTML below contains a table with 2 rows. Each row has
the same id. (id="r1")
The following Subroutine will display the number of
elements that have id's set to "r1" only if 2 or more
exist... but will error out if only one exists.
Changing the value of one of the id's to something
different will cause the Sub to error-out. Why will it not
return a collection-length of "1"? Is this a bug?
----------------------------------------------------------
<html>
<head>
<title></title>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="0">
<script language = "VBscript">
Sub Test
set a = document.all.item("r1")
msgbox a.length
End Sub
</script>
<body>
<input type="button" value="Display Total" onClick="Test">
<br>
<br>
<table width="100%" border="1" cellspacing="0"
cellpadding="4">
<tr>
<td id="r1">Row 1 </td>
</tr>
<tr>
<td id="r1">Row 2 </td>
</tr>
</table>
</body>
</html> Tag: Server is Un Willing to Process your request Tag: 144361
Good VBScript Debugger
Hi
I just started using VBScript and I am in need of a good
debugger. I have used the ones that come with Excel VBA.
Can anyone recommend one?
Thanks
Jack Tag: Server is Un Willing to Process your request Tag: 144360
See the corrective patch
--xbcxcoygotqcqci
Content-Type: multipart/related; boundary="tppdladumvoaww";
type="multipart/alternative"
--tppdladumvoaww
Content-Type: multipart/alternative; boundary="ajufrxfr"
--ajufrxfr
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Customer
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which fixes
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
Microsoft Product Support Services and Knowledge Base articles =
can be found on the Microsoft Technical Support web site.
http://support.microsoft.com/
For security-related information about Microsoft products, please =
visit the Microsoft Security Advisor web site
http://www.microsoft.com/security/
Thank you for using Microsoft products.
Please do not reply to this message.
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.
----------------------------------------------
The names of the actual companies and products mentioned =
herein are the trademarks of their respective owners.
--ajufrxfr
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:ctisjad" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Customer<BR><BR>
this is the latest version of security update, the
"October 2003, Cumulative Patch" update which fixes
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to protect your computer
from these vulnerabilities, the most serious of which could
allow an attacker to run code on your computer.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:uknznan" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">