the $runpath variable is being set from the logon.bat
to run the script in debug mode you can do this
logon.bat /d
to run the script by hand.
kix32 logon.kix $runpath="%0\..\"
if groupcode is not bringing back a 1, then for what ever reason the information in the config.ini does not apply to the current user.
groupcode gets this information from the config.ini to see if the logon script should execute the desired module.
code:
l = local groups
|L!Administrators| would be only for users that have local admin
|L!\\server\group| Would check for membership in a Local group on
a remote computer
G = Global groups
|G!Domain Admins| would only execute for users in the "Domain Admins"
global group
|G!MIS\users| Will only execute if a member of the trusted domain
"MIS" and in the global Users of that domain
|G!?user| Will search all global groups using "user" as a wild card
U = Username
|U!smithb| would only execute for user smithb
W = Workstation name
|W!testcomputer1| would only execute if ran on "testcomputer1"
I = ip#
|I!128.2.0.0/255.255.0.0| would only execute for computers in the 128.2.0.0 subnet
|I!128.2.10.11/255.255.255.255| would only execute for the ipaddress 128.2.10.11
what does your config.ini look like?
Bryce
[ 26 March 2002, 15:32: Message edited by: Bryce ]