ok I got the rpc service installed and running. I got the kix32 and the three dll's in the netlogon dir along with the script. This is what the bat looks like:@ECHO OFF
REM Login Script for the LSBN
NET TIME \\SCOOBY /SET /YES
%0\..\Kix32.exe login.kix
This is what my script looks like:
break on
;Get Home Directory
Use H: "\\SCOOBY\" + @USERID + "$"
;Get Standard Drives
Use I: \\SCOOBY\Public
Use J: \\SCOOBY\APPS
;Group Areas
IF @USERID = "naginc"
use m: \\SCOOBY\DISC$
ENDIF
IF INGROUP( "DOMAIN USERS" )
USE n: \\SCOOBY\DISC$
ENDIF
$V = "@userid"
? $V
$X = "naginc"
? $X
IF $V = $X
Use K: \\SCOOBY\DISC$
ENDIF
IF "naginc" = "naginc"
use l: \\SCOOBY\DISC$
ENDIF
When i log in under naginc i get H, I, J Drives nothing else. When i run kix32 login.kix from the command prompt i get output like:
00
Administrator
Administrator00
As you can see if i try to do an IF statement i get 0 back. Even that last statement where i compare two strings of exactly the same thing it still returns 0.
I only have a PDC and 25 users. I installed the KXRPC from the NETLOGON Directory and then from the KIXTART directory where all files were unzipped. Neither does anygood and yes the service is started. I started it from the command prompt using net start and i tried starting it from the console also. Do have have to specify interact with desktop or logon as another account for the service?