(This is a repost - was put in the wrong forum the 1st time)
Our Corporate entity is deploying a Citrix based login to our new finance app and we're getting too many "need ICA Client installed" calls for our department to handle since the 400+ end users do not have sufficent rights to install it themselves. (Corporate didn't plan for this somewhere down the line)
I created an ICAinstall user that has just enough rights to install the web client, however I'm having a helluva time coming up with something that would dump the URL to the all users desktop folder for the users. We're running every 32bit MS O/S under the sun and the "Desktop" folder sits in 3 different places under 2K/XP, NT4WS, and 9x. Could someone help out my sorry code here?
code:
IF INGROUP ("OWI")
SELECT ; Checks what OS you are running.
CASE ((@INWIN = 1) AND (@DOS = 5.0))
$OS = "Win2K"
CASE ((@INWIN = 1) AND (@DOS = 4.0))
$OS = "NT4wksta"
CASE (@INWIN = 2)
$OS = "Win9X"
ENDSELECT
USE W: "\\SACIS2\ISSTUFF"
; SHELL "%COMSPEC% /C W:\APPS\OneWorld\Citrix\ica32t.exe"
IF ($OS= "Win2K")
SHELL "%COMSPEC% /C COPY /y W:\APPS\OW1\Citrix\cit*.* C:\docume~1\alluse~1\desktop
ENDIF
else
if ($OS="NT4wksta")
SHELL "%COMSPEC% /C COPY /y W:\APPS\OneWorld\Citrix\cit*.* %windir%\profiles\alluse~1\desktop
ENDIF
else
if ($OS= "Win9X")
Copy "W:\APPS\OneWorld\Citrix\cit*.*" "%windir%\desktop"
ENDIF
ENDIF
ENDIF
ENDIF
Thanks in Advance,
Mike