I have the same situation with a new installed Windows 7 Professional.
All our WinXP and WinVista are running the login correctly. But on our new Win7 it doesn`t work.

-- snip --
 Code:
MessageBox ("Willkommen bei"+chr(9)+": "+"C/S/G"+chr(10)+ chr(10)+
"Datum"+chr(9)+chr(9)+": "+@day+" "+@mdayno+" "+@month+" "+@year+chr(10)+
"Zeit"+chr(9)+chr(9)+": "+@time+chr(10)+ chr(10)+
"User ID"+chr(9)+chr(9)+": "+@userid+chr(10)+
"Privileges"+chr(9)+chr(9)+": "+@priv+chr(10)+ chr(10)+
"Prozessor"+chr(9)+chr(9)+": "+@CPU+chr(10)+ chr(10)+
"Speed"+chr(9)+chr(9)+": "+@MHZ+" MHz"+chr(10)+
"Speicher"+chr(9)+chr(9)+": "+MemorySize()+" MB"+chr(10)+ chr(10)+
"OS-Name"+chr(9)+chr(9)+": "+@PRODUCTTYPE+chr(10)+
"OS-Version"+chr(9)+": "+@dos+chr(10)+ chr(10)+
"Terminal-Session"+chr(9)+": "+$TS+chr(10)+
"Domain"+chr(9)+chr(9)+": "+@domain+chr(10)+
"Logon Server"+chr(9)+": "+@lserver+chr(9)+chr(9)+chr(10)+
"Computername"+chr(9)+": "+@wksta+chr(10)+
"Node adress"+chr(9)+": "+@address+chr(10)+chr(10)+
$greeting, "Anmelde Information", 4160, 10)

	; *********************************
	; * Laufwerke Client mappen Anfang
	; *********************************

	use * /Delete
	
	IF @TSSESSION <> 1

		if ingroup("Mapping_R_Exchange-Archive")
			use R: "\\SERVER\Exchange-Archive"
		endif

-- snip --

Messagebox appears. TSSESSION is not 1. It works on all the other installations of WinXP and WinVista with the same user. tried for debugging to change the servername with the IP, but it`s not working too.

If I start the script manually from Win 7 and not via ActiveDirectory-Login it works fine.

Any ideas?


Edited by Mart (2009-10-25 12:46 PM)
Edit Reason: Please use code tags when posting code.