Hello! I am using the ie.navigate vbs funtion to load an intranet page for our company on user login to the domain. We also use citrix applications and pass thru authentification with that application. The problem I have is that the script runs again when they login to citrix which launches the page twice and is annoying. Anyone know how to get around that either in the script or in citrix?
That didn't work, but it is probably because of my VB ignorance. I'm no programmer, so I'm just using a simple script. Here it is. Did I plug that code you suggested in right? Also, I don't see that "c:\windows\Application Compatibility Scripts" path on my machine. Should I use a different path? Thanks fo rany help.
---------------------------------------------- ' declare variables dim wshnetwork dim ie
' suppress error messages on error resume next
' set reference to WSH network object set wshnetwork=wscript.createobject("wscript.network")
' remove network drive in case it is already in use wshnetwork.removenetworkdrive "G:", True, True wshnetwork.removenetworkdrive "X:", True, True
It should be there on a Terminal Server. If not you could create a file or folder and trigger on that. You could also get the os version very easily and determin if you log on to a server or workstation.
'People who think they know everything are a great annoyance to those of us who do. ' Quote by Isaac Asimov