RE: [ActiveDir] Scripting terminology question

2004-02-12 Thread joe
Title: Message



You know I thought so but it has been 18 years since I 
lasted touched FORTRAN and didn't want to say it out loud. 
Thanks!

 joe




From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Steve 
RochfordSent: Wednesday, February 11, 2004 11:53 AMTo: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question

The i, j business in Fortran is because those variables 
default to being integers (as, I think, do k,l,m,n) - loops need integer 
variables so you always used the first available integer variables for your loop 
counters.

Steve


From: joe [mailto:[EMAIL PROTECTED] 
Sent: 09 February 2004 15:54To: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question

i is used for a variety of reasons that go back even before 
hungarian. It can stand for index for instance which is one of the reasons you 
see it as common useage in loops. FORTRAN made big use of i/j/ij. You will often 
see a double loop construct (loop within a loop) with the outer loop of i and 
the inner of j. This is a common two dimensional array iteration. i and j are 
also very common for RTL iterators in c++ code as well now. 



RE: [ActiveDir] Scripting terminology question

2004-02-11 Thread Steve Rochford
Title: Message



The i, j business in Fortran is because those variables 
default to being integers (as, I think, do k,l,m,n) - loops need integer 
variables so you always used the first available integer variables for your loop 
counters.

Steve


From: joe [mailto:[EMAIL PROTECTED] 
Sent: 09 February 2004 15:54To: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question

i is used for a variety of reasons that go back even before 
hungarian. It can stand for index for instance which is one of the reasons you 
see it as common useage in loops. FORTRAN made big use of i/j/ij. You will often 
see a double loop construct (loop within a loop) with the outer loop of i and 
the inner of j. This is a common two dimensional array iteration. i and j are 
also very common for RTL iterators in c++ code as well now. 



RE: [ActiveDir] Scripting terminology question

2004-02-09 Thread Rich Milburn
Title: Message








I was going to ask if this is documented
somewhere, but nevermind, Google seems to be back up ;-)  



Being new to scripting (programming for
people who have no business writing code) Ive picked some of this up by
example, and some of it made sense.  Ive seen i used a lot in 

For i = 1 to 500 

And since i would be an integer, it makes
sense now - I always wondered before why everyone used i instead of a or b or n
etc.  What is the convention for referencing objects though  is it o or
obj? Like objUser or oUser?  Ive seen both a lot.



Rich













From: joe
[mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 08, 2004
12:50 AM
To: [EMAIL PROTECTED]
Subject: RE: [ActiveDir] Scripting
terminology question





I shouldn't evenguess - it has come
out of the land that produced Squeaky Lobster



However here would be my swing at it... It
helps the sub-interfaces (with me making that term up...) such as
IADsContainer, IADsSomethingElse to be easier to read?!?



Note that iADs err IADs preceded AD. 







And for the geekier folks



The thing that always bothered me (and if
there are programmers on this list I am saying one of the FLAME ON phrases for
programmers) was that the i for interface should be lowercase and be something
else to fit in with the Hungarian Notation (props to Simonyi). Also C for class
and X for nested class are annoying. 



For those not familiar with Hungarian
Notation it came out of MS, specifically Charles Simonyi and was an attempt at
a logical way to type variables in c so that you could easily
understand what should be stored in the variable without having to chase back
to the definition. For instance, a zero teminated string would be sz (like
szName)or an integer would be i (iCount) or boolean would be b
(bHellFrozeOver) or one that people see a lot of is Double Word Aka DWORD which
is dw (dwErr). If it is a pointer you prefix it with a p as in pszName or if it
is a pointer to a pointer you tack on two p's. Etc... A handle would beh
as in hMain. Anyway it started with (generally) a lower case prefix and the
first character of the true name was capitalized as was every word
in the variable. szNameOfPerson. Obviously interface couldn't use i because
that was an integer. Using int might be confusing as well, so I guess they
said... hmmm lets go with I not to be confused with l which is for long. ;o)



Hungarian notation is one of those points
of battle with many people. It is actually funny to see the word wars that rage
on about it. My personal feeling is that the longer the module the more likely
hungarian will be used. Small little functions will usually use small crappier
var names because it is fairly easy to see what they should hold, the longer
the function gets the more the hungarian helps out. The one place I never use
it for anymore is anything that is from an STL class. Those for some reason I
always just start as Uppercase and give a good name. 













From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Charlie Kaiser
Sent: Saturday, February 07, 2004
10:27 PM
To: '[EMAIL PROTECTED]'
Subject: RE: [ActiveDir] Scripting
terminology question



And I'm sure
there's some obscure but important reason that they use uppercase for
IAD and lowercase for 's...





:-)















**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 



-Original Message-
From: joe
[mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 07, 2004
6:35 PM
To: [EMAIL PROTECTED]
Subject: RE: [ActiveDir] Scripting
terminology question

Meaning: 42

Origin: A moon around Saturn that blew
apart and is now a ring.

IADs: Interface for Active Directory
Services. http://msdn.microsoft.com/library/default.asp?url="">



TheI is a COM naming guideline thing
indicating this is an interface. Not required by anything that I am aware of
but helps them stick out. 



 joe











From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of deji Agba
Sent: Thursday, February 05, 2004
10:28 AM
To: [EMAIL PROTECTED]
Subject: RE: [ActiveDir] Scripting
terminology question





H...I think this belogs in the
class of the what is the meaning/origin of life? questions :). I
never bothered to ask.























Sincerely,

Dèjì Akómöláfé, MCSE MCSA MCP+I
www.akomolafe.com
www.iyaburo.com
Do you now realize that
Today is the Tomorrow you were worried about Yesterday? -anon

















From: Charlie
Kaiser
Sent: Wed 2/4/2004 7:05 PM
To: '[EMAIL PROTECTED]'
Subject: [ActiveDir] Scripting
terminology question



OK, scripting gurus. I'm trying to wrap my brain around more scripting thanI currently know. I have Robbie's books open and ScriptCenter on the web.Still can't find an answer to a simple yet obscure question. What does IADsstand for? I'm understanding what the IADs interface consists of, but itwould be a lot easier if I knew what the

RE: [ActiveDir] Scripting terminology question

2004-02-09 Thread joe
Title: Message



i is used for a variety of reasons that go back even before 
hungarian. It can stand for index for instance which is one of the reasons you 
see it as common useage in loops. FORTRAN made big use of i/j/ij. You will often 
see a double loop construct (loop within a loop) with the outer loop of i and 
the inner of j. This is a common two dimensional array iteration. i and j are 
also very common for RTL iterators in c++ code as well now. 

I have seen nothing "official" for object, but de facto 
standard seems to be o or obj. I have used both myself in scripts and most 
anyone reading scripts will generally pick up on it relatively quickly. In c/c++ 
things are more specifically typed so depending on the object there could be 
various prefixes used (usually with a p on the front as most objects are class 
instantiations that are dynamic memory and therefore pointers are used to get to 
them or they are stuffed into STL containers or arrays (which an array is a 
pointer to a block of memory)) or in the case of the STL stuff which I 
previously mentioned, no prefix, just a really good name say like a 
vectorstring that holds domains in string format could be DomainList or 
a mapstring,string that holds Domain to Guid mapping would be something 
like DomainToGuid. I don't recall seeing anything out of MS concerning STL 
types. They don't really seem to be into using STL. 

If you 
google hungarian notation you will find lots of info on it, you will also find 
tons of flame wars on it. Usually any time someone mentions it in a newsgroup 
you can bet on an easy 50+ posts to follow... One half of the people saying they 
love it, one half saying they hate it, one half saying they use it when it makes 
sense. One half saying it is a communist MS plot and you shouldn't use it 
because MS is destroying the world and Bill is the antichrist. 


 joe



From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Rich 
MilburnSent: Monday, February 09, 2004 9:07 AMTo: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question


I was going to ask if 
this is documented somewhere, but nevermind, Google seems to be back up 
;-) 

Being new to scripting 
(programming for people who have no business writing code) I’ve picked some of 
this up by example, and some of it made sense. I’ve seen i used a lot in 

For i = 1 to 500 

And since i would be an 
integer, it makes sense now - I always wondered before why everyone used i 
instead of a or b or n etc. What is the convention for referencing objects 
though – is it o or obj? Like objUser or oUser? I’ve seen both a 
lot.

Rich






From: joe 
[mailto:[EMAIL PROTECTED] Sent: Sunday, February 08, 2004 12:50 
AMTo: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question

I shouldn't 
evenguess - it has come out of the land that produced Squeaky 
Lobster

However here would be 
my swing at it... It helps the sub-interfaces (with me making that term up...) 
such as IADsContainer, IADsSomethingElse to be easier to 
read?!?

Note that iADs err IADs 
preceded AD. 



And for the geekier 
folks

The thing that always 
bothered me (and if there are programmers on this list I am saying one of the 
FLAME ON phrases for programmers) was that the i for interface should be 
lowercase and be something else to fit in with the Hungarian Notation (props to 
Simonyi). Also C for class and X for nested class are annoying. 


For those not familiar 
with Hungarian Notation it came out of MS, specifically Charles Simonyi and was 
an attempt at a logical way to "type" variables in c so that you could easily 
understand what should be stored in the variable without having to chase back to 
the definition. For instance, a zero teminated string would be sz (like 
szName)or an integer would be i (iCount) or boolean would be b 
(bHellFrozeOver) or one that people see a lot of is Double Word Aka DWORD which 
is dw (dwErr). If it is a pointer you prefix it with a p as in pszName or if it 
is a pointer to a pointer you tack on two p's. Etc... A handle would beh 
as in hMain. Anyway it started with (generally) a lower case prefix and the 
first character of the "true" name was capitalized as was every word in the 
variable. szNameOfPerson. Obviously interface couldn't use i because that was an 
integer. Using int might be confusing as well, so I guess they said... hmmm lets 
go with I not to be confused with l which is for long. ;o)

Hungarian notation is 
one of those points of battle with many people. It is actually funny to see the 
word wars that rage on about it. My personal feeling is that the longer the 
module the more likely hungarian will be used. Small little functions will 
usually use small crappier var names because it is fairly easy to see what they 
should hold, the longer the function gets the more the hungarian helps out. The 
one place I never use it for anymore is anything that is from an STL c

RE: [ActiveDir] Scripting terminology question

2004-02-07 Thread joe



Meaning: 42
Origin: A moon around Saturn that blew apart and is now a 
ring.
IADs: Interface for Active Directory Services. http://msdn.microsoft.com/library/default.asp?url="">

TheI is a COM naming guideline thing indicating this 
is an interface. Not required by anything that I am aware of but helps them 
stick out. 

 joe



From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of deji 
AgbaSent: Thursday, February 05, 2004 10:28 AMTo: 
[EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
terminology question


H...I think this 
belogs in the class of the "what is the meaning/origin of life?" questions :). I 
never bothered to ask.




Sincerely,Dèjì Akómöláfé, 
MCSE MCSA 
MCP+Iwww.akomolafe.comwww.iyaburo.comDo you now 
realize that Today is the Tomorrow you were worried about Yesterday? 
-anon


From: Charlie KaiserSent: Wed 
2/4/2004 7:05 PMTo: '[EMAIL PROTECTED]'Subject: 
[ActiveDir] Scripting terminology question
OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



RE: [ActiveDir] Scripting terminology question

2004-02-07 Thread Charlie Kaiser
Title: Message



And I'm sure there's some obscure but important reason that they use 
uppercase for "IAD" and lowercase for 's"...
:-)


**Charlie KaiserMCSE, 
CCNASystems EngineerEssex Credit / Brickwalk510 985 0975 
x5083** 

  
  -Original Message-From: joe 
  [mailto:[EMAIL PROTECTED] Sent: Saturday, February 07, 2004 
  6:35 PMTo: [EMAIL PROTECTED]Subject: RE: 
  [ActiveDir] Scripting terminology question
  Meaning: 42
  Origin: A moon around Saturn that blew apart and is now a 
  ring.
  IADs: Interface for Active Directory Services. http://msdn.microsoft.com/library/default.asp?url="">
  
  TheI is a COM naming guideline thing indicating 
  this is an interface. Not required by anything that I am aware of but helps 
  them stick out. 
  
   joe
  
  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of deji 
  AgbaSent: Thursday, February 05, 2004 10:28 AMTo: 
  [EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
  terminology question
  
  
  H...I think this 
  belogs in the class of the "what is the meaning/origin of life?" questions :). 
  I never bothered to ask.
  
  
  
  
  Sincerely,Dèjì Akómöláfé, 
  MCSE MCSA 
  MCP+Iwww.akomolafe.comwww.iyaburo.comDo you 
  now realize that Today is the Tomorrow you were worried about Yesterday? 
  -anon
  
  
  From: Charlie KaiserSent: Wed 
  2/4/2004 7:05 PMTo: 
  '[EMAIL PROTECTED]'Subject: [ActiveDir] Scripting 
  terminology question
  OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



RE: [ActiveDir] Scripting terminology question

2004-02-07 Thread deji Agba



 IADs: Interface for Active Directory Services
Mind you, the referenced page does not "define" the acronym, and that's what he was looking for. but IF it comes from you, I'll buy it any day :). I just haven't seen it defined that way until now, and I've been using it since it came out of Redmond. 



Sincerely,Dèjì Akómöláfé, MCSE MCSA MCP+Iwww.akomolafe.comwww.iyaburo.comDo you now realize that Today is the Tomorrow you were worried about Yesterday? -anon


From: joeSent: Sat 2/7/2004 6:35 PMTo: [EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting terminology question

Meaning: 42
Origin: A moon around Saturn that blew apart and is now a ring.
IADs: Interface for Active Directory Services http://msdn.microsoft.com/library/default.asp?url="">

TheI is a COM naming guideline thing indicating this is an interface. Not required by anything that I am aware of but helps them stick out. 

 joe



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of deji AgbaSent: Thursday, February 05, 2004 10:28 AMTo: [EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting terminology question


H...I think this belogs in the class of the "what is the meaning/origin of life?" questions :). I never bothered to ask.




Sincerely,Dèjì Akómöláfé, MCSE MCSA MCP+Iwww.akomolafe.comwww.iyaburo.comDo you now realize that Today is the Tomorrow you were worried about Yesterday? -anon


From: Charlie KaiserSent: Wed 2/4/2004 7:05 PMTo: '[EMAIL PROTECTED]'Subject: [ActiveDir] Scripting terminology question
OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



RE: [ActiveDir] Scripting terminology question

2004-02-07 Thread joe
Title: Message



I shouldn't evenguess - it has come out of the land 
that produced Squeaky Lobster

However here would be my swing at it... It helps the 
sub-interfaces (with me making that term up...) such as IADsContainer, 
IADsSomethingElse to be easier to read?!?

Note that iADs err IADs preceded AD. 



And for the geekier folks

The thing that always bothered me (and if there are 
programmers on this list I am saying one of the FLAME ON phrases for 
programmers) was that the i for interface should be lowercase and be something 
else to fit in with the Hungarian Notation (props to Simonyi). Also C for class 
and X for nested class are annoying. 

For those not familiar with Hungarian Notation it came out 
of MS, specifically Charles Simonyi and was an attempt at a logical way to 
"type" variables in c so that you could easily understand what should be stored 
in the variable without having to chase back to the definition. For instance, a 
zero teminated string would be sz (like szName)or an integer would be i 
(iCount) or boolean would be b (bHellFrozeOver) or one that people see a lot of 
is Double Word Aka DWORD which is dw (dwErr). If it is a pointer you prefix it 
with a p as in pszName or if it is a pointer to a pointer you tack on two p's. 
Etc... A handle would beh as in hMain. Anyway it started with (generally) 
a lower case prefix and the first character of the "true" name was capitalized 
as was every word in the variable. szNameOfPerson. Obviously interface couldn't 
use i because that was an integer. Using int might be confusing as well, so I 
guess they said... hmmm lets go with I not to be confused with l which is for 
long. ;o)

Hungarian notation is one of those points of battle with 
many people. It is actually funny to see the word wars that rage on about it. My 
personal feeling is that the longer the module the more likely hungarian will be 
used. Small little functions will usually use small crappier var names because 
it is fairly easy to see what they should hold, the longer the function gets the 
more the hungarian helps out. The one place I never use it for anymore is 
anything that is from an STL class. Those for some reason I always just start as 
Uppercase and give a good name. 




From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Charlie 
KaiserSent: Saturday, February 07, 2004 10:27 PMTo: 
'[EMAIL PROTECTED]'Subject: RE: [ActiveDir] Scripting 
terminology question

And I'm sure there's some obscure but important reason that they use 
uppercase for "IAD" and lowercase for 's"...
:-)


**Charlie KaiserMCSE, 
CCNASystems EngineerEssex Credit / Brickwalk510 985 0975 
x5083** 

  
  -Original Message-From: joe 
  [mailto:[EMAIL PROTECTED] Sent: Saturday, February 07, 2004 
  6:35 PMTo: [EMAIL PROTECTED]Subject: RE: 
  [ActiveDir] Scripting terminology question
  Meaning: 42
  Origin: A moon around Saturn that blew apart and is now a 
  ring.
  IADs: Interface for Active Directory Services. http://msdn.microsoft.com/library/default.asp?url="">
  
  TheI is a COM naming guideline thing indicating 
  this is an interface. Not required by anything that I am aware of but helps 
  them stick out. 
  
   joe
  
  
  
  From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of deji 
  AgbaSent: Thursday, February 05, 2004 10:28 AMTo: 
  [EMAIL PROTECTED]Subject: RE: [ActiveDir] Scripting 
  terminology question
  
  
  H...I think this 
  belogs in the class of the "what is the meaning/origin of life?" questions :). 
  I never bothered to ask.
  
  
  
  
  Sincerely,Dèjì Akómöláfé, 
  MCSE MCSA 
  MCP+Iwww.akomolafe.comwww.iyaburo.comDo you 
  now realize that Today is the Tomorrow you were worried about Yesterday? 
  -anon
  
  
  From: Charlie KaiserSent: Wed 
  2/4/2004 7:05 PMTo: 
  '[EMAIL PROTECTED]'Subject: [ActiveDir] Scripting 
  terminology question
  OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



Re: [ActiveDir] Scripting terminology question

2004-02-05 Thread Tony Murray
At a guess I would say it stands for:

Interface to Active Directory services.

Tony

-- Original Message --
From: Charlie Kaiser [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date:  Wed, 4 Feb 2004 19:05:24 -0800 

OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/

List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/


RE: [ActiveDir] Scripting terminology question

2004-02-05 Thread Carlos Magalhaes
Title: RE: [ActiveDir] Scripting terminology question





Here is a wonderful place to start:


http://www.microsoft.com/technet/treeview/default.asp?url="">


It should give you a good foundation to use brilliant tools like Robbie's book.


Which by the way I have posted a review on AMAZON , YAHOO etc for those of you thinking of buy it.


Active directory programming? - http://groups.yahoo.com/group/adsianddirectoryserivces 


Carlos Magalhaes


-Original Message-
From: Tony Murray [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, February 05, 2004 11:52 AM
To: [EMAIL PROTECTED]
Subject: Re: [ActiveDir] Scripting terminology question


At a guess I would say it stands for:


Interface to Active Directory services.


Tony


-- Original Message --
From: Charlie Kaiser [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Wed, 4 Feb 2004 19:05:24 -0800 


OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!


**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info : http://www.activedir.org/mail_list.htm
List FAQ : http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/


List info : http://www.activedir.org/mail_list.htm
List FAQ : http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



-
This email and any files transmitted are
confidential and intended solely for the
use of the individual or entity to which
they are addressed, whose privacy
should be respected.  Any views or
opinions are solely those of the author
and do not necessarily represent those
of the Trencor Group, or any of its
representatives, unless specifically
stated.  

Email transmission cannot be guaranteed
to be secure, error free or without virus
contamination.  The sender therefore
accepts no liability for any errors or
omissions in the contents of this message,
nor for any virus infection that might result
from opening this message.  Trencor is not
responsible in the event of any third party
interception of this email.   

If you have received this email in error please notify
[EMAIL PROTECTED]   For more information about
Trencor, visit www.trencor.net http://www.trencor.net



RE: [ActiveDir] Scripting terminology question

2004-02-05 Thread deji Agba



H...I think this belogs in the class of the "what is the meaning/origin of life?" questions :). I never bothered to ask.




Sincerely,Dèjì Akómöláfé, MCSE MCSA MCP+Iwww.akomolafe.comwww.iyaburo.comDo you now realize that Today is the Tomorrow you were worried about Yesterday? -anon


From: Charlie KaiserSent: Wed 2/4/2004 7:05 PMTo: '[EMAIL PROTECTED]'Subject: [ActiveDir] Scripting terminology question
OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/



[ActiveDir] Scripting terminology question

2004-02-04 Thread Charlie Kaiser
OK, scripting gurus. I'm trying to wrap my brain around more scripting than
I currently know. I have Robbie's books open and ScriptCenter on the web.
Still can't find an answer to a simple yet obscure question. What does IADs
stand for? I'm understanding what the IADs interface consists of, but it
would be a lot easier if I knew what the abbreviation meant.
Thanks!

**
Charlie Kaiser
MCSE, CCNA
Systems Engineer
Essex Credit / Brickwalk
510 985 0975 x5083
** 
List info   : http://www.activedir.org/mail_list.htm
List FAQ: http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/