Launch Wine programs from menu: FIle not Found

I have installed eMule with wine, and get the "File not found" message when running it from the menu.
This was discussed in THIS thread, but none of the possible solutions work for me
Original:
env WINEPREFIX="/home/daerunarch/.wine" wine C:\\windows\\command\\start.exe /Unix /home/daerunarch/.wine/dosdevices/c:/users/Public/Start\ Menu/Programs/eMule/eMule.lnk
Doesn't work
Edited the menu entry with alacarte:
wine 'C:\Program Files\eMule\emule.exe'
doesn't work
wine '.wine/drive_c/Program Files/eMule/emule.exe'
doesnt' work
wine "/home/username/.wine/drive_c/Program Files/eMule/emule.exe"
doesn't work
wine "/home/username/.local/share/applications/wine/Programs/eMule/eMule.desktop"
dosen't work
Also all the previous begining with "env WINEPREFIX=" instead of "wine". Nothing worked o_0 What should I try now?
Last edited by Daerun (2011-02-13 23:36:46)

Null, the problem is not running from gnome menu. I can make it run from console, and it shows these messages, just in case there's some hint here:
wine '.wine/drive_c/Program Files/eMule/emule.exe'
wine: cannot find L"C:\\windows\\system32\\winemenubuilder.exe"
err:wineboot:ProcessRunKeys Error running cmd L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),4,3,(nil),0,(nil)) - stub!
err:ole:CoGetClassObject class {5c63c1ad-3956-4ff8-8486-40034758315b} not registered
err:ole:CoGetClassObject class {5c63c1ad-3956-4ff8-8486-40034758315b} not registered
err:ole:create_server class {5c63c1ad-3956-4ff8-8486-40034758315b} not registered
fixme:ole:CoGetClassObject CLSCTX_REMOTE_SERVER not supported
err:ole:CoGetClassObject no class object {5c63c1ad-3956-4ff8-8486-40034758315b} could be created for context 0x17
err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this requires special permissions.
err:winediag:IcmpCreateFile Failed to use ICMP (network ping), this requires special permissions.
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033c914
fixme:richedit:ME_HandleMessage EM_GETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
fixme:richedit:ME_HandleMessage EM_GETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
fixme:richedit:ME_HandleMessage EM_GETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
fixme:shell:IAutoComplete2_fnInit ACO_FILTERPREFIXES not supported
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca34
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca38
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca4c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca1c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca1c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca1c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca1c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca1c
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca48
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033ca48
fixme:shell:IAutoComplete2_fnInit ACO_FILTERPREFIXES not supported
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033c9e8
err:listview:LISTVIEW_WindowProc unknown msg 108a wp=00000000 lp=0033c9e8
fixme:richedit:ME_HandleMessage EM_GETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETLANGOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
Karol, that command didn't do anything for me...
Turvyc, I know about aMule and have used it, but stuck to eMule because of some features it didn't have. If I can't run eMule I might as well return to aMule, as I know how to migrate configurations.

Similar Messages

  • YouTube embedded video shows blank in Safari firefox says file not found

    Dear all,
    I have embedded YouTube and Vimeo videos in a website in adobe dreamweaver 5.5, MacOS 10.7.5. They show blank in Safari, and firefox says (translated from German): "File not found. The files under (embed code) could not be found." My slightly older embeddings (also "i frame") in the same website work fine though.
    I have updated today Safari, Flash Player, and Java; reset both browsers, nothing changed.
    Have spent ours googling this already, no help.
    Thanks for helping.
    Tobias

    Check with Adobe. They may be able to offer some suggestions.
    Dreamweaver Help

  • File not found error on some computers running the same program

    Dim pList As System.Diagnostics.Process
    retval = 0
    PTRName = "F:\myprogram.exe"
    If My.Computer.FileSystem.FileExists(PTRName) Then
    System.Disgnostics.Process.Start(PTRName)
    pList = System.Diagnostics.Process.GetProcesses
    For each proc As System.Diagnostice.Process in pList
    If proc.ProcessName = "myprogram" Then
    retval = proc.Id
    Exit For
    End If
    Next
    If retval > 0 then
    'continue
    Else
    'error message
    End If
    End If
    PTRName = "F:\myprogram.exe"
    If My.Computer.FileSystem.FileExists(PTRName) Then
    Retval = Shell(PTRName,4)
    If Retval > 0 Then
    'Continue
    Else
    'Error message
    End If
    End IF
    I have created a program which:
    opens a file
    reads the records and massages the records
    writes the records to a new file
    Launches a program that uses the resultant file.
    The program was written on Windows xp MCE using Visual Studio 10. The resulting program works fine.
    I places The executable and the input file onto a flashdrive, and then tested it on other machines.
    Two of the machines are both Win 7 Pro 64bit with .Net 4. On one machine it works great. On the other I get a "File not found" error when starting the second process. This is the failing code:
    The problem is with the Shell command. When I rewrite it as:
    it works on both machines
    So my question is: Why does exactly the same code (The same flashdrive was used on both machines) work on one machine and not the other (when both machenes appear to be at the same level)?
    In both cases I verify the file exists in the correct place before I try to start it.
    Any help would be appreciated.
    Thanks in advance
       John 

    The use of F is just an example. I use:
    OutputPath = My.Application.Info.DirectoryPath 'Where app is run from (root)
        'Make sure the path ends in \
        If VB.Right(OutputPath, 1) <> "\" Then
          OutputPath = OutputPath & "\"
        End If
    to get the correct information.
    Then
      PTRName = OutputPath & "myprogram.exe"
    BTW "myprogram.exe" is not the correct name it is just an example.
    Sorry if this caused confusion
    However all of this is not the point. If:
     My.Computer.FileSystem.FileExists(PTRName)
    is true then the file is in the right place. Therefore:
    Retval = Shell(PTRName,4)
    must also work. However it does not on some machines.
    Is the problem in .Net, VB or VS because it is not in my code. 
    I have also used a routine similar to you (in VB6) to find a particular volume, but used the volume label. That worked better in my case.
    John

  • How can I stop Firefox from opening (to "File Not Found") when opening my Opera browser?

    Ever since I installed Opera 10.61 on my new computer (Windows 7 Ultimate operating system), whenever I open Opera, Firefox opens one second later with the following error message:
    '''File not found '''
    Firefox can't find the file at /C:/Users/Nasheed/AppData/Local/Opera/Opera/temporary_downloads/client-en.xml.
    * Check the file name for capitalization or other typing errors.
    * Check to see if the file was moved, renamed or deleted.
    TRY AGAIN.
    <nowiki>****************************************************</nowiki><br />
    This happens EVERY TIME I OPEN THE OPERA BROWSER. How can I stop this from happening? I'm stumped.
    [EXTRA INFO - I was unable to enable Firefox to access my previous profile on the new computer (despite putting the old profile in the appropriate Mozilla Firefox folder. So, there are now two profiles in that location.
    After reading the answer to another forum member's question, I attempted to resolve the problem using Profile Manager, but I was unable to locate the Profile Manager. The Windows "Search" feature is not enabled on my new computer (nor can it be enabled from the Customize Start Menu options).]

    Thank you for your response, Cor-el.
    I had Opera set as my default browser since this began happening. I changed my default browser back to Firefox mainly because having Firefox open one or two seconds every time I open Opera was/is such a nuisance.
    I believe this problem began because I attempted to manually transfer the files from my old computer to the new one (via the backed up files in my external drive). I was unfamiliar with Windows 7 when I did this. Microsoft changed the file set up from what I had been used to in Windows XP. I used XP for six years before being exposed to Windows 7 (I never had Vista).
    I'm almost sure this problem has something to do with where I placed the application data when I was trying to reestablish the program set up on the new computer.

  • When trying to launch ITunes I get an error message saying that application fail to start because MSVCR80.dll file not found. Reinstalling app may fix problem.

    When trying to launch ITunes I get an error message saying that application fail to start because MSVCR80.dll file not found. Reinstalling app may fix problem.

    I've just (finally) managed to fix this problem today. I checked the Apple Support forums, and it seems a lot of people are having the same problem.
    I rang the Apple Support line, and the very helpful man (thanks Alan!) talked me through it stage by stage. If you go to the following page on the internet: http://support.apple.com/kb/TS5376   it takes you through the process. WARNING - it takes a little time!
    Basically, the first thing you have to do is go to your Program Files and double click on your iTunes folder. There'll be a number of files with the suffix .dll - you need to move all the .dll files from that folder to your desktop - you can simply click and drag them on the desktop..
    Next, uninstall iTunes - go to Control Panel / Add/Rempve Programs and when the list comes up remove iTunes. This will take a few minutes... Then reboot your computer.
    Next, go back to Control Panel / Add Remove and Remove - IN THIS ORDER -
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot again!
    Next, check in your Program Files that the iTunes folder is completely gone - if it has, great: if it hasn't, right-click on the folder and press Shift and Delete - it will say "Are you sure you want to completely remove the folder "iTunes"? Click on "Yes".
    Reboot!
    Then go to the iTunes download page and voila! It should download iTunes without any problems... well it did for me.... Good luck!

  • File Not Found Error When Rendering Motion Menu

    Hi there.
    I'm attempting to render a motion menu and keep getting the error "file not found". All of the necessary files are available and no specific missing file is mentioned.
    The background video is a .m2v, and there is a .wav audio file too. They are 42 seconds long.
    I tried other Encore projects and 2 others are doing the same thing, or coming up with a 'General Error'.
    I have cleaned the Database in the Media Cache. I have uninstalled and reinstalled Encore. There are no updates available.
    Any suggestions?
    Thanks,
    David

    Yeah, it would have taken me quite a while to redo the menus completely!  So I was very thankful for the save to menu template option.
    When I (not recently, thank goodness!) have a project I suspect of corruption, I create a new project, and just "import as menu" from the old menu subdirectory. The method you used deletes the  menus, so exporting the menus helps.
    Mac OS 10.6.8
    That's Snow Leopard, right?
    Actually, I'm not really sure about Encore terminology (this was my first project), but the only motion I have in my menus is the line that appears under the button text when that button is highlighted.  At one point I had the photo buttons (for videos) set to animate, but I removed that option.
    A highlight is just a highlight, not "motion." Animated buttons, when rendered as the menu, are actually a video background, so that was a motion menu.
    All 30 slideshows are actually individual video timelines.  They were created and exported from Photosho Lightroom 3.
    In Encore terminology, those are just videos - many Encore users choose to do slideshows as videos.
    I had originally tried creating each one as a slideshow from within Encore, but I was DEEPLY dismayed by how slow Encore became, evetually locking up at least once per hour.  It was ridiculous, even taking into account the fact that it is not a 64-bit program.  I planned to leave 2 of the songs as Encore slideshows (Lightroom can't do Pan/Zoom), but in the end I had to replace them with mp4s because the slideshows just would not play.  Really, it was about 11 wasted days plus 4 productive days to get me through the project!
    Encore has a variety of problems with slideshows, but I suspect from your description that you were using very large images. Scaling them down a bit can improve performance.

  • "File not found" error when I try to render an animated menu (on mac) Encore CS4

    I'm making a dvd with at least 2 animated menus. It means that I have a 1 movie in the background of each menu. Over my background, I have 3 thumbnail buttons which contain a small piece of movie animated movie too. When I try to to view my menus, in order to see the animation in the background and in the thumbnails I need to render the animation through File - Render - Motion menus.
    The problem is that it works for the first menu but then when I continue my navigation to the second menu that has animation in background and thumbnails too, if I choose Render Motion menus,after 3/4 of the rendering it says "file not found" even if all the files are well in place in their folders.
    Does anyone would have an idea of how to resolve this stupid problem that prevents me to burn my project on a DVD since the same errors will appear during the burning process (I use a mac with Encore CS4). Is it a bug? What are the solutions? Thanks for answering.
    Steven.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • Error 7: File not found occurs in 8.2 from transition of 4.1. Specifying the file in file dialog returns error although file is in the directory.

    Copied a program from 4.1 to 8.2 recently and receive an error 7: File not found at open file+.vi.  The program is built so a file dialog will pop up and ask for the destination of the file.  Eventhough there is a file in the specified directory, an error is returned.  Running open file+.vi by itself returns no error with the same file designation.  Any clues?

    noviceak,
    Welcome to the NI Discussion Forums.
    I created a quick VI in LabVIEW 4.1 that displays a file dialog and then passes that file path to "Read Characters from File.vi" (which in turn calls Open File+.vi).  I then opened this file in LabVIEW 8.2 and ran it successfully (see code screenshot below).
    When you say there is a file in the specified directory are you using the file dialog to browse to the directory or to select the specific file?  Open File+.vi expects the path to a file rather than a directory - that is C:\folder\file.txt rather than C:\folder.  You might also want to create an indicator or probe to see what path is being passed to Open File+ to ensure it is what you expect.
    I feel like I should also say that in the days (years) inbetween LabVIEW 4.1 and 8.2 the file operation VIs have changed significantly.  While the old Open File+.vi still lives in vi.lib for compatibility purposes we no longer recommend using it for new applications.
    I hope this helps and again, welcome to the community.
    Regards,
    Simon H
    Applications Engineer
    National Instruments
    http://www.ni.com/support/
    Message Edited by Simon H on 01-18-2007 08:01 PM
    Message Edited by Simon H on 01-18-2007 08:03 PM
    Attachments:
    LV4 File Dialog.png ‏3 KB

  • File Not found error when calling Form Post Method to a JSP from JSP Portlet

    I have built a set of JSP forms using post method to call other JSPs. Normally, the code looks like
    <form name="MyForm" action="MyJsp.jsp" method="post">
    I migrated the calling form containing this code to a portlet, but not the MyJsp.jsp. When I submit the form, I get a file not found in Jserv.log
    Exception:javax.servlet.ServletException: java.io.FileNotFoundException: D:\servlet\RegisterCompany.jsp (The system cannot find the file specified)
    [14/06/2001 13:59:59:679 PDT] JspServlet: unable to dispatch to requested page: Exception:javax.servlet.ServletException: java.io.FileNotFoundException: d:\oracle\isuites\apache\apache\MyJsp.jsp (The system cannot find the file specified)
    I notice that launching the calling jsp from a portlet, my opriginal context that uses ../Apache/Apache/htdocs is not being searched for the JSp. Why is this? Moreover, I try to set up an Alias in httpd.conf file to the this director and use it with the jsp in the action tag, but still get an error that my jsp servlets/Myjsp can't be found. Why is it insiting on looking at servlets context instead of htdocs.
    I have none of these issues outside of Portal30 using IAS.
    regard

    Initially, I couldn't do this unless I moved tghe jsp's up to the root directory of IAS, i.e ../Apache/Apache. Nomrally, htdocs is my doc directory for IAS. I could not do http:\\myUrl\htdocs\myJsp. If I tgried this, I got an error in Apache error logg that said can't find file ..\htdocs\htdocs\MyJsp.jsp.
    If I just tried the the URL http:\\myUrl\MyJsp.jsp with Jsp file in htdocs, I would get an error in the Jserve log that file d:\oracle\isuites\apache\apache\MyJsp.jsp could not be found. Once I moved the file MyJsp to Apache/Apache directory, it could be found using http:\\myUrl\MyJsp.jsp. Later, I delted these files and kept the ones in htdocs and they continued to work.
    I'm confused why launching pages through portal isn't consistant with Apache Standards. Where is the documentation that tells me how to configure context and aliases for pages launched from portal pages?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sue Vickers ([email protected]):
    David,
    Passing information using Portal is different than just using Apache/Jserv. Does it work in portal if you use the absolute path?
    <form name="MyForm" action="http://host.domain/MyJSP.jsp" method="post">
    Portal will not be on the same relative path as your Apache, so you may need to adjust your action somehow.
    Thanks,
    Sue<HR></BLOCKQUOTE>
    null

  • Adobe pop-up message when trying to install a program: "Failed to initialize. File not found. Please download Adobe Support Advisor to detect the problem."

    I have a 64-bit Windows 7 Home Premium PC. I recently had to reinstall my PC. I'm trying to install my Adobe Products like Flash Professional CS5 and Photoshop CS5, but it keeps coming up with the message "Failed to initialize. File not found. Please download Adobe Support Advisor to detect the problem." I keep looking around at different sites, but they seem so difficult and so much information which leaves me so confused. I have no idea how or why this has happened, and due to my autism it leaves me very panicky.
    I've tried the Adobe Creative Cloud Cleaner Tool. Here are the results.
    Gen_WWCombined-en_US-20121017_1230
    [Sat Jun 14 18:50:42 2014] Please enter (y) for Yes or (n) for No. ... >>
    [Sat Jun 14 18:50:44 2014] Choose from one of the following options to clean up :
    [Sat Jun 14 18:50:44 2014] 1.  All
    [Sat Jun 14 18:50:44 2014] 2.  Adobe Flash Player 10.2
    [Sat Jun 14 18:50:44 2014] 3.  Creative Cloud & CS6 Products
    [Sat Jun 14 18:50:44 2014] 4.  CS6 only
    [Sat Jun 14 18:50:44 2014] 5.  CS5-CS5.5-CS6
    [Sat Jun 14 18:50:44 2014] 6.  CS5-CS5.5
    [Sat Jun 14 18:50:44 2014] 7.  CS3, CS4
    [Sat Jun 14 18:50:44 2014] 8.  Adobe Id credentials
    [Sat Jun 14 18:50:44 2014] 9.  Quit
    [Sat Jun 14 18:50:44 2014] Choice :>
    [Sat Jun 14 18:50:46 2014] User selected: All
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Sat Jun 14 18:50:46 2014] List of products installed on this machine
    [Sat Jun 14 18:50:46 2014] Listing products for cleanup:
    [Sat Jun 14 18:50:46 2014] Please enter the option number of the product you wish to remove; enter (q) to quit ... >>
    [Sat Jun 14 18:50:48 2014] Are you sure you want to clean all the listed products and associated files?
    [Sat Jun 14 18:50:48 2014] Type (y) to confirm and remove or (n) to quit ... >>
    [Sat Jun 14 18:50:50 2014] Please wait for Adobe Creative Cloud Cleaner Tool to finish........
    [Sat Jun 14 18:50:50 2014] :: Cleaning-up left over inventories ::
    [Sat Jun 14 18:50:50 2014] Atleast one Non-RIBS Inventory : False, Atleast one AAMRef: False
    [Sat Jun 14 18:50:50 2014] ::Start:: Removing AUM contents
    [Sat Jun 14 18:50:50 2014] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:AdobeAAMUpdater-1.0
    [Sat Jun 14 18:50:50 2014] Exception during deleting key : (5, 'RegOpenKeyEx', 'Access is denied.')
    [Sat Jun 14 18:50:50 2014] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:ADOBE_UPDATER_STARTUP_UTILITY
    [Sat Jun 14 18:50:50 2014] Exception during deleting key : (5, 'RegOpenKeyEx', 'Access is denied.')
    [Sat Jun 14 18:50:50 2014] Deleting scheduled task : AdobeAAMUpdater-1.0-Stefan-PC-Stefan
    [Sat Jun 14 18:50:50 2014] Executing command: schtasks /delete /TN "AdobeAAMUpdater-1.0-Stefan-PC-Stefan" /F
    [Sat Jun 14 18:50:50 2014] ERROR: The system cannot find the file specified.
    [Sat Jun 14 18:50:50 2014] Deleting scheduled task : AdobeUpdater Task-Stefan-PC-Stefan
    [Sat Jun 14 18:50:50 2014] Executing command: schtasks /delete /TN "AdobeUpdater Task-Stefan-PC-Stefan" /F
    [Sat Jun 14 18:50:50 2014] ERROR: The system cannot find the file specified.
    [Sat Jun 14 18:50:50 2014] ::Finish:: Removing AUM contents
    [Sat Jun 14 18:50:50 2014] ::Start:: Removing OOBE
    [Sat Jun 14 18:50:50 2014] Executing command "taskkill /F /FI "IMAGENAME eq AAM Updates Notifier.exe""
    [Sat Jun 14 18:50:50 2014] INFO: No tasks running with the specified criteria.
    [Sat Jun 14 18:50:50 2014] ::Finish:: Removing OOBE
    [Sat Jun 14 18:50:50 2014] Removing content of Product : CS5Installer, Version : CS5
    [Sat Jun 14 18:50:50 2014] File does not exist: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:50 2014] File does not exist: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:50 2014] LOG FILE SAVED TO: C:\Users\Stefan\AppData\Local\Temp\Adobe Creative Cloud Cleaner Tool.log
    [Sat Jun 14 18:50:50 2014] Adobe Creative Cloud Cleaner Tool completed successfully
    [Sat Jun 14 18:50:50 2014]
    [Sat Jun 14 18:50:50 2014] *-*-*-*-*-*- ::START:: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Sat Jun 14 18:50:50 2014] *-*-*-*-*-*- :: END :: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Sat Jun 14 18:50:50 2014] ---------------------------------------------------------
    [Sat Jun 14 18:50:50 2014] *=*=*=*=*=*=*=*=* :: End Session :: *=*=*=*=*=*=*=*=*=*=*

    06/12/14 18:38:09:881 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 19104 | OOBElib returned error: 34
    06/12/14 18:38:10:271 | [FATAL] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in getting Payload 8
    06/12/14 18:38:11:878 | [ERROR] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in dwa_getInstalledPathOfPayload, pdbSession is NULL.
    06/12/14 18:38:13:519 | [ERROR] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in dwa_getInstalledPathOfPayload, pdbSession is NULL.
    06/12/14 18:44:30:229 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 860 | Failed in key3List generation
    06/12/14 18:44:31:074 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | CreateProcess failed (267).
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process CreativeCloud(URIHandler).exe could not be killed
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process Creative Cloud Helper.exe could not be killed
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process Creative Cloud Uninstaller.exe could not be killed
    06/12/14 18:48:07:424 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/12/14 18:48:13:709 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:16:239 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:19:174 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:21:342 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:49:03:907 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14092 | Failed in key3List generation
    06/12/14 18:49:08:386 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:49:11:475 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:49:13:361 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:50:46:267 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 15932 | Failed in key3List generation
    06/12/14 18:50:49:357 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 15576 | Failed in key3List generation
    06/12/14 18:50:55:101 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7024 | Failed in key3List generation
    06/12/14 18:52:48:711 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    06/12/14 18:52:52:182 | [ERROR] |  | ASU | LWANative | OPM |  |  | 18100 | received empty url from dispatchlib
    06/12/14 18:52:55:816 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    06/12/14 18:52:56:518 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 18100 | OOBElib returned error: 42
    06/12/14 18:53:23:278 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    6/13/2014 21:51:48 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/13/2014 21:51:48 [ERROR] Setup - Error finding english dictionary file.
    6/13/2014 21:51:48 [ERROR] Setup - Unable to initialize ZString library
    6/13/2014 21:51:48 [FATAL] Setup - Setup.xml does not exist.
    6/13/2014 21:51:48 [FATAL] Setup - Unable to initialize. File missing.
    06/13/14 21:58:34:931 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | CreateProcess failed (267).
    06/13/14 21:59:49:357 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process CreativeCloud(URIHandler).exe could not be killed
    06/13/14 21:59:49:360 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process Creative Cloud Helper.exe could not be killed
    06/13/14 21:59:49:363 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process Creative Cloud Uninstaller.exe could not be killed
    06/13/14 22:01:13:116 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/13/14 22:01:13:121 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | AAM ref file already exists at  2 C:\Program Files (x86)\Common Files\Adobe\AdobeApplicationManager\AAMRefs/ACC.aamref/RefCount.txt
    06/13/14 22:01:24:817 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:29:716 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:33:893 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:35:676 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:39:720 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:01:41:220 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:01:42:860 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:02:56:630 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 20716 | Failed in key3List generation
    06/13/14 22:03:03:420 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14200 | Failed in key3List generation
    06/13/14 22:04:23:916 | [ERROR] |  | ASU | OPM | P7Native |  |  | 14200 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 08:50:35:502 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:50:46:796 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:50:56:343 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:51:01:148 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:51:05:189 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:51:08:012 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:51:10:976 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:53:05:074 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 5136 | Failed in key3List generation
    06/14/14 08:53:15:688 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3444 | Failed in key3List generation
    06/14/14 08:54:36:596 | [ERROR] |  | ASU | OPM | P7Native |  |  | 3444 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 11:21:45 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 11:21:45 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 11:21:45 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 11:21:45 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 11:21:45 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 11:41:50:067 | [WARN] |  | ASU | OPM | IMSLibData |  |  | 1424 | IMSLibData destructor completed
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM |  |  | 12296 | Failed to Move srcPath:C:\Program Files (x86)\Adobe\Adobe Creative Cloud destPath:C:\Users\Stefan\AppData\Local\Temp\\{7C97F705-ADDE-409B-9ABF-75ADEC23094E}\Adobe Creative Cloud error :5
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 12296 | Failed to move folder 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud' to 'C:\Users\Stefan\AppData\Local\Temp\\{7C97F705-ADDE-409B-9ABF-75ADEC23094E}\Adobe Creative Cloud'
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 12296 | Failed to remove ACCC Files.
    06/14/14 11:41:56:987 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | ACC uninstallation failed. RetVal: -8
    06/14/14 11:41:57:019 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | Unable to unload AdobePIM library properly.
    06/14/14 11:41:57:019 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | Failed to remove folders.
    6/14/2014 12:17:04 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:17:04 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:17:04 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:44 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:19:44 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:19:44 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:44 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:19:44 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:19:46 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:19:46 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:19:46 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:46 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:19:46 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:20:00 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:20:00 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:20:00 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:20:00 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:20:00 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:23:51 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:23:51 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:23:51 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:23:51 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:23:51 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:26:52 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:26:52 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:26:52 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:26:52 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:26:52 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:31:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:31:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:31:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:31:52 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:31:52 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:31:52 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:31:52 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:31:52 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:41:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:41:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:41:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:41:21 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:41:21 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 13:02:56:146 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | CreateProcess failed (267).
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 13:05:40:969 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 13:05:40:969 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | AAM ref file already exists at  2 C:\Program Files (x86)\Common Files\Adobe\AdobeApplicationManager\AAMRefs/ACC.aamref/RefCount.txt
    06/14/14 13:08:09:854 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1928 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 13:10:27 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:10:27 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:10:27 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:10:27 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:10:27 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:17:20 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:17:20 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:17:20 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:17:20 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:17:20 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:17:24 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:17:24 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:17:24 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:17:24 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:17:24 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:10:32 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:10:32 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:10:32 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:10:32 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:10:32 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:26:53 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:26:53 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:26:53 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:26:53 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:26:53 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:42:35 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:42:35 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:42:35 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:42:35 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:42:35 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:52:02 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:52:02 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:52:02 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:52:02 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:52:02 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 13:52:41:307 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1780 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM |  |  | 5692 | Failed to Move srcPath:C:\Program Files (x86)\Adobe\Adobe Creative Cloud destPath:C:\Users\Stefan\AppData\Local\Temp\\{CC352008-55F6-48A1-85CB-73E13CD26821}\Adobe Creative Cloud error :5
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 5692 | Failed to move folder 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud' to 'C:\Users\Stefan\AppData\Local\Temp\\{CC352008-55F6-48A1-85CB-73E13CD26821}\Adobe Creative Cloud'
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 5692 | Failed to remove ACCC Files.
    06/14/14 13:57:13:245 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | ACC uninstallation failed. RetVal: -8
    06/14/14 13:57:13:261 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | Unable to unload AdobePIM library properly.
    06/14/14 13:57:13:261 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | Failed to remove folders.
    06/14/14 13:59:49:116 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1780 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 13:59:52:128 | [ERROR] |  | ASU | PIM | PIM |  |  | 5084 | Process returned error:201
    06/14/14 13:59:52:128 | [ERROR] |  | ASU | PIM | PIM |  |  | 5084 | Error occurred executing uninstall modifier at path: 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud\CoreSync\customhook\CoreSyncCustomHook.exe'. Error code: 201
    06/14/14 13:59:56:168 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5084 | Unable to unload AdobePIM library properly.
    06/14/14 13:59:56:262 | [ERROR] |  | ASU | PIM | Utilities |  |  | 2780 | CreateProcess failed (267).
    06/14/14 14:00:01:535 | [ERROR] |  | ASU | PIM | PIM |  |  | 2780 | Unable to free PIM object
    6/14/2014 16:02:47 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 16:02:47 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 16:02:47 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 16:02:47 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 16:02:47 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 16:10:15:499 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 4628 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    06/14/14 16:14:03:629 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | CreateProcess failed (267).
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 16:16:58:883 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 16:31:27:792 | [ERROR] |  | ASU | OPM | P7Native |  |  | 5228 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 16:43:06 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 16:43:06 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 16:43:06 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 16:43:06 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 16:43:06 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 16:46:24:800 | [ERROR] |  | ASU | LWANative | OPM |  |  | 5776 | received empty url from dispatchlib
    06/14/14 16:46:29:449 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 5776 | OOBElib returned error: 42
    06/14/14 16:49:04:438 | [ERROR] |  | ASU | LWANative | OPM |  |  | 4344 | received empty url from dispatchlib
    06/14/14 16:49:10:113 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 4344 | OOBElib returned error: 42
    6/14/2014 17:06:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:06:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:06:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:06:21 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:06:21 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 17:13:05:437 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 4372 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    06/14/14 17:16:38:593 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | CreateProcess failed (267).
    06/14/14 17:18:24:378 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 17:18:24:378 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 17:18:24:393 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 17:19:33:131 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 17:21:08:140 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1572 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 17:36:25 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:36:25 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:36:25 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:36:25 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:36:25 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 17:40:42 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:40:42 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:40:42 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:40:42 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:40:42 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 18:16:12:120 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 7080 | Unable to unload AdobePIM library properly.
    06/14/14 18:16:12:135 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 7080 | Failed to delete C:\Users\Stefan\AppData\Local\Adobe\OOBE\com.adobe.accc.home
    06/14/14 18:16:12:526 | [ERROR] |  | ASU | PIM | Utilities |  |  | 5292 | CreateProcess failed (267).
    06/14/14 18:16:19:065 | [ERROR] |  | ASU | PIM | PIM |  |  | 5292 | Unable to free PIM object
    6/14/2014 18:43:51 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:43:51 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:43:51 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:43:51 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:43:51 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 18:48:04 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:48:04 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:48:04 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:48:04 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:48:04 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 18:57:10 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:57:10 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:57:10 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:57:10 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:57:10 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 19:35:02 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 19:35:02 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 19:35:02 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 19:35:02 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 19:35:02 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 19:35:08 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 19:35:08 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 19:35:08 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 19:35:08 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 19:35:08 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 20:33:29 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 20:33:29 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 20:33:29 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 20:33:29 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 20:33:29 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 21:47:33 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 21:47:33 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 21:47:33 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 21:47:33 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 21:47:33 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 16:52:16:579 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 1492 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    6/15/2014 16:56:36 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 16:56:36 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 16:56:36 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 16:56:36 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 16:56:36 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 17:01:19 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 17:01:19 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 17:01:19 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 17:01:19 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 17:01:19 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 17:03:45:215 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 5128 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    6/15/2014 17:04:56 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 17:04:56 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 17:04:56 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 17:04:56 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 17:04:56 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 17:07:20:253 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | CreateProcess failed (267).
    06/15/14 17:09:07:737 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process CreativeCloud(URIHandler).exe could not be killed
    06/15/14 17:09:07:752 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process Creative Cloud Helper.exe could not be killed
    06/15/14 17:09:07:752 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process Creative Cloud Uninstaller.exe could not be killed
    06/15/14 17:10:08:686 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/15/14 17:11:37:076 | [ERROR] |  | ASU | OPM | P7Native |  |  | 2140 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/15/14 18:26:02:586 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:06:033 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:09:591 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:17:812 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:24:193 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:26:26:735 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:26:29:606 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:28:20:953 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3396 | Failed in key3List generation
    06/15/14 18:28:22:808 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3396 | Failed in key3List generation
    06/15/14 18:28:44:834 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 5056 | Failed in key3List generation
    06/15/14 18:34:14:628 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 5668 | Another deployment workflow already running.
    06/15/14 18:34:14:628 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 5668 | Error finding locale language dictionary file. Defaulting to english.
    06/15/14 18:34:32:187 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 2544 | Another deployment workflow already running.
    06/15/14 18:34:32:187 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 2544 | Error finding locale language dictionary file. Defaulting to english.
    06/15/14 18:35:02:236 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 4636 | Another deployment workflow already running.
    06/15/14 18:35:02:236 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 4636 | Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 18:37:24 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 18:37:24 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 18:37:24 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 18:37:24 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 18:37:24 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 19:08:56 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 19:08:56 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 19:08:56 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 19:08:56 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 19:08:56 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 19:10:48 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 19:10:48 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 19:10:48 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 19:10:48 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 19:10:48 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 12:14:16 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 12:14:16 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 12:14:16 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 12:14:16 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 12:14:16 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 12:35:38 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 12:35:38 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 12:35:38 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 12:35:38 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 12:35:38 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 20:54:13 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 20:54:13 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 20:54:13 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 20:54:13 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 20:54:13 [FATAL] Setup - Unable to initialize. File missing.

  • Exiting from sqlplus prompt if file not found

    I often execute .sql files from my shell scripts. If the .sql file is not present then sqlplus command logs onto sql prompt but stays there saying file not found.
    Is there a way I can make sqlplus exit if the file is not found.
    I believe one of the option should be specifying some condition in the .sql file.

    Hi,
    Tricky problem! WHENEVER OSERROR EXIT is the right command, but where can you put it?
    If foo.sql doesn't exist, then clearly you can't put it in foo.sql.
    Even putting in in login.sql doesn't seem to work.
    What you can do is write a script that you know will exist, and always run that to launch your real script.
    For example, you can write a script called try_to_run.sql, like this:
    WHENEVER  OSERROR  EXIT
    @&1Pass the name of your real script as &1, like this:
    sqlplus  scott/tiger@dbanme  @try_to_run  real_scriptor, if real_script.sql takes arguments:
    sqlplus  scott/tiger@dbanme  @try_to_run  "real_script arg1  arg2  arg3"

  • HTTP 404- File not found error xMII 11.5 SR3 install on Win XP Prof

    Hello Everyone,
    I have tried installing xMII 11.5sr03 on Windows XP Professional 2002 sr2.
    The installation of IIS5.1 along with scripts virtual directory was successful.
    And so was the installation on xMII.
    However when i open the SAP xMII Menu (http://localhost/Lighthammer/Menu.jsp )
    or Security menu (http://localhost/LHSecurity/admin/). It shows the HTTP 404- File not found error.
    IIS help and localhost homepage http://localhost/localstart.asp is working fine.
    The License has also been copied to the Lighthammer license directory.
    Can anybody tell me where/how to look for a solution ?
    Warm Regards,
    Amol

    Hi Ryan,
    Its a fresh install and as mentioned in the guide i started with sr01 ,sr02 and
    sr03. Since these were the only 3 files available for download from service marketplace for xMII 11.5.
    I don't think there is a base 11.5 install available after which i go about installing the sr01 ,02 and 03 respectively.
    Please let me know if there is any and where to get it from...
    Thanks for your suggestions.
    Warm Regards,
    Amol

  • Blue-Ray Object: "Menu"; Export File Not Found--Any Clues?

    Trying to build a Blue-Ray DVD in CS3 (version 3.0.1.008). Project has motion menus and previews without errors. Upon trying to build either a disc or image I get the error
    Blue-ray object: "Menu"; Export file not found.
    Where "Menu" is the name of one of the sub menus in my project.
    Has anyone seen this error? What is an Export file? When and how does it get created?
    I have successfully burned this project to a standard DVD format.

    I have the pleasure of closing out my own question. I found the following post that was the clue I needed.
    http://forums.creativecow.net/readpost/145/857374
    It would appear that the Blue Ray build process is a lot more sensitive to file naming. I brought into my project a menu that I used as a starting template, I edited it in Photoshop and then renamed it in Encore. During the Blue Ray build process Encore rendered the menus to the original template names, but when it needed them to build the DVD it looked for the files that had the new names I had given the menus in Encore.
    Here is the fix. I exported the final menus using the Save as Template function in Encore. I then re-imported them as menus and relinked them to the DVD assets. Everything worked fine from that point on.
    The interesting thing is this did not happen when building a standard DVD using the same menus.

  • File not found error from scheduler

    Hi,
            We have a scheduler file with .cfa extension  in the cf scheduler  which trigger some mails to certain recipients on execution.
    At the bottom option fo the scheduled task, we have checked the option to 'save output to file' and has given the file
    path. On direct execution of the given url, the  file is executed successfully and mails are fired.
    But while trying to execute the same via scheduler it is not firing the mails. On investigation of the output file,
    found the error message 'File not found'.
    Is it possible that the file get  executed when directly browsing the url and shows 'file not found' error
    while executing via cf scheduler?(CF 8 is used.)

    To be more specific,
    the url format given in the cf admin scheduler is like this:
    "http://www.domainname.com/myfolder/myfile.cfa"
    A file path to log the output is also given to publish.
    If we copy the above url to a browser and execute, the file gets executed and mails are fired.
    If we set the interval or run the scheduler from the administrator,mails are not sent.On examination of log file given in the scheduler section, it is
    showing error '/myfolder/myfile.cfa' file not found.

  • File not found error (404) from web browser

    I installed 901 DB on different Oracle home and iAS 1.0.2.2 in a
    different Oracle home. The ifsconfig went thru fine.
    However I am unable to access the login page ( I executed
    ifsapachesetup ). I tried to access
    http://<machine>:<port>/servlet/files.
    I see the following error in Jserv.log
    ajp12: Servlet Error: NoClassDefFoundError:
    oracle.ifs.protocols.dav.impl.IfsDavServlet
    On the browser I get File not found error ( HTTP 404 )
    Do I need to perform additional steps on Solaris machine ( apart
    from executing apache setup script ).
    Please help me.

    Make sure you have started all the services:
    - ifsjservctl -start
    - ifslaunchdc
    - ifslaunchnode
    - ifsstartdomain
    all are in the iFS bin directory.
    Keith

Maybe you are looking for