specifying a TS logon script?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi all,

i want to specify a logon script for users for when they log onto a TS server.
they are all in an OU, where I have specified their logon script already.

is it possible to give a logong script for *just* TS (like it is possible
to specify a TS profile)?

tia,
bernard

--
 
You could always use:
%SystemRoot%\System32\UsrLogon.Cmd
or call a new logon script for your TS users from there.
 
Yes. Every user of a TS already runs a standard login script, which
is \system32\UsrLogon.cmd. You can call your custom logon script from
this script. Further details:

195461 - How to Set Up a Logon Script Only for Terminal Server Users
http://support.microsoft.com/?kbid=195461

--
Vera Noest
MCSE, CCEA, Microsoft MVP - Terminal Server
http://hem.fyristorg.com/vera/IT
--- please respond in newsgroup, NOT by private email ---

bluNOboxSPAMthief
 
Yes. Every user of a TS already runs a standard login script, which
is \system32\UsrLogon.cmd. You can call your custom logon script from
this script. Further details:

hi vera and all,

Thanks for the reply..I am presuming this is copied to the system32 folder of the TS server?

Apologies for the (possibly) newbie QÂ!

Is it possible to specify a logon script for different OUs? TS script for sales, for accounts,
etc...?

tia,
bernard
--
 
I believe the system32\UsrLogon.cmd script is for all users on this TS.
From here you can call another logon script (you can place it here in
system32 or anywhere else depending on your path in the CALL statement.)

Call "%SystemRoot%\System32\Usrlogn1.cmd"

I'm not sure if you can differentiate between users (as in Netware "IF
MEMBER OF GROUP sales THEN")
Graham

 
Back
Top