thinapps does not start when you use a VPN gateway access

Hello

We have a test lab that we use for demo/test Horizon Workspace.  When we use a Windows 7 VM inside the field of local laboratory which the vApps Horizon are on, all the features - including ThinApps - works fine.  However, when we VPN for the lab and try to launch a Thinapp of Horizon, seems to fail. No error message - just thinapp does not launch.

I have attached the diagnosis local Horizon of my phone files that I used to try to launch Thinpps all in VPNed in, if someone could help me I would be really grateful.  Thank you.

-Allen

Today there is no real solution for this. If you want to manage ThinApps clients must be in the same domain as the ThinApp/workspace repository.

Tags: VMware

Similar Questions

  • Client VPN does not start when you use RDP

    I have a few people that RDP in Windows 2000 Server. The console client VPN starts very well (4.7 4.6 & tried). When accessing remotely via RDP, you try to start the VPN client throws the error:

    "Error 56: the Service VPN from Cisco Systems Inc. has not been started." Please start this service and try again. »

    Helpful service is started and it works very well from the console.

    If this is the case, then I guess that this version may have a bug.

    personally, I always use the v4.0.3(a). I was testing v4.6, however, it kept crashing my machine so finally that I dropped.

  • SpeedGrade CC14 does not open when you use the "Direct Link to Adobe SpeedGrade... "of PremierePro CC14.

    SpeedGrade CC14 does not open when you use the "Direct Link to Adobe SpeedGrade... "of PremierePro CC14.

    I can open the SG of start menu/desktop computer and I can open the PP project in SG very well. The PP project contains 3 deadlines and I take one I want without any problem. Returning to the SG PP works fine as well. It seems only thing doesn't work does not automatically open the PP file and selecting the correct timeline in the Official Journal of the project.

    I had a glance at the "C:\Users\john Bishop images\AppData\Roaming\Adobe\SpeedGrade\8.0\logs\SpeedGrade.log ' but it is not updated when I try to use the link Direct from PP. command It updated when I invoke the start menu/desktop computer SG. Note that none of the other newspaper, the files are updated either (Plugin Loading.log, Database.txt Trace and Debug Database.txt). All these get updated when I run the desktop/start. It would appear that SG is not yet known.

    I uninstalled the SG and the PP and re-installed (all in the directories by default) and everything seemed to go OK but no change.

    I also added 2 political profile the NVIDIA Control Panel, just display a message when loading SpeedGrade.exe and another for a slightly different message when loading SpeedGradeCmd.exe. SG invoking the desktop/start causes the SpeedGrade.exe message to display. Using the 'Direct link' PP file option does not display anything, reinforcing my thought that SG is just never called from PP.

    SP1 Windows 7 Professional 64 bit

    12 GB OF RAM

    2-Intel Xeon E5640 (16 sons) processors

    NVIDIA GeForce GTX580 1536 MB memory graphics

    PS... I used the Adobe cleaning tool noted elsewhere and tried NVIDIA workarounds as well - all to nothing does not.

    Problem solved!

    My Antivirus software was in the way. Once I have updated, things work fine.

    Thanks for your help!

  • Acer toggle display does not display when you use the Fn + F5 key secret on my Acer Aspire 5560

    What it does:

    When you use the Fn + F5 key combination on my Acer Aspire 5560, it brings up a screen changes on the laptop screen for the selection of an external monitor, I am currently using Windows 7 Ulitmate

    Before the problem:

    Display mode switch Acer existed prior to the upgrades of the drivers

    The problem:

    The toggle screen Acer does not display when you use the Fn + F5 key secret on my Acer Aspire 5560?

    Additon Information needed to solve the problem or any other information:

    I would like to know what driver or software operates the Acer toggle display Mode?

    Also where can I find this driver for computer: Acer Aspire 5560 to bring this Acer toggle display Mode function?

    Acer Toggle display Mode: this is a picture of it when you use the Fn + F5 combination:

    Thank you very much Ironfly Ace, it has worked Acer hero of the day

  • PC does not start when you press the power button, after that starts automatically as a ghost!

    I have HP Pavilion a6030in, my pc does not start when I press the power button / stop ther, but she starts automatically after some time after that, it works fine.

    Even once when I closed and leave it for a while and still the problem is not resolved.

    Help, please

    I solved the problem

  • Why Satellite Pro A300 does not start when you press the power button?

    Suddenly my new Satellite Pro A300 does not start correctly when you press the power button. The situation is the following: when I press the power button is displayed the opening of Toshiba (Leading Innovation) and the disappers image quickly. Then there is a black screen for about 30 seconds. There is a rectangular frame with the text Microsoft Corporation under. And nothing happens however long wait.

    In order to get with the trial starting I then shut down the computer by pressing the power button until the computer turns off. ("The hard way to close")
    Now, I press the power button shortly to turn on the computer. Then, the computer starts normally with the photo to open Toshiba and after a few seconds, I wonder to open the computer in safe mode or in normal mode. I now choose to open in normal mode and the computer opens normally and is ready to work.

    What should I do to get a normal departure procedure?

    When the laptop starts normally (after choosing normal mode) stop your laptop properly using START > shut down option. Next launch should be normal.

    When the OS is moving towards the low irregularly will always ask you how to start this new (secure or normal mode).
    The same thing happen on my Satellite A300.

  • It does not work when you use the trigger to check the data of the other table.

    Please help me with this, I put a trigger on a table, but it can not work as I expect.

    case study: a class has many students, one of them is going to match.
    The purpose of this trigger is to check when to choose a student going to match, this student has in his class where it belongs to.
    Oracle version is 10.2.0.1.0.
    --table:
    DROP TABLE STU;
    DROP TABLE CLASS;
    
    create table CLASS(
    CID     VARCHAR2(5)   PRIMARY KEY,
    CNAME   VARCHAR2(20)  NOT NULL,
    SCHOSEN VARCHAR2(5));
     
    create table STU(
    SID     VARCHAR2(5)   PRIMARY KEY,
    SNAME   VARCHAR2(20)  NOT NULL,
    CID     VARCHAR2(5)   NOT NULL REFERENCES CLASS(CID) ON DELETE CASCADE);
    
    --data:
    --CLASS
    INSERT INTO CLASS(CID,CNAME) VALUES(1,'SUN');
    INSERT INTO CLASS(CID,CNAME) VALUES(2,'MOON');
    INSERT INTO CLASS(CID,CNAME) VALUES(3,'EARTH');
    --STU
    INSERT INTO STU VALUES(1,'JACK',1);
    INSERT INTO STU VALUES(2,'TOM',1);
    INSERT INTO STU VALUES(3,'LILY',2);
    INSERT INTO STU VALUES(4,'DUSTIN',3);
    
    --TRIGGER
    CREATE OR REPLACE TRIGGER CHECK_SCHOSEN
    BEFORE INSERT OR UPDATE OF SCHOSEN ON CLASS
    FOR EACH ROW WHEN (NEW.SCHOSEN IS NOT NULL)
    
    DECLARE
    DUMMY INTEGER;
    INVALID_STU EXCEPTION;
    VALID_STU EXCEPTION;
    MUTATING_TABLE EXCEPTION;
    PRAGMA EXCEPTION_INIT(MUTATING_TABLE, -4091);
    
    CURSOR DUMMY_CURSOR (ST VARCHAR2, CL VARCHAR2) IS
      SELECT SID FROM STU, CLASS
      WHERE STU.SID=ST AND STU.CID=CLASS.CID AND CLASS.CID=CL
        FOR UPDATE OF CLASS.SCHOSEN;
    
    BEGIN
      OPEN DUMMY_CURSOR(:NEW.SCHOSEN, :NEW.CID);
      FETCH DUMMY_CURSOR INTO DUMMY;
      IF DUMMY_CURSOR%NOTFOUND THEN
        RAISE INVALID_STU;
      ELSE
        RAISE VALID_STU;
      END IF;
      CLOSE DUMMY_CURSOR;
    EXCEPTION
      WHEN INVALID_STU THEN
        CLOSE DUMMY_CURSOR;
        DBMS_OUTPUT.PUT_LINE('PLEASE RE-ENTER CLASS ID AND STUDENT ID AS CLASS OR STUDENT IS NOT VALID.');
      WHEN VALID_STU THEN
        CLOSE DUMMY_CURSOR;
        DBMS_OUTPUT.PUT_LINE('STUDENT CHOOSE SUCCEFULLY!');
      WHEN MUTATING_TABLE THEN
        NULL;
    END;
    /
    Just copy and paste on it and try to run next:
    UPDATE CLASS
    SET SCHOSEN = 3
    WHERE CID = 1;
    Clearly, you can't student who is 3 as to Member of class 1. Please help me. Thank you.

    Published by: 991096 on March 1st, 2013 02:36

    Published by: 991096 on March 1st, 2013 03:03

    Published by: 991096 on March 1st, 2013 03:11

    Hello

    991096 wrote:
    1. the purpose of this trigger is to check when to choose a student going to match, this student has in his class where it belongs to. Then, when I try to choose 3 student-member of correspondence of class 1, should give me "PLEASE RE-ENTER ID AND STUDENT ID AS CLASS or STUDENT not IS NOT VALID."

    Then do something like this:

    CREATE OR REPLACE TRIGGER CHECK_SCHOSEN
    BEFORE INSERT OR UPDATE OF SCHOSEN ON CLASS
    FOR EACH ROW WHEN (NEW.SCHOSEN IS NOT NULL)
    DECLARE
        sid_found     stu.sid%TYPE;
    BEGIN
        dbms_output.put_line (:NEW.schosen || ' = schosen entering check_schosen');             SELECT  sid
             INTO    sid_found
         FROM      stu
         WHERE     sid     = :NEW.schosen
         AND     cid     = :NEW.cid
         AND     ROWNUM     = 1     -- to avoid TOO_MANY_ROWS
         ;
    EXCEPTION
        WHEN  NO_DATA_FOUND
        THEN
         RAISE_APPLICATION_ERROR ( -20000
                        , 'Please re-enter class id and student id as class ('
                          || :NEW.cid
                          || ') or student ('
                          || :NEW.schosen
                          || ') is not valid.'
                        );
    end;
    /
    

    DBMS_OUTPUT creates only a message. The message may not be displayed, and if this is the case, then the user cannot see it. The DML will still take place.
    I used instead, RAISE_APPLICATION_ERROR to keep the DML does not happen. It displays a message like

    ORA-20000: Please re-enter class id and student id as class (1) or student (3) is not valid.
    

    ' 2 ' game ' means ' an official competition in which two several people or teams competing.

    What individuals or teams are competing in this case?
    In any case, the question wasn't 'that 'game' means', but

    Frank Kulash wrote:
    What do you mean when you say "going to match?

    I think that now you're saying that the new values of (class.cid, class.schosen) must be equal to (or "fit") some existing (stu.cid, stu.sid).

    3. thanks for your tip, I learned how to use '{code} '.

    4. it's really goes with the exception of MUTATING_TABLE. So, how do to fix the trigger to show me INVALID_STU EXCEPTION when I try to choose a student does not belong
    a class?

    Don't refer to the table of class in the trigger, and the error table mutation occur. All the information you need are in the stu table, so there is no need to query the table of class, anyway.

  • Flash does not load when you use the standard account in Windows 7

    I use the latest version of Flash on IE9 RC and on some sites, while that connected to Windows 7 (64-bit) as a standard user, does not Flash, but if I go to my Windows 7 Administrator account and go to the very site where the content Flash won't load, it does not load.

    It's Fancast.com on IE9 RC connected with my standard account of Windows 7:

    http://img695.imageshack.us/i/20110224093054.jpg/

    It's Fancast.com on IE9 RC connected with my Windows 7 admin account:

    http://img403.imageshack.us/i/20110224093021.jpg/

    I tried to uninstall and reinstall Flash and disabling hardware acceleration, but nothing happens.

    Flash sites like YouTube videos, no matter which account I'm connected to.

    Also, when I go to NESN.com on IE9 RC in standard mode, content Flash does not load: http://img684.imageshack.us/i/20110224092957.jpg/

    It started happening yesterday when I upgraded to Windows 7 (64-bit) SP1. I don't know if that has anything to do with it, but it was the last major change made to my system.

    Post edited by: A340-600 - Edit to add correct link.

    It's a matter of current Flash, here is your answer

    http://forums.Adobe.com/thread/729200?TSTART=0

  • Satellite M45: Windows XP does not start when you click on the user name

    I have a portable Satellite M45 in XP service pack 2.
    After starting the PC, he gets that windows journal under the screen, I click on connect my name and nothing happens.

    I have completely reinstalled the operating system, updated all drivers etc, and it was fine for one night.

    The next day, I'm back to square 1 and cannot log in again.
    It starts in safe mode, but I don't know how to start to solve the problem.

    Can someone advise please?
    Thank you

    It's very strange!
    Have you removed any spyware or Trojans?

    Question you is really, really strange, and I guess that the 'bad' software causes such problems...
    It seems that something changes that replaces Userinit.exe.

    A similar question has been described here in the MS knowledge base:
    http://support.Microsoft.com/kb/892893

    It seems that some registry have changed and that's why the connection does not work correctly!

  • Portege M200: registering does not voice when you use the handwriting recognition

    When I'm in "tablet mode" using handwriting text recognition that my Portege M200 regularly presents a message to say, he could not save the speech recognition and I have to switch off the microphone if I do not use it. I often use it to take notes of the meeting so there is always background noise. Usually, text is lost when this message appears. The message will also appear when I save.

    How to turn off the microphone while maintaining the functional handwriting recognition please?

    Just a question: what software do you use for text recognition?

  • Media Center does not close when you use my administrator account

    When I connect account administrator w / my, media library opens on its own. I then close media library but whenever I try to open another program the media center opens. I again close media center, try to open another program and units media center opens instead. It seems to have an impact on the account administrator only. I don't seem to have a problem when logged in user accounts. If anyone has any suggestions, I would be very grateful for your contribution. Aloha.

    Take a look: -.

    When you run an .exe on a Windows Vista-based or Windows 7 computer file, the file may start another program

    http://support.Microsoft.com/kb/950505

    Change the programs that Windows uses by default

    http://Windows.Microsoft.com/en-us/Windows7/change-which-programs-Windows-uses-by-default

    Difficulty of a corrupted user profile

    http://Windows.Microsoft.com/en-us/Windows7/fix-a-corrupted-user-profile

    S.Sengupta Media Center MVP

  • Call the native browser blackberry OS6 does not work when you use this line Browser.getDefaultSession () .displayPage (url);

    Hello

    I need to invode a native browser showing a Web site using the code below

    Browser.getDefaultSession () .displayPage (url);

    She works in OS5, but does not work for the OS6. Please, someone knows how to solve this problem, too much to guide me

    regards + thank you

    codemobiles.com

    Oh, thanks for your response. (the browser is not called, there is nothing happen)

    Hoowever, the problem is resolved. That's my problem forget to add the "http://" in the url.

    regards + thank you

  • Bland Muse - States Panel - Adobe does not work when you use images of filling

    Hi all

    I have a filled rectangle with an image using the control panel of the padding in Muse. I want the rollover State to present a slightly modified image. I have change the rollover State in the States Panel and check the option melted and set it for ease in/out to 0.5 s.

    When I preview/publish my site, the fade does not work. The image flashes just as he would have before the last update.

    The works of bland on the text very well or if I wanted to reduce the opacity of the image in the rollover State, but not one filling to another. Why is this?

    Thanks in advance.

    I see in Firefox, it isn't the transition but Safari it is. So I suspect that this is probably the browser compatibility to have a transition of filling.

  • The function does not properly when you use the shortcut to insert

    Hello everyone. I am using first Pro CC V9.2 on a PC.  I am as well as a Lynda tutorial and told me quite clearly that using the comma key insert a subclip in my sequence.  However, using the shortcut brings in the full clip, not the sub.  I just bring my subclip using a drag and drop, which is really slow me down.  Anyone know what this could be?

    When you perform your subelements, you Restrict toppings to the limits of a verified subitem?

    MtD

  • Windows 7 turn off the display does not work when you use empty screen saver.

    My friend is running Windows 7 x 64 on a desktop and x 32 on a laptop.  He found that if he chooses the screensaver empty (set to 5 minutes) and will display at 10 minutes, the screen never goes round.

    On my laptop, I use the screensaver of ribbons with the same settings and my laptop screen goes off as planned.  However when I go to the screen saver, the display is never off (actually so that empty screen saver was active, my mouse reappears after a certain time).

    There seems to be a Bug with the Windows 7 built in empty screen saver.

    Thoughts, other experiences, etc.? Alex

    Hi archimedes027,

    I hope you are well, I understand you want to listen to music but have no display on your pc.

    If this is correct, there are two options that are available to you first open windows media player, right-click in an empty space at the bottom of the player and select options in the verification of the Advanced box section to enable the screensaver during playback,

    the second option you have is if you use another music player ie itunes then in the section Customization via right click on a empty space on your desktop, select the screen saver options and set it to none, and then click battrey you and together turn display both you need , windows 7 will be dim your office after a short period and in your turn to your screen settings.

    hope this helps let me know

    your

    Ashley

Maybe you are looking for

  • iPad 6 will link to google maps when off the grid

    My iPad 6 will link to Google Maps when I have wi - fi, cellular and wi - fi Assist turns off? I want to test OK cards before the holidays, and my iPad still seems to allow Google Maps. Thanks for your help.

  • It corrects the massive slowdowns

    It corrects the massive downturn that began when I installed El Cap. My iMac went to a crawl every click I did. Incredible. IMAC 27 inch end 2013. 10.11.5 (15F34)

  • Install a video processor in mid-2010 Macbook pro?

    Hello I'm trying to get my computer to run a video game that says it requires 1 GB of video processing. My 2010 Macbook pro has a NVIDIA GeForce 320 M 256 MB graphics card that I'm sure is a built-in Cardinal Ive read a lot about the possibility of u

  • Windows 7 freezes in Normal Mode.

    Hello! I use my Dell Inspiron 17R about 2 months ago and this is a fantastic phone, I use it mainly for video games, music and Movies/TV shows and he ran without fault far. Yesterday, however, the problems began to occur. I could boot up the laptop a

  • Insertion of array type

    I tried a insertion of array type, but the error: ORA-06550 premises collection types are not allowed in SQL statementscreate or replace TYPE string_array IS the TABLE OF THE varchar2 (10);function Insert_account_numbers (in_table string_array) retur