Link to home
Start Free TrialLog in
Avatar of khdonabergerwidener
khdonabergerwidenerFlag for United States of America

asked on

Is there a way to log an XP machine straight in to the VMware View Client with a default username and password?

We're trying to setup a pilot using vmware view but i can't seem to get the vmware view client to log in with saved credentials so the machine just powers on, logs straight into it's designated vmware view broker and slice.  I want it seemless so the user doesn't get prompted for anything.
Avatar of vmwarun - Arun
vmwarun - Arun
Flag of India image

How are you looking to set this up ?
1.Do you want to use Cached Credentials for every user ?
2.There would be only one user account which would have its password cached and it would be used by all the users alike.
Avatar of khdonabergerwidener

ASKER

Currently we just want to use one Active Directory account (a generic) to log everyone in.
Avatar of conradjones
conradjones

These registry settings will automatically log you int to windows.


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

DefaultUserName
DefaultPassword

Is that what you wanted

There is also a program called shelogin sorry i can't find a link at the moment
The last part of this post might give you some idea of how to do this:
http://communities.vmware.com/message/1221438;jsessionid=35A3EF14C1B0390EC02EA07B09360986

Also, you can also do this with the help of a software called thinlaunch, demo here:
http://www.thinlaunch.com/flashdemo.asp
you can only allow wswc.exe to run when the machine starts up, so the users don't have to login to windows first, all they need to do is to login to the view client to get to their desktop.

hope this helps.
Conradjones, yes but i also want those credentials to log into the view client as well to pass completely through without interaction.
ASKER CERTIFIED SOLUTION
Avatar of bbnp2006
bbnp2006
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
bbnp2006, well currently i have a batch script setup so that wswc will launch and re-launch when closed...do i put them in there?  This is the script:

@echo off
:View
"C:\Program Files\VMware\VMware View\Client\bin\wswc.exe"
goto View

?
yes, you just have to add the proper options at the end of the executable: i.e.
C:\Program Files\VMware\VMware View\Client\bin\wswc.exe -userName <defaultuser> -password <defaultpwd> -domainName <defaultdomain> -screenFull

something like that to pass your default credentials to the wswc.exe program.

Hope it works out for you.

cheers.
That was very helpful, thanks a lot man.  I ended up using what you showed me to edit my script I already had and it works like a charm.  Thanks!