Displaying 2 results from an estimated 2 matches for "oobject".
Did you mean:
object
2004 Nov 04
1
Allow access to a share to all members of a container?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have 104,000 users, some of which are in the OU:
ad.network.local\AD\People\IFAS\Hort
Is there an easy way to find all the users in this OU and grant them
access to a share?
Or do I have to list each user individually?
And if so, can I use net user to list the users in an OU?
- -Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6
2006 Jun 21
26
Implementing a boolean "switch" in a Class
I need a single boolean which would be "globally" accessible to all
instances of a class. Seems like the boolean should be in the class
prototype, but I was troubled by the difficulty of setting the prototype
boolean to true. Maybe I''m missing something?
var MyObject = Class.create();
MyObject.prototype = {
bSwitch: false,
... other methods and properties
}
var oMyOb1