Troubles with PATH/CLASSPATH

I have been trying to set up my PATH/CLASSPATH variables on my WINDOWS XP computer for quite some time but cant quite get it right. In the PATH variable, if I put the entry for the java SDK first, I can use java commands via cmd.exe but I cant use windows commands (such as ping). If I put the default entries at the begining then the java entry at the end, I can use windows commands, but not the java ones. Why does it only register the first entry on the list?
The CLASSPATH variable works fine.

Possibly you are including a space " " in the expression?
They aren't allowed. Here's my path statement (on 98SE):
PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\BATCH;C:\J2SDK1.4.2_01\BIN;C:\PROGRA~1\UTILIT~1;C:\PROGRA~1\WIN98RK
Copy and paste your statement here if you still have problems.

Similar Messages

  • I am having trouble with the classpath

    I use the jikes compiler, and I am having trouble setting my classpath. The current classpath I have is: C:\program files\java\j2re1.4.0_01\lib\rt.jar
    When I compile my Java file it says that it could not find the directory java/lang.
    I have the program Robocode and the compiler on it uses Jikes, and it works, but when I try to compile one of my files on either Jcreator or MsDos Prompt it doesn't work for me. Can anybody help me on how to set my classpath?

    take a look in the directory tree and see if javac is in it. when i have a path with jre in it, there isn't any compiler just the java runtime environment. you may need to install the jdk.

  • Trouble with Paths using Gallery

    I have a very large site with lots of images. I can put my
    images, thumbnails and photo.xml in the galleries folder of the
    demo and it works just fine. I use the recommended file structure.
    I can add as many galleries as I like and they all work.
    If I copy that exact galleries folder containing both the
    demo galleries and my galleries to my site, only some work. There
    seems to be no logical reason for it. One of demo galleries and
    some of mine fail. I've changed the index.html to show the location
    of the four javacript files in the site's main script folder. I've
    changed the XML dataset paths to show the location of the galleries
    folder like this:
    <script type="text/javascript">
    var dsGalleries = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("images/vac_lam/galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery/photos/photo");
    </script>
    The non-working galleries fail to show the thumbnail image or
    main image and don't advance to the next image when Play is active.
    The main image size changes and some description data I've added
    which means the photo.xml is being seen. Copy this non-working
    folder main into the demo galleries folder and it works fine.
    Am I allowed to move the .js files and extend the folder
    paths?

    I got the galleries to work after much trial and error.
    The thumbnail image path is hard-coded in the index.html at
    line 40 as well as lines 12, 13, 14.
    The main image path is hard-coded in the gallery.js at line
    198.
    I don't want a separate gallery.js for each set of galleries.
    I'll declare a path variable just before the XMLDataSet's are
    declared in each of the index pages. One declaration - everybody is
    happy.
    I still don't understand why some galleries worked and some
    didn't.

  • Trouble with classpath?

    I am having a lot of trouble with my classpath, I think. Whenever I open a html file that I wrote, it shows up class appletName not found. I'm pretty sure I am doing something wrong in my classpath. Here is my autoexec.bat file..
    SET COMSPEC=C:\WINDOWS\COMMAND.COM
    SET windir=C:\WINDOWS
    SET winbootdir=C:\WINDOWS
    SET PATH=C:\j2sdk1.4.2_01\bin;C:\WINDOWS;C:\WINDOWS\COMMAND
    SET PROMPT=$p$g
    SET TEMP=C:\WINDOWS\TEMP
    SET TMP=C:\WINDOWS\TEMP
    SET JAVA_HOME=C:\j2sdk1.4.2_01
    SET CATALINA_HOME=C:\windows\desktop\apache
    SET CLASSPATH=.;c:\windows\desktop;C:\windows\desktop\eclipse\resin-3.0.6\lib\jsdk-24.jar;C:\windows\desktop\eclipse\resin-3.0.6\dob\WEB-INF\classes;
    SET RESIN_HOME=c:\windows\desktop\eclipse\resin-3.0.6
    What am I doing wrong? Please help.. (I do set the values into regestry by opening the system information utility thingy).

    I can't say much about the M$ VM.
    But I'll bet the applet is ignoring that CLASSPATH. It's a useless environment variable.
    You've got to put your Java classes in a JAR, set that JAR equal to the codebase, and put it in the right place on the server. When a user requests the page with the applet, the codebase is downloaded from the server.
    What machine have you set the CLASSPATH on? The server or the client? How would the value on one affect the other? The right thing to do is set up the codebase. - MOD

  • Trouble with clipping paths in Photoshop CS5

    Hello everyone, I am having trouble with clipping paths in Photoshop CS5. When I start a new path both path and anchor points are not visible. working on a Layer not background 0 and a Path Layer was created.I've also noticed that Photoshop started running pretty slow. All other programs are fine. Any Ideas or suggestions? Thank You

    edtGrfx wrote:
    Hello everyone, I am having trouble with clipping paths in Photoshop CS5. When I start a new path both path and anchor points are not visible. working on a Layer not background 0 and a Path Layer was created.
    What do you mean by "a Path Layer was created"?  Path are in the path palette, there is a path in shape layers and they is a path in a vector layer mask. I have never seen a reference to a path layer before this.  When a path in the path palette is selected activate it wall also be shown in the image window.  Does not matter if there is a targeted layer or not.  Control points may or may not be displayed. Using Path tool you can select and select segments and show some or all control points, Path are editable.
    View the following image in a new tab and scale to actual pixels for a clear image this site scales image poorly.

  • Trouble with dbms_java.runjava

    Hi there,
    I'm exploring java in the database (11g). Today I run in trouble with the dbms_java package. My goal ist to trigger the main method through dbms_java.runjava as shown in various book examples.
    Here is the called class:
    public class TestMe {
    public static void main(String[] args) {
    System.out.println("Hello Tester");
    Here is the caller:
    declare
    ret varchar(1000);
    begin
    dbms_java.set_output(2000);
    ret := dbms_java.RUNJAVA('-cp JSERVER_CP/RESOURCE/PRIVATE/SCOTT TestMe');
    dbms_output.put_line('return: '||ret);
    end;
    This call ends up with a ClassNotFoundException:
    ORA-29532: Java-Aufruf durch nicht abgefangene Java-Exception beendet: java.lang.ClassNotFoundException: TestMe
    ORA-06512: in "SYS.DBMS_JAVA_TEST", Zeile 2
    ORA-06512: in "SYS.DBMS_JAVA_TEST", Zeile 71
    ORA-06512: in "SYS.DBMS_JAVA", Zeile 203
    ORA-06512: in Zeile 5
    I consulted the documentation in order to add the proper path to the classpath.
    However, I was not able to spot the issue.
    What do I wrong?

    Ok. I found my own fault.
    First: after a couple of "refactoring" the classpath string did not match:
    JSERVER_CP/SHARED_DATA/PRIVATE/SCHEMA/SCOTT/ TestMe
    The keyword "SCHEMA" was missing.
    Second: A trailing slash marks the the current schema - not jar - to add to the classpath.

  • Freebsd Java path & classpath

    Hi everybody,
    I am new to the Freebsd env, and I am having trouble with compiling java code. Below is my system configurations. Note. I am able to compile and run the Hello World program., but when I import classes into my code I get "cannot resolve symbol".
    The path and classpath are setup in the .cshrc file as I am using the csh shell.
    %which java
    /usr/local/jdk1.4.2/bin/java
    %which javac
    /usr/local/jdk1.4.2/bin/javac
    %echo $CLASSPATH
    /usr/local/jdk1.4.2/lib/tools.jar:/usr/local/jdk1.4.2/lib/dt.jar:/usr/local/jdk1.4.2/jre/lib/rt.jar:
    %echo $PATH
    /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/local/jdk1.4.2/bin:/usr/X11R6/bin:/home/george/bin
    set JAVA_HOME=/usr/local/jdk1.4.2
    If anyone has any suggestions they are welcome. Thanks

    I am pretty clueless on Freebsd but you might need to add .: to your Classpath or may be try to use the -classpath option in your command line:javac -classpath some_directory your_class.java

  • Having trouble with image processor...help please!

    HI there...First off I just bought a new iMac and haven't a clue what I'm doing so my problem could be related to that.  While I'm waiting for Adobe to transfer over my platform I downloaded the trial of CS5 Extended to get me started.  I'm having trouble with the image processor...I choose file/scripts/image processor...the dialog box comes up and I choose use open files and then try and choose the folder I want to save them in.  I choose my folder and hit run and it keeps telling me specify folder destination.  I can't for the life of me figure this out...what am I doing wrong?  It always worked fine for me on my PC and CS3.  I can't handle saving each image individually in the new folder...
    Thanks!!

    I haven't renamed anything as far as I know.  I made a new folder when I hit Folder option and it's highlighted as well as the path shows up in the processor box.  Just when I choose run it tells me to specify a folder.  The only thing I can think of is that maybe something messed up b/c I'm copied the files and folders over from my PC but it let me save as on the mac.  Also the folder I'm choosing to put them in is on the Mac harddrive.  IDK...

  • Trouble with CCME 4 and VIC2-2FXO; IOS 12.4(9)T

    Trouble with CCME 4 and VIC2-2FXO; IOS 12.4(9)T
    I am having trouble making outgoing call or answering incoming call.
    When I try to call out from my IP 7961 phone, it fails with the message "unknown number".
    For incoming call, it rings but when I pick up the call nothing happens,
    Put the receiver back on hook, the phone carries on ringing. I am in UK
    and just trying to set up test system with one analogue line. Any help will
    be most appreciated. My config of the 2811 router is posted below. All calls ineternally works fine.
    Thank you for your help.
    hostname Test-CME
    ip cef
    no ip dhcp use vrf connected
    ip dhcp excluded-address 10.10.10.1 10.10.10.10
    ip dhcp excluded-address 10.139.139.1 10.139.139.10
    ip dhcp pool host
    network 10.10.10.0 255.255.255.0
    default-router 10.10.10.1
    option 150 ip 10.10.10.1
    ip dhcp pool data
    network 10.139.139.0 255.255.255.0
    default-router 10.139.139.1
    dns-server 10.139.139.5
    voice-card 0
    no dspfarm
    voice service voip
    allow-connections h323 to h323
    allow-connections h323 to sip
    allow-connections sip to h323
    allow-connections sip to sip
    supplementary-service h450.12
    h323
    sip
    header-passing
    registrar server expires max 3600 min 3600
    interface FastEthernet0/1
    no ip address
    no ip mroute-cache
    duplex auto
    speed auto
    no shut
    interface FastEthernet0/1.2
    description ** Data VLAN **
    encapsulation dot1Q 2
    ip address 10.139.139.1 255.255.255.0
    interface FastEthernet0/1.3
    description ** Voice VLAN **
    encapsulation dot1Q 3
    ip address 10.10.10.1 255.255.255.0
    ip http server
    ip http authentication local
    no ip http secure-server
    ip http path flash:
    tftp-server flash:S00104000100.sbn
    tftp-server flash:TERM41.7-0-3-0S.loads
    tftp-server flash:term61.default.loads
    tftp-server flash:term41.default.loads
    tftp-server flash:CVM41.2-0-2-26.sbn
    tftp-server flash:cnu41.2-7-6-26.sbn
    tftp-server flash:Jar41.2-9-2-26.sbn
    tftp-server flash:term70.default.loads
    tftp-server flash:term71.default.loads
    tftp-server flash:cnu70.2-7-6-26.sbn
    tftp-server flash:Jar70.2-9-2-26.sbn
    tftp-server flash:TERM70.7-0-3-0S.loads
    tftp-server flash:CVM70.2-0-2-26.sbn
    control-plane
    voice-port 0/3/0
    connection plar opx 202
    caller-id enable
    dial-peer voice 1 pots
    incoming called-number .
    destination-pattern 9T
    port 0/3/0
    telephony-service
    load 7914 S00104000100
    load 7941 TERM41.7-0-3-0S
    load 7961 TERM41.7-0-3-0S
    load 7970 TERM70.7-0-3-0S
    max-ephones 20
    max-dn 40
    ip source-address 10.10.10.1 port 2000
    calling-number initiator
    service phone videoCapability 1
    system message MKC CME
    url services http://10.10.10.1/voiceview/common/login.do
    url authentication
    http://10.10.10.1/voiceview/authentication/authenticate.do
    time-zone 21
    date-format dd-mm-yy
    voicemail 600
    max-conferences 8 gain -6
    call-forward pattern .T
    call-forward system redirecting-expanded
    moh music-on-hold.au
    web admin system name admin secret 0 test
    dn-webedit
    time-webedit
    transfer-system full-consult dss
    transfer-pattern 9.T
    secondary-dialtone 9
    create cnf-files
    ephone-dn 1 dual-line
    number 201
    label 201
    description Sarah
    name Sarah
    ephone-dn 2 dual-line
    number 202
    label 202
    description Vitthal
    name User2 Vitthal
    ephone-dn 3 dual-line
    number 203 secondary
    label 203
    description Neil
    name User3 Neil
    ephone 1
    video
    username "user1" password 201
    mac-address 0018.18EE.947F
    type 7961 addon 1 7914
    button 1:1
    ephone 2
    video
    username "user2" password 202
    mac-address 0018.18BB.B973
    type 7941
    button 1:2
    ephone 3
    video
    username "user3" password 203
    mac-address 0018.1885.6BA2
    type 7970
    button 1:3

    Hi
    Please find enclosed debug attachment for voice ccapi and ephone. First, I called from outside. Extension 202 rings but when I answered on extension 202 nothing happens. Replace the rceiever and the pone starts ringing again.Second step. I tried to call out by dialing 9 and then number but after a while phone displays unknown number.
    Thank you for your help.
    Vitthal

  • Having trouble with my PHP code. Appers to get stuck on a white page.

    HI all,
    I have just began having trouble with my PHP code. Was working before and haven't made any changes to the code since last time it worked.
    What happens is after the form is submitted it goes to a white page (no text just all white page) and in the address bar it has the path for my php page. what supposed to happen is either it goes to a success page or a error page.
    I've had a problem where the info entered is correct but was directed to the error page. i managed to fix that issue but i am puzzled what is happening to my php page now.
    Mind you that i didn't write this code i just took over the responsiblities of this website and i am hopping that its a quick fix.
    I appreciate any help you could give me. Thank you.
    CODE:
    <?php
       $to = '[email protected]';
          $from = '[email protected]';
            //Make sure we have some info posted from the form...
            if (isset($HTTP_POST_VARS)){
                //Clear the body of the message to be sent
                $body = '';
                //go through all POSTed variables sent
                while (list($key, $value) = each($HTTP_POST_VARS)){
        if($key <> "Submit" && $key <> "submit") {
         $body .= $key . ' = ' . $value . "\r\n"; 
                //Now building mail headers.....
                $headers = "From: ".$from."\r\n";
                //Mail message
                $success = mail($to, "Email Club" . date("m/d/Y"), $body, $headers);
       // CURL stuff.....
       $ch = curl_init();
       curl_setopt($ch, CURLOPT_FAILONERROR, 1);
       curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
       curl_setopt($ch, CURLOPT_TIMEOUT, 4); //times out after 4s
       curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
                 if ($success){
        //readfile('http://www.lvpaiutegolf.com/thankyou.html');
        curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/thankyou.html");
        header("Location:http://www.lvpaiutegolf.com/thankyou.html");
                else{
                 // readfile('http://www.lvpaiutegolf.com/error.html');
         curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/error.html");
         header("Location:http://www.lvpaiutegolf.com/error.html");
       // Output
       //$result=curl_exec ($ch);
       //curl_close ($ch);
       //echo $result'";
    ?>

    Insert the install disk and boot from it. Use disk utitlity to repair your drive and check for errors (report any errors back here) then reinstall the os. This should not erase your data.

  • Trouble with Exported .pdf Files

    I created three 20"x30" one-page documents (with iPhoto-sourced images) which saved as 24.7 MB, 19.4 MB, and 10.7 MB files, respectively. I needed to send JPEG files to my service provider for high-resolution prints. Since Pages '08 doesn't have a JPEG-export option, I exported each of them as .pdf files. My plan was to open the .pdf files in Photoshop and save them down as .jpg files. The same path had worked fine with a fourth Pages '08 layout of a 2.25"x3.75" document. With the three 20"x30" files, however, I ran into trouble.
    My laptop didn't have enough memory to open the exported .pdf files in Photoshop Elements without suffering some image gray-out. I didn't think that was a problem until we discovered that my service provider couldn't open the files at all (running the current Photoshop on a souped-up system). Arghhh.
    I switched to a service provider who can print straight from the .pdf files, but that also brought trouble. Though I could open the files easily in Acrobat 5.0, and they looked great, the service provider (running the current full version of Acrobat) could not open them; all he got was what looked like a blank page.
    I don't think the trouble is related to file size, as the business-card document which sailed through without trouble saved as an 11.2 MB Pages file.
    Could it be sheet size? That's the only thing I can figure. And why would the files open in Acrobat 5.0 without trouble, but not in the current Acrobat (or Acrobat Professional, which we also tried)?
    I ended up "printing" the Pages files as "Save PDF to iPhoto," then exporting the iPhoto image as a maximum-resolution JPEG. The only trouble with that route was that the best I could get was a 200 dpi. When I went through Photoshop (instead of iPhoto) with the business card file, I ended up with a 300 dpi file.
    Am I missing something obvious here? Any help would be appreciated.

    Hi,
    I don't know if this is the correct answer, but you can open a PDF in Preview and save the document as a JPEG and JPEG-2000. I know that Leopard will also have some neat functionality about this as well. You might also want to look at printing as a postscript file rather than a PDF and then open in Photoshop. I talked with a FEDEX/Kinkos employee yesterday about my book at he stated that Macs use 1.5 while Adobe's Acrobat is 1.7. Leopard should also fix this, but it may not help right now.
    HTH

  • Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download

    Current system info:
    Windows 7 (64 bit)
    Internet Explorer 9 (using 32 bit for downloading FP)
    I upgraded to 10.3.183.7 and immediately noticed my laptop unable to display/use Flash features (facebook games, online flyers, video, etc)
    I uninstalled and installed multiple times using both Control Panel and the uninstaller provided on Adobe help page. I restarted my laptop after every install and after every uninstall. I made sure to use 32-bit IE each time.
    At first Programs (and Control Panel) showed FP as installed but now it doesn't register as installed at all - aside from the installer program telling me it is installed.
    After installing, on the Adobe 'test' page instead of the spinning F I see a box with an 'x' in the top left hand corner (like an image/graphic that won't load).
    I tried the beta FP 11 but same problem. It at least showed up on my programs list. I uninstalled it and am back to FP 10.3
    I have been on the help page trying anything I can find to get it working but no luck so far. Any advice for this issue?
    Thanks,
    Jill

    FP does appear in my Control Panel for uninstalling but does not appear in my Programs list. I downloaded Google Chrome and FP seems to work with it (though I'm not a big fan of the browser)So, it would appear to be an IE issue? If you still want the install log:=O====== M/10.2.152.26 2011-04-11+18-41-26.195 ========
    0000 00000010 "C:\SWSetup\AFlash\Setup.exe"  -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10m.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.dll
    =X====== M/10.2.152.26 2011-04-1118-41-27.490 =========O====== M/10.3.183.7 2011-09-0701-16-25.406 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0701-16-28.438 =========O====== M/10.3.183.7 2011-09-0801-30-39.351 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0801-30-39.737 =========O====== M/10.3.183.7 2011-09-0801-47-26.279 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0801-47-30.257 =========O====== M/10.3.183.7 2011-09-0802-10-04.958 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0802-10-05.672 =========O====== M/10.3.183.7 2011-09-0802-10-09.789 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0802-10-14.574 =========O====== M/10.3.183.7 2011-09-0901-14-55.652 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001039
    =X====== M/10.3.183.7 2011-09-0901-15-53.743 =========O====== M/10.3.183.7 2011-09-0901-17-38.865 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0901-17-43.904 =========O====== M/10.3.183.7 2011-09-0901-39-18.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0901-39-21.150 =========O====== M/10.3.183.7 2011-09-0901-50-41.972 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0901-50-42.376 =========O====== M/10.3.183.7 2011-09-0901-51-01.582 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0901-51-05.961 =========O====== M/10.3.183.7 2011-09-0902-17-44.951 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0902-17-50.193 =========O====== M/10.3.183.7 2011-09-0920-41-16.435 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0920-41-19.293 =========O====== M/10.3.183.7 2011-09-0920-55-06.571 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0920-55-06.966 =========O====== M/10.3.183.7 2011-09-0920-56-08.701 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0920-56-12.629 =========O====== M/10.3.183.7 2011-09-0921-08-02.144 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0921-08-02.579 =========O====== M/11.0.1.129 2011-09-0921-11-39.470 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\F393.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-11-42.519 =========O====== M/11.0.1.129 2011-09-0921-17-05.196 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\ED5C.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-17-09.205 =========O====== M/10.3.183.7 2011-09-0922-04-01.333 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-04-01.640 =========O====== M/11.0.1.129 2011-09-0922-06-14.485 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\3BB9.dir\InstallFlashPlayer.exe" -uninstall activex
    0001 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 00001021
    0008 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    =X====== M/11.0.1.129 2011-09-0922-06-14.921 =========O====== M/10.3.183.7 2011-09-0922-07-17.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-07-17.565 =========O====== M/10.3.183.7 2011-09-0922-22-52.408 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-22-52.746 =========O====== M/10.3.183.7 2011-09-0922-24-17.263 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-24-18.248 =========O====== M/10.3.183.7 2011-09-1012-35-47.416 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-35-47.727 =========O====== M/10.3.183.7 2011-09-1012-38-11.063 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-38-11.400 =========O====== M/10.3.183.7 2011-09-1012-49-48.987 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-49-49.311 =========O====== M/10.3.183.7 2011-09-1012-55-05.778 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001018
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00001019
    0007 00001020
    0008 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0009 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0010 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0011 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0012 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0013 00001021
    0014 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0015 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0017 00001048
    0018 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0019 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 00001018
    0021 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0022 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0023 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0024 00001019
    0025 00001020
    0026 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0027 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0028 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0029 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0030 00001021
    0031 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0032 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0033 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0034 00001048
    0035 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0036 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0037 00001036 Software\Opera Software/Last CommandLine 2
    0038 00001036 Software\Opera Software/Last CommandLine 2
    0039 00001036 Software\Opera Software/Plugin Path 2
    0040 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1012-55-11.581 =========O====== M/10.3.183.7 2011-09-1013-00-20.739 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-00-23.216 =========O====== M/10.3.183.7 2011-09-1013-23-41.978 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    0001 00001039
    =X====== M/10.3.183.7 2011-09-1013-23-56.159 =========O====== M/10.3.183.7 2011-09-1013-32-02.098 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1013-32-02.525 =========O====== M/10.3.183.7 2011-09-1013-32-20.324 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1013-32-23.998 =========O====== M/10.3.183.7 2011-09-1013-33-17.451 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-33-20.571 =========O====== M/10.3.183.7 2011-09-1013-38-14.133 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 00001021
    0007 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 00001018
    0011 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0012 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0013 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0014 00001019
    0015 00001020
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0017 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0018 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0019 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0020 00001021
    0021 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0022 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0023 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0024 00001048
    0025 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0026 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0027 00001036 Software\Opera Software/Last CommandLine 2
    0028 00001036 Software\Opera Software/Last CommandLine 2
    0029 00001036 Software\Opera Software/Plugin Path 2
    0030 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1013-38-23.680 =========O====== M/10.3.183.7 2011-09-1013-51-14.222 ========
    0000 00000010 "C:\Windows\Downloaded Program Files\FP_AX_CAB_INSTALLER.exe" /RegServer
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0007 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0008 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-51-23.941 =========O====== M/10.3.183.7 2011-09-1013-54-43.664 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-54-46.332 =========O====== M/10.3.183.7 2011-09-1014-01-14.234 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-01-14.695 =========O====== M/10.3.183.7 2011-09-1014-01-50.253 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-01-52.831 =========O====== M/10.3.183.7 2011-09-1014-09-42.630 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-09-43.028 =========O====== M/10.3.183.7 2011-09-1014-10-52.113 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-10-54.949 =========O====== M/10.3.183.7 2011-09-1014-21-57.215 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-22-13.173 =========O====== M/10.3.183.7 2011-09-1018-08-14.860 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1018-08-28.651 =========O====== M/10.3.183.7 2011-09-1018-18-04.868 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-10+18-18-07.420 ========
    > Date: Sun, 11 Sep 2011 07:46:49 -0600
    From: [email protected]
    To: [email protected]
    Subject: Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download
    function(){return A.apply(null,[this].concat($A(arguments)))}
    >

  • Having trouble with imports never finishing

    I am having trouble with imports that never finished. It is almost like the pictures are stuck on one image. the only way to get out of Iphoto is to force quit. The next time I open, there are a number of images that still need to be imported, but the import never finishes and seems to stop at the same image. When I go to close down I get the message that Photos are being imported to the library.
    Anyone have any suggestions.
    Thanks

    Photo:
    Welcome to the Apple Discussions. Check out your iPhoto library and make sure all photos are viewable and there. Force quitting when iPhoto is working can corrupt the database file, Library6.iPhoto. Make a backup copy of it and save in another folder.
    First make a backup copy of your iPhoto Library folder. Now download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field. Open iPhoto and see if it will work OK.
    If not, launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Lastly use iPhoto Library Manager to rebuild the library. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.
    Do you Twango?

  • Troubles with attached libraries - Forms6i

    I'm working with Forms6i (6.0.8.8.0).
    I have some troubles with attached libraries.
    I have to modify an old forms project. All server elements are on the original
    server computer (database, sources, libraries , ect..). Now I installed
    on a new client Pc forms6i and I tried to open forms modules.
    When I open modules I don't see attached library (pll and olb).
    I reattached the object library and the pl/sql library but when I close and open forms6i I can see in module structure only
    object library. No pl/sql library . I reattached pl/sql library too but i get errors like "identifier xyz must be declared" about functions and procedures defined in my pl/sql library .
    First I try to add in registry the pll library path in FORMS60_PATH then I try following suggestion :
    " just put all of your forms (*.fmx), menu (*.mmx) and PLL libraries (*.PLL or *.PLX) files into the same
    directory, then change your shortcut (icon) that you start the Oracle Forms runtime environment from so it's
    "Start in" (working directory) is set to the directory where your forms, menus and libraries are. "
    I get same errors.
    Could you help me ?
    Thanks in advance.
    Antonio

    Are your computers running the same operating system ?
    The pll file is a strange beast - although it contains portable source code, it also contains compiled code which has to be compiled on the right platform. plx files
    are entirely optional, and are only really required if you want to ship an executable without giving away the source code.

  • Trouble with export and import

    I am having trouble with export and import
    here is what I did...
    exp "'/ as sysdba'" PARFILE=parfile.txt
    PAFILE
    TABLES=user1.Table1
    file=Table1_1006.dmp
    LOG=Table1_1006.log
    query="where to_char(processeddate,'YYYYMMDDHHMISS') between to_char(to_timestamp('1911-01-01 00:00:00','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS') and to_char(to_timestamp('2011-10-06 16:46:26','YYYY-MM-DD HH24:MI:SS'),'YYYYMMDDHHMISS')"here is my log from export
    set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    Current user changed to user1
    . . exporting table               Table1   16019049 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.Then I started importing
    /database2/rdbm15> imp "'/ as sysdba'" file=Table1_1006.dmp fromuser=user1 touser=user1 tables=Table1 log=imp_Table1_1006.log
    Import: Release 10.2.0.5.0 - Production on Thu Oct 6 19:57:01 2011
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    . importing user1's objects into user1
    IMP-00015: following statement failed because the object already exists:
    "CREATE TABLE "Table1" ("APPROVALTRACEID" VARCHAR2(64), "REQUESTOR"
    "EID" VARCHAR2(9), "EID" VARCHAR2(9), "FIRSTNAME" VARCHAR2(32), "LASTNAME" V"
    "ARCHAR2(32), "MIDDLEINITIAL" VARCHAR2(8), "TIER" VARCHAR2(3), "JOBTITLE" VA"
    "RCHAR2(64), "JOBCODE" VARCHAR2(10), "EMPLOYEETYPE" VARCHAR2(2), "CONTRACTOR"
    "TYPE" VARCHAR2(2), "EMPLOYEESTATUS" VARCHAR2(2), "COSTCENTER" VARCHAR2(10),"
    " "COSTCENTERDESCRIPTION" VARCHAR2(50), "CONTRACTENDINGDATE" VARCHAR2(8), "A"
    "CCOUNTSTATUS" VARCHAR2(2), "LOGINID" VARCHAR2(70), "APPLICATIONGROUP" VARCH"
    "AR2(50), "APPLICATIONNAME" VARCHAR2(50), "APPLICATIONID" VARCHAR2(12), "LEV"
    "EL1" VARCHAR2(512), "LEVEL2" VARCHAR2(512), "LEVEL3" VARCHAR2(512), "LEVEL4"
    "" VARCHAR2(512), "LEVEL5" VARCHAR2(512), "PROFILECODE" VARCHAR2(50), "PROCE"
    "SSEDDATE" DATE, "APPROVERMANAGEREID" VARCHAR2(9), "APPROVERMANAGERDELEGATEE"
    "ID" VARCHAR2(9), "APPROVERT4MANAGEREEID" VARCHAR2(9), "APPROVERT4MANAGERDEL"
    "EGATEEID" VARCHAR2(9), "APPROVERAPPOWNEREID" VARCHAR2(9), "APPROVERAPPOWNER"
    "DELEGATEEID" VARCHAR2(9), "PERFORMEREID" VARCHAR2(9), "NATIONALID" VARCHAR2"
    "(30), "COUNTRYCODE" VARCHAR2(9), "PASSPORTID" VARCHAR2(20), "DATEOFBIRTH" V"
    "ARCHAR2(15), "CITYOFBIRTH" VARCHAR2(15), "VENDORNAME" VARCHAR2(50), "VENDOR"
    "MANAGERNAME" VARCHAR2(50), "VENDORMANAGERID" VARCHAR2(9), "VENDORADDRESS1" "
    "VARCHAR2(100), "VENDORADDRESS2" VARCHAR2(100), "VENDORSTATEPROVINCE" VARCHA"
    "R2(15), "VENDORCOUNTRYCODE" VARCHAR2(9), "VENDORZIPPOSTALCODE" VARCHAR2(9))"
    "  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 4076863488 "
    "NEXT 1048576 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)            "
    "                   LOGGING NOCOMPRESS"
    Import terminated successfully with warnings.but I did not get rows to database2
    [server1]database2
    /database2/rdbm15> sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Thu Oct 6 19:59:17 2011
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select count(*) from user1.Table1;
      COUNT(*)
             0
    SQL> exit
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for HPUX: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - ProductionEdited by: user3636719 on Oct 6, 2011 5:23 PM

    user3636719 wrote:
    Thanks for the reply...
    Old EXP IMP doesnt have capability to append the row, since you're using 10g use datapump instead. use option TABLE_EXISTS_ACTION=APPENDso my import should be like this
    imp "'/ as sysdba'" file=Table1_1006.dmp fromuser=user1 touser=user1 tables=Table1 log=imp_Table1_1006.log TABLE_EXISTS_ACTION=APPEND
    Did you look up the command line syntax and control options for imp?
    You should make it a habit that whenever anyone - especially a stranger on the web - gives you a bit of code or references a command or init parm or any some such, the VERY FIRST thin you should ALWAYS do is look it up for yourself and see exactly where and how it is used and what it means. That is how you grow beyond having to be spoon fed every little thing and become more self-sufficient.
    If you had, you would have seen that there is no TABLE_EXISTS_ACTION option for imp and seen that it is an option for impdp. And realized that exp and imp are NOT the same thing as expdp and impdp.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to tahiti.oracle.com.
    Drill down to your product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

Maybe you are looking for

  • My mid 2011 MacBook Air has slowed down significantly overnight?

    Last night my MacBook Air was working fine. When I went to use it this morning, it has slowed down significantly. It takes awhile for it to respond to trackpad movement or the keyboard. Opening finder is delayed now, opening any app is delayed now. B

  • I can't open itunes 7.5, it hangs at setup wizard, can you stop this?

    I've just downloaded itunes 7.5. It goes through install, says it's installed correctly, then when I open itunes, it hangs at the itunes setup assistant. The setup step is "download album artwork". I can't click ok or cancel and the only way to get r

  • Creating function module

    Hi , I want to creating a fm , first I defined import , export parameters , but when I am creating tables for.ex. companies type yu_co_st (structure defined by own ) it gives an error like "table parameters is obsolete "

  • Is it possible to do synchronized scrolling in mac preview?

    Hello!  I'd like to be able to sompare two pdfs side by side in mac preview.  Does anyone know a way or an app that will do this with synchronized scrolling between the windows? Thanks for your thoughts!

  • Photoshop user, 2,0 or 2,16  macbookpro?

    Considering the price difference I don't care about the extra 20 giga of the HD,i own 4 external HD. I won't use video,so the 256 ram in the video card are not important. i will upgrade anyway to 2 giga the ram. Does it make a big difference the 2,16