A poor man's "AD" scripting using kixtart in NT4

A very simple kixtart mechanism allows you to create (NT)"active" groups, combining access permissions and scripting. The engine script resides in netlogon, the scripts called for group membership are stored elsewhere, allowing script admins do their job without the need for write access to netlogon.

process group scripting, generic trick
part of script stored in netlogon share
rtscript points to read-only connected disk
enumerate the groups that user is member of
and check if is there is a script with that name
the 100 test is just a safeguard to avoid endless loops

$rtscript="r:scripts"
$groupcount=0
$group=enumgroup($groupcount)
while $group and $groupcount < 100

    Requires Free Membership to View

$script=$rtscript + "groups" + $group
gosub doscript
$groupcount=$groupcount + 1
$group=enumgroup($groupcount)
loop

append .txt to create the name of the script for easy editing
:doscript
$script=$script + ".txt"
if exist($script)
call $script
endif
return


This was first published in August 2001

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.