Thin Client and Virtual Machines Thread, More thinclient testing questions? in Technical; 1. When the thin client connects to the server 2003 through RDP , when the user logs on does it ...
-
14th March 2007, 10:43 PM #1 More thinclient testing questions?
1. When the thin client connects to the server 2003 through RDP, when the user logs on does it pull down all the GPO policies as if they were logging on to a FAT XP machine?
2. If the above answer is yes, do it also map the drives succesfully ie. H:hone drive?
3. Does it also map any printers that aredone through scripts in the GP?
-
-
IDG Tech News
-
14th March 2007, 10:48 PM #2 Re: More thinclient testing questions?
The experience is just the same. You may have to tweak one or two things but for a basic setup its identical.
-
-
14th March 2007, 10:49 PM #3 Re: More thinclient testing questions?
1) yes, if the policy is applied to the server.
2)yes
3)yes but more tricky in a TS environment - you want the printer mapped depending upon which room your in, so the script has to read the clientname - not the hostname in order to map the printer correctly.
-
-
14th March 2007, 11:01 PM #4 Re: More thinclient testing questions?
I'm also starting to explore TS and so far have that:
2) There's a specific policy setting for home dirs on TS: Computer Config>Admin Templates>Windows Components>Terminal Services>TS User Home Dir.
3) I haven't tried it yet, but Ric's printer script looks promising for extracting the client name on TS.
-
-
15th March 2007, 12:49 AM #5 Re: More thinclient testing questions?
I use a derivitive of Ric's printer script, it works fine for us on our TS. You have to spend the time giving your clients intelligent client names but I suppose that goes without saying
-
-
15th March 2007, 12:35 PM #6 Re: More thinclient testing questions?
Code:
' Printer mapping script using TS Client Name
Option Explicit
DIM cName, wshNetwork, strComputer, objShell
Set wshNetwork = CreateObject("Wscript.Network")
Set objShell = CreateObject("WScript.Shell")
'Get client environment variable
strComputer=objShell.expandEnvironmentStrings("%CLIENTNAME%")
cName = Left(strComputer, 3)
Select Case cName
Case "IT-"
wshNetwork.AddWindowsPrinterConnection "\\gwc-mbr-05\Main Office Laser Printer"
wshNetwork.SetDefaultPrinter "\\gwc-mbr-05\Main Office Laser Printer"
End Select
WScript.Quit
-
-
16th August 2007, 11:03 AM #7 Re: More thinclient testing questions?
' Printer mapping script using TS Client Name
Option Explicit
DIM cName, wshNetwork, strComputer, objShell
Set wshNetwork = CreateObject("Wscript.Network")
Set objShell = CreateObject("WScript.Shell")
'Get client environment variable
strComputer=objShell.expandEnvironmentStrings("%CL IENTNAME%")
cName = Left(strComputer, 3)
Select Case cName
Case "IT-"
wshNetwork.AddWindowsPrinterConnection "\\gwc-mbr-05\Main Office Laser Printer"
wshNetwork.SetDefaultPrinter "\\gwc-mbr-05\Main Office Laser Printer"
End Select
WScript.Quit
Sorry to bring up old posts, but I need a bit of help.
If I save this script and get it to run at start up through group policy, will this add printers to my thin clients at start up. ps ( what do I save the code as, is it a .bat file?) sorry scritping novice - please help!
-
-
16th August 2007, 11:37 AM #8 Re: More thinclient testing questions?
-
-
16th August 2007, 12:24 PM #9 Re: More thinclient testing questions?
@tiggmeister: You need the script to be a login script as printers are a 'per user' setting rather than a 'per computer' one. Full script details can be found on the wiki.
-
-
16th August 2007, 01:21 PM #10 Re: More thinclient testing questions?
before my NM left he told me that I need a .bat file that points towards a .reg file that should map the printers and that I need to put it in TS profiles?? Anyone know if that is correct?
-
-
16th August 2007, 03:50 PM #11 Re: More thinclient testing questions?
We use a kix script that points to a CSV file that then allocates the correct printer to the client. Say you have Room 1 with 25 clients, you would name the clients R1-01 to R1-25. The CSV file would only require a line that may look like this:
R1-*, R1-Mono, R1-Colour
Using the * acts as a wild card. So if your client naming convention is kept logical, it makes life easier.
-
-
16th August 2007, 10:56 PM #12 Re: More thinclient testing questions?
@triggmeister: You may be able to do it with a batch file but I know for a fact that my script works because it is in use on a daily basis!
@kestrel: Yours may work but I have not used KIX on thin client... I diteched the KIX script that I used before implementing thin client because I had a few issues with it.
Something you need to remember though is to intall ALL the printer drivers on the terminal servers... you wont be able to use the printers at all if you don't do this ;-)
-
-
17th August 2007, 06:38 PM #13 Re: More thinclient testing questions?
If Kix is set up correctly it works good. I haven't played with the kix script in a very long time now & I have probably forgotten most of it. The last thing that I did was to set it up to log every login (User, client, time, date) just to keep a check on the little sods. Has come in very useful at times.
I normally leave the scripting up to out network support, when something needs doing.
-
SHARE:
Similar Threads
-
By Digger88 in forum How do you do....it?
Replies: 10
Last Post: 7th May 2009, 09:51 AM
-
By gibboap in forum General Chat
Replies: 52
Last Post: 11th December 2007, 02:41 PM
-
By FN-GM in forum Virtual Learning Platforms
Replies: 9
Last Post: 18th November 2007, 07:59 PM
-
By CM786 in forum Hardware
Replies: 5
Last Post: 6th July 2006, 07:58 AM
-
Replies: 4
Last Post: 8th June 2006, 08:14 AM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules