PC Review


Reply
Thread Tools Rate Thread

Acrobat Standard 7 on Citrix giving users a blank blue screen

 
 
KingCronos
Guest
Posts: n/a
 
      28th Jun 2006
We are running Citrix Metaframe XPa Server (Version 1.0 and build 1494,
with service pack4 and hotfix XE104W2KR02) across our organization and
our operating system is Windows 2000 Server Service Pack 4. Acrobat
Standard version 7 is installed on one of our 2 pass-through servers
and is a published application.

We have had a long running problem with Acrobat Standard 7. After users
have finished using it, they cannot exit it properly. Instead of the
published application logging off it just seems to disconnect, and the
sessions lies idle on the server. When users try and open it up again,
the session window opens up as a completely blank blue screen and they
can do nothing with it. Sometimes users cannot even log off their
Windows sessions as their Acrobat version has not closed.

I have scoured google groups and Citrix forums for an answer, and among
the few instances of others reporting the problem, the only time anyone
reported it fixed is when they upgraded Citrix to version 4!

Has anyone seen this, and does any of the gurus here know how to fix
it?

Thanks.

 
Reply With Quote
 
 
 
 
Vera Noest [MVP]
Guest
Posts: n/a
 
      28th Jun 2006
From http://ts.veranoest.net/ts_faq.htm

Q. My session doesn't logoff when I quit my starting or published
application

A. If you define a Starting application, either in Terminal
Services Configuration, a GPO or in your RDP client, your session
should be automatically logged off when you quit the application.
Sometimes, this doesn't happen and you are left with a session
which only shows the desktop background, without the possibility to
log off the session manually. The cause for this problem is a
process which is still running in your session, preventing it from
closing and logging off. The same can happen after quitting a
Citrix published application.

To solve the problem, open a second connection to the Terminal
Server and check in Task manager which process is keeping the
session from closing. Some anti-virus applications are known to
cause this behaviour.
If you can't avoid running the process, you can use a work-around
to log off your session.

Create a batch file, containing something like this:
cd <path_to_the_folder_containing_your_application>
start /wait <application_executable>
logoff

Now define this batch file as the starting application.
Or use the following vb script to launch your application, and
define the vb script as the starting application.

Dim objWshShell, objExec, strAppExe

strAppExe = "<path_to_the_folder_containing_your_application>
\<application_executable>"
Set objWshShell = CreateObject("WScript.Shell")
Set objExec = objWshShell.Exec(strAppExe)
Do While objExec.Status = 0
WScript.Sleep 500
Loop
Set objExec = objWshSHell.Exec("logoff")

For a different solution to the problem, and a list of known
processes which cause this behaviour, check:
CTX891671 - Graceful Logoff from a Published Application Keeps
Sessions in Active State
http://knowledgebase.citrix.com/kb/e...alID=CTX891671
_________________________________________________________
Vera Noest
MCSE, CCEA, Microsoft MVP - Terminal Server
TS troubleshooting: http://ts.veranoest.net
___ please respond in newsgroup, NOT by private email ___

"KingCronos" <(E-Mail Removed)> wrote on 28 jun 2006 in
microsoft.public.win2000.termserv.clients:

> We are running Citrix Metaframe XPa Server (Version 1.0 and
> build 1494, with service pack4 and hotfix XE104W2KR02) across
> our organization and our operating system is Windows 2000 Server
> Service Pack 4. Acrobat Standard version 7 is installed on one
> of our 2 pass-through servers and is a published application.
>
> We have had a long running problem with Acrobat Standard 7.
> After users have finished using it, they cannot exit it
> properly. Instead of the published application logging off it
> just seems to disconnect, and the sessions lies idle on the
> server. When users try and open it up again, the session window
> opens up as a completely blank blue screen and they can do
> nothing with it. Sometimes users cannot even log off their
> Windows sessions as their Acrobat version has not closed.
>
> I have scoured google groups and Citrix forums for an answer,
> and among the few instances of others reporting the problem, the
> only time anyone reported it fixed is when they upgraded Citrix
> to version 4!
>
> Has anyone seen this, and does any of the gurus here know how to
> fix it?
>
> Thanks.

 
Reply With Quote
 
KingCronos
Guest
Posts: n/a
 
      29th Jun 2006

Thank-you so much for the Citrix article Vera. I applied it yesterday,
and informed some users. I will monitor for the next few days to see
what happens, but it has not recurred yet.

Vera Noest [MVP] wrote:
> From http://ts.veranoest.net/ts_faq.htm
>
> Q. My session doesn't logoff when I quit my starting or published
> application
>
> A. If you define a Starting application, either in Terminal
> Services Configuration, a GPO or in your RDP client, your session
> should be automatically logged off when you quit the application.
> Sometimes, this doesn't happen and you are left with a session
> which only shows the desktop background, without the possibility to
> log off the session manually. The cause for this problem is a
> process which is still running in your session, preventing it from
> closing and logging off. The same can happen after quitting a
> Citrix published application.
>
> To solve the problem, open a second connection to the Terminal
> Server and check in Task manager which process is keeping the
> session from closing. Some anti-virus applications are known to
> cause this behaviour.
> If you can't avoid running the process, you can use a work-around
> to log off your session.
>
> Create a batch file, containing something like this:
> cd <path_to_the_folder_containing_your_application>
> start /wait <application_executable>
> logoff
>
> Now define this batch file as the starting application.
> Or use the following vb script to launch your application, and
> define the vb script as the starting application.
>
> Dim objWshShell, objExec, strAppExe
>
> strAppExe = "<path_to_the_folder_containing_your_application>
> \<application_executable>"
> Set objWshShell = CreateObject("WScript.Shell")
> Set objExec = objWshShell.Exec(strAppExe)
> Do While objExec.Status = 0
> WScript.Sleep 500
> Loop
> Set objExec = objWshSHell.Exec("logoff")
>
> For a different solution to the problem, and a list of known
> processes which cause this behaviour, check:
> CTX891671 - Graceful Logoff from a Published Application Keeps
> Sessions in Active State
> http://knowledgebase.citrix.com/kb/e...alID=CTX891671
> _________________________________________________________
> Vera Noest
> MCSE, CCEA, Microsoft MVP - Terminal Server
> TS troubleshooting: http://ts.veranoest.net
> ___ please respond in newsgroup, NOT by private email ___
>
> "KingCronos" <(E-Mail Removed)> wrote on 28 jun 2006 in
> microsoft.public.win2000.termserv.clients:
>
> > We are running Citrix Metaframe XPa Server (Version 1.0 and
> > build 1494, with service pack4 and hotfix XE104W2KR02) across
> > our organization and our operating system is Windows 2000 Server
> > Service Pack 4. Acrobat Standard version 7 is installed on one
> > of our 2 pass-through servers and is a published application.
> >
> > We have had a long running problem with Acrobat Standard 7.
> > After users have finished using it, they cannot exit it
> > properly. Instead of the published application logging off it
> > just seems to disconnect, and the sessions lies idle on the
> > server. When users try and open it up again, the session window
> > opens up as a completely blank blue screen and they can do
> > nothing with it. Sometimes users cannot even log off their
> > Windows sessions as their Acrobat version has not closed.
> >
> > I have scoured google groups and Citrix forums for an answer,
> > and among the few instances of others reporting the problem, the
> > only time anyone reported it fixed is when they upgraded Citrix
> > to version 4!
> >
> > Has anyone seen this, and does any of the gurus here know how to
> > fix it?
> >
> > Thanks.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
WinXP giving blue screen even in safe mode =?Utf-8?B?Q29kZWd1cnVY?= Windows XP Help 0 13th Nov 2006 10:49 PM
System crashing with blue screen giving STOP 0x9c message =?Utf-8?B?U3RlcGhlbkxX?= Windows XP General 4 9th Dec 2004 09:09 PM
My computer is giving blue screen Stan Windows XP General 1 12th Dec 2003 11:59 AM
Blue screen with lsass.exe then blank blue screen Romo Windows XP General 1 9th Sep 2003 02:41 PM
Post W2k SP4 blank screen on Citrix clients Matthew Harris [MVP] Microsoft Windows 2000 Terminal Server Clients 1 19th Jul 2003 07:05 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:52 PM.