Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to auto loggin office application in citrix

Status
Not open for further replies.

thafuse

IS-IT--Management
Dec 14, 2003
1
US
Just wondering if anybody can point me in the right direction. We have 3 citrix servers and one nfuse server elite. I would like to know where I can find any white paper explaining when a user clicks on any office application like word it doesn't prompt them for a user name and password.

I'm real new to citrix and need a starting point.
 
If you are referring to the prompt that comes up for the users initials and name then it usually means its the first time they have run Office. Maybe you could look at setting them up with roaming profiles so that they are able to keep their settings?

I wrote a script to also entere these details for the user at login; its a kix script.

;
;*************************************************************
; SETUP USER INFORMATION FOR MS OFFICE 2K
;*************************************************************
; Defines user name under registry for new documents
; Converts environ variable representing name into Hex
; Terry
$HexName=""

FOR $NameLength = 1 TO LEN ("@FULLNAME")
$NameChar = SUBSTR("@FULLNAME",$NameLength,1)
$HexName = $HexName + DECTOHEX( ASC($NameChar) )
$HexName = $HexName + "00"
NEXT

$HexName = $HexName + "0000"

$UserName=$TempName
? "Set Office Username to @FULLNAME"
WriteValue("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\9.0\Common\UserInfo","UserName","$HexName","R

EG_BINARY")
? ""
? "@SERROR"
? ""

;*************************************************************
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top