Quantcast
Channel: VMware Communities : Popular Discussions - VMware ThinApp: Discussion Forum
Viewing all 57744 articles
Browse latest View live

ThinApp 5.2.2 - Capture IE8 from Windows XP x64

$
0
0

To resolve a compatibility issue with document scanners and a specific application in our existing IE8 ThinApp captured from Windows XP x86, VMWare engineers recommended that we capture IE8 from Windows XP x64.

 

I have the capture process running fine, pre-scan with the VM running IE6, Install IE8, reboot and post-scan.

 

The browser will run on Windows 10 x64 without issue. It will not run on Windows 7 x64, and crashes with an error message of "Internet Explorer has stopped working". I have tried running the ThinApp log monitor on the Windows 7 machine, but the crash dump is so large it's hard to parse any data out of it.

 

Problem signature:

  Problem Event Name: APPCRASH

  Application Name: Internet Explorer.exe

  Application Version: 8.0.6001.18702

  Application Timestamp: 49b3ad2e

  Fault Module Name: AcXtrnal.DLL

  Fault Module Version: 6.1.7601.19050

  Fault Module Timestamp: 563259ff

  Exception Code: c0000005

  Exception Offset: 00208b00

  OS Version: 6.1.7601.2.1.0.256.4

  Locale ID: 1033

  Additional Information 1: ed7a

  Additional Information 2: ed7a815ccdb2cd237009551d44474c26

  Additional Information 3: 411b

  Additional Information 4: 411b940008a15b80ac9ae3312ce02dec

 

Any thoughts/suggestions?


Running applet on a pc with multiple JRE Version

$
0
0

 

We are trying to virtualize a java application (applet), which uses Java JRE 1.3.0-C. Once virtualized, if is run on a PC without JRE works quietly, if is run on a PC with 1.6 JRE installed Internet Explorer detect a conflict between the two versions and the application does not run. Some idea, suggestion?

Thinapp tips: Open File - Security Warning, Unable to Register

$
0
0

 

I am evaluating Thinapp 4.0.1 and I noticed a couple things. We are streaming the apps and users connect to them with a logon script using Thinreg.

 

 

#1. The error "Unable to register
server\path\app.exe" pops up for users if they are not able to run the app based on AD membership when we use the PermittedGroups setting in the Package.ini.  In another post I saw this may be a bug?  I tried using the Thinreg /Q or /Quiet switch on the logon script.  Why is this warning not suppressed?

 

 

#2.  When launching an app the user sees a Security Warning "The publisher could not be verified" message.  If they click OK the app will run.  Did I forget to do something here?  Example:

 

 

Name:  Microsoft Office Excel 2007.exe

Publisher:  Unknown Publisher

Type:  Application

From:  OurDomain.com

 

Thanks in advance!

 

Scott

 

 

crystal runtime 11

$
0
0

 

I am trying to create a thinapp package that has crystal

launcher.exe that needs to have crystal runtime installed to work.  I

have found that the thinstall package with the following vbs script

 

 

Function OnFirstParentStart

 

 

 

 

 

AddForcedVirtualLoadPath("c:\program files\common files\Business Objects\2.7\bin")

 

 

 

 

 

End Function

works under windows xpsp2 when I run the reports in the thinapp package.

 

 

 

 

 

 

But when I try to run the thinapp package on xpsp3 I

get an error saying "Error loading library: "CRPE32.DLL  Windows Error

Number: 998 - Invalid Access to Memory Location."  when I try to run

the same reports.

 

 

 

 

 

This does work as a full install in xpsp3 and I have tried to capture the installation in sp3.

 

 

 

 

 

Has anyone else had any issues with this and have they found any fixes?  Please let me know if I need to provide any more details.

 

 

Can't thinapp MS Expression Studio 3

$
0
0

 

I have attempted to package MS Expression Studio 3 (including .net 3.5 SP1).

 

 

When I attempt to run Expression Web it just hangs at the green "Microsoft Expression Web 3" splash logo. Process list in Task Manager shows ExpressionWeb.exe using 50% CPU resource.

 

 

Design, Encoder & Super Preview produce unhandled exception errors. Blend does absolutely nothing. The silver lining is that Encoder Screen Capture actually works.

 

 

 

 

 

Can anybody help.......... please!!

 

 

ThinApping iTunes 9.1

$
0
0

 

Hi All,

 

 

 

 

 

Has anyone had much luck ThinApping iTunes 9.1? (new version). I can get it to work on a 32 bit windows XP, but the moment i take it over to Windows 7 64 bit it crashes (even when i comment out the line WoW =64 from the .ini).

 

 

 

 

 

Any help is appreciated.

 

 

 

 

 

Script to kill process in task manager

$
0
0

Hello,

 

I have a problem with a application that I have thinapped, when the user exits the program it remains running in task manager.

 

Then when the user tries to re-launch the program at a later time they recieve an error message that it is already running.

 

I am trying to create a kill.vbs script that will terminate the process after the user closes the program but I am having some difficulties getting results.

 

I have tried some different examples and functions found on the web and on here but the processes still seem to stay running.

 

Is there a way to determine if the script is executing correctly ?

 

I have been using the below script within different functions (OnFirstParentExit etc... )

 

Am I correct in placing this code in a 'kill.vbs' file and saving it to the root folder ?

 

Any suggestions would be much appreciated.

 

 

-


 

Function OnFirstParentExit

 

strComputer = "."

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate{color:#ff0000}}!\{color}" & strComputer & "\root\cimv2")

Set colProcessList = objWMIService.ExecQuery _

("SELECT * FROM Win32_Process WHERE Name = 'xcal.exe'")

For Each objProcess in colProcessList

objProcess.Terminate()

Next

 

End Function

 

-


 

Accessing the local registry from a ThinApp bubble

$
0
0

Hi,

 

We're in the middle of packaging Adobe Acrobat Reader 5.0 with thinapp so one of our business lines can use it under Windows 7.  The reason we're using reader 5.0 is that the business line is relying heavily on Acrobat indexes and 5.0 is the last version to support it. To access the index list, the app is relying on registry values in the "HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\5.0\Search\cIndexes\cIndex" key.  We have about 50 users using it, and none of them uses the same index list. Since the list tops at 256 indexes, we cannot put all indexes in the same bubble.

 

So far, it will only fetch them if we put the information inside the thinapp registry.

 

Since we wanted to avoid making 50 bubbles, we're trying to have the bubble open the host registry to fetch this information.  What we first tried was to change the concerned keys in the HKEY_CURRENT_USER.txt file from "isolation_writecopy" to "isolation_merged", but it didn't work.  We then tried to remove the file, thus letting the application access the registry in writecopy mode, but that didn't work either.  We thought it might be because the keys are not in the Wow6432 node, but we have the same problem with the Thinapp running inside of Windows XP.

 

Is there something we're missing?

 

To help you help us, I provided the HKEY_CURRENT_USER.txt made by default by thinapp, and a .reg file containing an example of the registries specific to one of our 50 users.

 

Thank you in advance.

 

Nicolas Boivin

Application ZTI specialist

Industrielle Alliance


IE 8 package on Windows 7 x64

$
0
0

Good morning,

 

I've been running into an issue where I create an IE 8 package and when I go to run it from Windows 7 x64 it looks like it's launching, it quickly flashes the IE window and then crashes. Doesn't prompt with an error message or anything.

 

The sets I used to create the package I found here, and from various of locations, but here they are below:

 

  1. Windows XP - IE 6 Device - Prescan
  2. Install IE 8 from EXE
  3. Postscan after full install - No Changes or modifications to IE 8 in anyway, application runs fine on host PC
  4. Build Package
  5. Copy IEShims.dll and jscript.dll from Windows 7 machine w/ IE 8, past in the needed folders in the package
  6. Rebuild

 

After doing the above steps and launching it from a client PC is when I run into this issue. Below the is the walkthrough I used, among many others.

 

How to package Internet Explorer 8 - VMware ThinApp Blog - VMware Blogs

 

I searched the topic on these forums and tried the various ways suggested, but nothing seems to be working.

 

Thanks in advance,

JD

thinapps and horizon view 6.2 agent

$
0
0

I have a handful of thinapps that when launched, close immediately when run on a virtual desktop with the Horizon View 6.2 agent.

If I launch these apps on a desktop that has the 6.1 agent I don't have any problems.

Does anyone have any thoughts/suggestions on this?

Thanks,

Don

Jrew.exe Stopped Working; Oracle Client 9i; XP SP1

$
0
0

 

Hi,

 

 

I have captured Oracle Client 9I in XP SP1 OS. The captured thinapp application is working fine in XP SP3. But in XP SP1 Two shortcut s called " Net Manager" Net Assistance" are not launching. It throws "Jrew.exe stopped working, needs to close. " Send error to Microsoft. 

 

 

Source application is working fine both XP SP1 and XP Sp3. 

 

 

Please let me know if any one knows the solution.

 

 

Thanks in Advance.

 

 

Nithya

 

 

Capturing DCOM services

$
0
0

Hi All,

I am capturing an application using Thinapp 4.7.3 which has DCOM services . When captured , i am not able to check the services when i open the virtual explorer and "run as administrator" the "dcomcnfg.exe" in system32 folder(Tested on clean machine).

 

I am not sure whether we can see the DCOM services in the virtual explorer . How can we make sure that DCOM services are captured in the package.

 

I cannot test the package as i am not the end user . Once packaged , it will go for UAT where it will be tested . I don't want the package to fail in UAT.

 

Please share your views and help me!!!

Thinapp application getting memory error with 5.1 but 5.0.1 didnt had the issue

$
0
0

every code base is same .

the application we had uses dll .net 4.0

5.0.1 didnt had this isue .

 

i upgraded to 5.1 and after  running the application 10 min or earlier it suddently crashes upon clicking any where on the screen.

the same is happening in xp ,win7 or win 8 systems.

 

this is the eventvwr message i got.

 

 

i can see the nt0_dll.dl is the new architecture change in 5.0 and it was stable for us in 5.0.1.

VMware ThinApp 5.0 Is NOW AVAILABLE! | VMware ThinApp Blog - VMware Blogs

 

Fault bucket 74070438858, type 1

Event Name: APPCRASH

Response: Not available

Cab Id: 0

 

 

Problem signature:

P1: QNex.exe

P2: 1.0.0.0

P3: 552d7ec8

P4: nt0_dll.dll

P5: 0.0.0.0

P6: 53fda802

P7: c0000005

P8: 0007e8dd

P9:

P10:

 

 

Attached files:

C:\Users\vasanth\AppData\Local\Temp\WERAF50.tmp.WERInternalMetadata.xml

 

 

These files may be available here:

C:\Users\vasanth\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_QNex.exe_126b38ddb9b98912e67a4eefecc0f7b8435b1_8ef80678_13032480

 

 

Analysis symbol:

Rechecking for solution: 0

Report Id: 755087dd-e2ef-11e4-be7d-ecf4bb7282ff

Report Status: 0

Hashed bucket: 7488119094df0491ba9c84d5f852bc43

 

Application: Iqor.QorusNex.UserInterface.exe

Framework Version: v4.0.30319

Description: The process was terminated due to an unhandled exception.

Exception Info: exception code c0000005, exception address 7FE3E8DD

--------------------

 

Faulting application name: QNex.exe, version: 1.0.0.0, time stamp: 0x552d7ec8

Faulting module name: nt0_dll.dll, version: 0.0.0.0, time stamp: 0x53fda802

Exception code: 0xc0000005

Fault offset: 0x0007e8dd

Faulting process id: 0x1594

Faulting application start time: 0x01d076f9b3e33334

Faulting application path: C:\vasanth\Qnex\QNex4.9\QNex.exe

Faulting module path: C:\WINDOWS\SYSTEM32\nt0_dll.dll

Report Id: 755087dd-e2ef-11e4-be7d-ecf4bb7282ff

Faulting package full name:

Faulting package-relative application ID:

Thinstall Lounge

$
0
0

 

Join us each Tuesday at 9AM PST for the Thinstall Lounge. A place where, each week, folks can gather to ask questions about the Thinstall technology and hear from others on how Thinstall is changing the way they look at Application Virtualization. Please feel free to post your ideas for topics of discussion or anything else you would like to see during the session.

 

Register Now

 

 

Travis Sales

travis@vmware.com

VMware, Inc. | SE Specialist, Enterprise Desktop Solutions

 

 

http://www.thinstall.com/company/images/200217522-001_small.jpg

 

 

winhlp32.exe does not work on 64bit OS

$
0
0

I have a few apps that use winhlp32.exe with internal links on the programs menu bar.  When I put them in my Citrix (64bit OS) environment  the help links are broken.

 

I tried copying the winhlp32 files to the following macro folders (%SystemRoot%, %SystemSystem%). I also tried changing the attribute file in each directory to (Full, Merge and WriteCopy), which did not work.

 

 

 

Does anyone have any solutions to this issue?

 

 

 

 

Mike


Content Redirection on Citrix server

$
0
0

Citrix Presentation Server on Windows 2003, with ThinApp'ed applications (MS Office 2003, Adobe Reader 8, etc)

All applications registered with Thinreg /a.

Trying to setup Content Redirection, but no file types are showing for ThinApp'ed applications.

 

 

"Update file types from Registry" has been tried.

 

 

Any ideas, anyone?

 

 

Lars.

Adobe Reader 9 msvcrt80.dll error

$
0
0

Having trouble with thinapp adobe reader 9.  downloaded the standard version with no air.  ran setup extracted the setup files.  On clean VM Workstation with XP SP2 with vmtools installed and all hotfixes installed.  Ran capture from network drive.  Installed,  ran post capture.  On a clean machine with nothing installed when I run the thinapp I get this error. "failed to create process default activation context".   The trace file shows below

 

 

 

        • Potential Errors Detected ---

 

000746 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

000773 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

000800 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

000964 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

000991 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.Windows.Common-Controls\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

001018 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\en-US\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

001045 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\en-US\Microsoft.Windows.Common-Controls\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

001331 00000ab0 00000e74  MSCTF.dll   :7472519a<-kernel32.dll:7c8024a7     ReleaseMutex ->int=0h (HANDLE hMutex=54h) *** GetLastError() returns 288=0x120 : Attempt to release mutex not owned by caller.

002046 00000ab0 00000e74  MSCTF.dll   :7472245b<-kernel32.dll:7c80e93f     CreateMutexA+ ->=F4h (lpMutexAttributes=0h<null pointer> <bad ptr>, BOOL bInitialOwner=0h, LPCSTR lpName=*12DBE8h->"MSCTF.Shared.MUTEX.EHN") *** GetLastError() returns 183=0xb7 : Cannot create a file when that file already exists.

002476 00000000 00000e74                                              CoCreateInstanceEx rclsid={00000000-0000-0000-0000-000000000000}.(no such class)  -> 800401f0h [failed]

003790 00000ab0 00000e74  ????????????:0113189e<-kernel32.dll:7c80ada0       GetProcAddress+ ->=0h<null pointer> <bad ptr> (HMODULE hModule=7c800000h, struct {LPCSTR lpProcName=*1136190h->"FlsAlloc") *** GetLastError() returns 127=0x7f : The specified procedure could not be found.

003818 00000ab0 00000e74  ????????????:01131c23<-kernel32.dll:7c810e51       GetFileType+ ->unsigned long=0h (HANDLE hFile=0h) *** GetLastError() returns 6=0x6 : The handle is invalid.

003865 00000ab0 00000e74  MSCTF.dll   :7473002d<-USER32.dll  :7e41f85b     CallNextHookEx+ ->long=0h (HHOOK hhk=d052fh, int nCode=0h, WPARAM wParam=A0h, LPARAM lParam=12E144h) *** GetLastError() returns 6=0x6 : The handle is invalid.

004332 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

004362 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

004390 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.VC80.CRT\Microsoft.VC80.CRT.DLL' flags=2 -> 0 (failed    )

004533 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

004561 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\Microsoft.Windows.Common-Controls\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

004589 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\en-US\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

004617 00000000 00000e74                                              LoadLibraryExW 'C:\Program Files\Adobe\Reader 9.0\Reader\en-US\Microsoft.Windows.Common-Controls\Microsoft.Windows.Common-Controls.DLL' flags=2 -> 0 (failed    )

004654 00000000 00000e74                                                  Failed to create isolationaware activation context for module C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe

004946 00000000 00000e74                                                  Can't load library MSVCP80.dll which is implicitly loaded by C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe, err=126

006260 00000ab0 00000e74  MSCTF.dll   :74724eb3<-USER32.dll  :7e41f21e     UnhookWindowsHookEx ->int=0h (HHOOK hhk=15104cfh) *** GetLastError() returns 1404=0x57c : Invalid hook handle.

 

 

 

 

 

I used thinapp 4.0.1 to capture.  It supports winSxS so not sure why this is happening?  Any ideas would be great!

How to use AppSync Utility?

$
0
0

 

We recently started using VMWares Thinapp v 4.0.2866 to package applications for our labs and have successfully packaged several apps. Could someone clearify the procedure for using the Appsync Utility to update applications, the documentation on this is not to clear. To test, this is what I have done:

 

 

NOTE: I accepted all the defaults during the capture process.

 

  • I captured Adobe Reader 8.1.4 and stored the whole folder (which includes the Package.ini, bin folder etc...) on a network share

  • I created a folder on the root C:\ of the target machine called "Thinapps"

  • I copied the .exe to the Thinapps folder I created on the target machine, I also copied the AppSync and Thinreg utility (not sure if I needed to???) to this folder

  • I used Thinreg to register the application, the Icon was placed on the desktop and the application opened and worked fine.

 

Now, I want to update the application to Adobe Reader 9.1.

 

 

How do I do this?

 

 

The Sandbox and Inventory  Name for 8.1.4 is Adobe Reader 8.1.4, the Sandbox and Inventory Name for 9.1 is Adobe AIR. Does this make a difference? If so, what do I need to do?

 

 

I know in the package.ini file under AppSync Parameters the semi colon in front of  AppSyncUrl needs to be remove to enable Appsync, but I'm not sure what to do after that.

 

 

I have attached a copy of the Adobe Reader 8.1.4 package.ini file for review.

 

 

Any help would be appreciated, thanks, Mary

 

 

Thindirect concept

$
0
0

Can anyone having anynotes how thindirect will be working.If there pls share those documents.

Any Thin client with support of 3G connection

$
0
0

I am thinking about connect remote offices using the 3G connection. So  is there any thin client which supports 3G. The good choice is TC and 3G  modem is good choice. The office environment is fully one VMware VDI  visualization.

 

 

abirhasan   
Viewing all 57744 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>