HELP !! with j2re-1_4_2_04   and   Windows XP Home

I am trying to re install j2re1_4_2_04. No matter what I try , I end up with rhe same message......."This installation package could not be opened. Contact the application vender to verify that this is a valid Windows Installer package." My Windows XP Home is updated on a regular basis. What am I doing wrong ????

is it error 1722?
check this thread
http://forum.java.sun.com/thread.jsp?forum=14&thread=504075&tstart=0&trange=15

Similar Messages

  • Problem with PC Suite and Windows 7 Home Edition 64-bit

    I installed PC Suite on my desktop with Windows 7 Home Edition 64-bit installed.  I was able to eventually run PC Suite (granted it needed to run in XP SP2 compatibility mode) and sync my calendar on my W518a cell phone with PC Suite via Bluetooth communications.  After I turned off my computer and restarted it, I could no longer open up PC Suite...its icon appears in my system tray with a red X over it as if it can't find the program.
    The SonyEricsson website indicates PC Suite can run with Windows 7.
    What is causing the problem I am having?  How do I get this corrected?

    I have downloaded and reinstalled the PC Suite software.  Although it is not working as well as it should, as long as I have my cell phone on with Bluetooth enabled prior to clicking on the icon to open the application, it seems to work OK.  Otherwise, when it opens, it just hangs and the only way you can close the program is to get into Task Manager and force it closed when its status is showing as "Not Responding".  I also have found that just "closing" the PC Suite window does not close the application...you have to click on the option to "Exit the Application" otherwise you continue to have it in your system tray with a red X over the icon.

  • HELP WITH CS3 VERSION AND WINDOWS 8.1

    I have just purchased Photoshop CS3 on Ebay.  Unfortunately, I had no idea that it might not be compatible with windows 8.1.  Before I open the package and have no way to return this product, can anyone tell me if they have been successful in uploading this program with Windows 8.1.  I did find Adobe note saying that there were no known major issues ... but have read some other reviews that conflict with this information.  Thanks so much for any help you could pass on.  I do not want to "pay as you go" month to month for Photoshop ... would rather own an older version I am quite happy with.  Thanks

    Ok it's like the serial number model in that you download the actual Photoshop programs to your PC (you can install on up to two PCs or Macs for your own use).  But instead of a serial number, you set up a recurring charge account, and you sign in to activate the program.
    Your work can be saved anywhere on your computer just like the older serial number type. You keep your files even if you discontinue the subscription. Your files can still be opened by other programs, but if there was a feature exclusive to CC or CC 2014 you won't be able to edit it. But to answer your questions your files stay with you, Adobe doesn't see or possess any copies.
    If you decide to stay on, what you get is upgrades and new versions as soon as they are released. No more upgrade fees. You get the Extended version of Photoshop with 3D and video editing features. Not bad for $10 a month.
    You do get cloud storage, but only 2 GB and nothing goes there unless you upload it.
    Think of it as a holding place for the files you wish to share with others.
    You can get Bridge CC with the latest Adobe Camera Raw, and Lightroom for managing and editing large amounts of digital Photos.
    Typekit if you want to add new fonts.
    That's the short story, here are the ddetails and of course you can try before you buy.
    Creative Cloud Photography plan | Adobe Creative Cloud
    If you are heavy into Design, you might want the full Creative Cloud for $50/month with all the web, video, and publishing tools you want.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    So check it out and see what you think.
    Gene

  • Help with JPCSC linux and windows inconsistency!

    I created a smart card with a single EF file.
    I set the access condition for reading/updating the said binary file to require a key.
    In GSM 11.11 specs this means:
    VERIFY_CHV must be sent first before READ_BINARY or UPDATE_BINARY. Otherwise, a '9804' response (access condition not fulfilled) is returned when performing READ_BINARY or UPDATE_BINARY.
    When running my code in Windows (jpcsc.dll), it works as expected but when I run my code in linux (libjpcsc.so), it hangs. Why??
    Here is an APDU trace:
    In Windows:
    CMD: A0A40000020001 - Select EF (0001)
    RSP: 9F0F
    CMD: A0B0000008 - Read Binary
    RSP: 9804 - Access condition not fulfilled
    CMD: A02000010831323334FFFFFFFF - Verify CHV
    RSP: 9000
    CMD: A0B0000008 - Read Binary
    RSP: 41424344454647489000 - Data of EF successfully read
    In Linux:
    CMD: A0A40000020001 - Select EF (0001)
    RSP: 9F0F
    CMD: A0B0000008 - Read Binary
    ----HANGS----
    I have tried jpcsc 0.8.0 and 0.7.5 with the same results. Help from the experts please!!
    Thanks in advance.

    any help please?

  • Need help with an Aforge and windows forms memory stack-up issue

    Hello,
    I am experiencing a strange memory stack-up in my c# windows form program that occurs all the time on slow PCs, and when the windows form loses focus or is otherwise interrupted on faster PCs.
    The program I have written uses Aforge to get images from my webcam, which I then display in an Aforge picturebox control (CurrImagePic in code) in the windows form.  The images are switched into the picture box and then disposed at the camera's native
    framerate, so it appears as video to the user, not still images.  The picture box is 1080x1920, but the space for it in the form is smaller and so I allow the user to scroll around the picture.
    After about ~30 seconds of memory-stable operation on slower PCs, the problem begins.  On faster PCs, the problem only occurs when holding down scroll bar arrows or clicking and dragging around either scroll bar, and if I lock the PC or bring up the
    Ctrl+Alt+Delete menu.
    The problem itself is that memory used by the program starts to increase in very large chunks, leading to an out of memory crash.  This is unstoppable on slower PCs, but on the faster PCs if you stop scrolling or return from the lock/Ctrl+alt+delete
    menu, the program stabilizes at the higher memory usage level.  The memory that was accrued during scrolling or while in the lock menu is never collected by the garbage collector.  I've even tried to put in a button that forces a GC.collect() when
    pressed, and it does not reduce this memory usage.
    I've run perfmon and found that the memory increase is on the unmanaged heap, but I don't know if it's coming from bitmaps which are not being disposed or what it could be from.  It's been impossible to track down since it does not occur except in the
    above conditions.  I've tried various solutions (like moving my image processing out of the event handler and even using both global flags and a "lock" statement to try and ensure that only one thread or frame can access the image processing
    and displaying method at at time, but I have seen no change.  In fact, I am now seeing some unexplained small jumps in memory usage that I wasn't seeing before I put in the lock and moved the processing out of the handler.
    Has anyone run into situations like this?  I am at a loss for what I need to fix.  I think the problem is based around my Aforge event handler and image processing method if it is in my code at all - but I also have a suspicion that this is something
    deeper in the windows form code that I am either misusing or that can't keep up with the demands of my code.  Code below:
    //Applicable Globals to this code snippet
    private bool ALLOWFRAME = true;
    private Object FRAMEKEY = new Object();
    private VideoCaptureDevice COMPVID;
    private Bitmap TMPLTCAP;
    private System.Drawing.Image OLDIMAGE;
    private bool RCRDPIC = false;
    private void COMPVID_NewFrame(object sender, NewFrameEventArgs eventArgs)
    //Only process a frame when another is done processing
    if (ALLOWFRAME == true)
    ALLOWFRAME = false;
    Bitmap PassFrame = AForge.Imaging.Image.Clone(eventArgs.Frame);
    ProcessFrame(PassFrame);
    PassFrame.Dispose();
    private void ProcessFrame(Bitmap frameIn)
    lock (FRAMEKEY)
    if (OLDIMAGE != null) { OLDIMAGE.Dispose(); }
    //Call comparison method if flag is set.
    if (COMPON == true)
    Difference TmpltFilter = new Difference(TMPLTCAP);
    TmpltFilter.ApplyInPlace(frameIn);
    OLDIMAGE = CurrImagePic.Image;
    CurrImagePic.Image = AForge.Imaging.Image.Clone(frameIn);
    OLDIMAGE.Dispose();
    else
    OLDIMAGE = CurrImagePic.Image;
    CurrImagePic.Image = AForge.Imaging.Image.Clone(frameIn);
    OLDIMAGE.Dispose();
    //Toggle the flag back to false to show it's safe (i.e., comparisons have stopped)
    //for the result-recording method to copy from the picture box if it is attempting to copy
    if (RCRDPIC == true)
    RCRDPIC = false;
    ALLOWFRAME = true;

    As you are using third party tools and controls, and I cannot find posts on parallel cases using native VS controls, have you asked in the Aforge forums about your memory issue?
    http://www.aforgenet.com/aforge/framework/

  • Problems with Acrobat 8 and Windows 7 64 bit

    Hi all
    I need help with Acrobat 8 and Windows 7.
    During the installation I'm asked to locate the file AdobePDF.dll on the disk. Selected the file in C:\Program Files (x86)\Adobe\Acrobat 8.0\Acrobat\Xtras\AdobePDF\AMD64.
    The installation finishes without any other problem.
    The problem arises when I want to create a pdf from a Word document. I'm using Office 2007. When I select he option to create a pdf from a file, I get message in the attached image.
    If I try to used the Adobe PDF printer from within Word, nothing happes. The small printer icon apprears in the Windows task bar, but that is all. If I double click on the icon, I can see the print job, but that's all. There is no dialog box that asks me to save the file.
    Assistance will be apppreciated.

    Acrobat 8 is not certified for Win7, particularly the x64 version. If you got the installation to go, the first step is to update AA8 to at least AA8.2. The x64 with XP required at least AA8.2 and I suspect that has not changed. I would suggest updating to the latest, either from the help menu (until no more updates are available) or by downloading the updates from the adobe.com>downloads page. For the latter, download ALL updates after your current version and install them in ORDER. They are not cummulative in most cases. You only need to reboot after the final update. The updates may get you going. If not, you may simply have to upgrade to AA9 or search for what others have been able to do in your situation.

  • Good afternoon.I have a computer with W Vista 8, Windows office home and business 2013. I recently tried to install Photoshop Elements by CD with serial number but on the desktop appears the following message: error 1 (configuration problem) try to uninst

    What's error 1 in adobe photoshop elements configuration? I have a computer with W Vista 8, Windows office home and business 2013. I recently tried to install Photoshop Elements by CD with serial number but on the desktop appears the following message: error 1 (configuration problem) try to uninstall and reinstall. I have done this but the message continues to appear

    You haven't mentioned which version of PSE. If it is PSE 13, that requires a minimum of windows 7.

  • Help, I installed parallel and windows, and opened videos (on an external hard disk) with windows, and now cannot open them with Mac, and use i movies.  How do I reverse this?

    Help, I installed parallel and windows, and opened videos (on an external hard disk) with windows, and now cannot open them with Mac, and use i movies.  How do I reverse this?

    Paragraphs help the reader, just saying.
    What are you actually trying to do? Why do you need "DVD size" folders if you're creatng an Archive on an external hard drive?
    Also, I understand burning folders instead of individual photos or albums gives you more space on a DVD.
    It makes no difference at all.
    How can I keep the captions on my photos (not events) when I print or transfer to a new folder?
    You can export while writing the metadata to the file in most cases.
    Tne only way I know is to copy photos from the Windows to folders on my HD, then copy and paste photos or albums or events to HD, then create a new folder and fill it to the appropriate DVD size. 
    HD? Another HD? You use HD there in a way that makes no sense. What's the point of 'DVD size'?
    I also thought I should download future photos to my Canon programming that comes with EOS cameras and edit and then decide which photos to save to iPhoto library and which to save only to my archival HD?
    Does this have any relation to the previous questions? You know you can delete from iPhoto, right?
    You're somewhat confused and you need to
    1. Decide what exactly you want to do
    2. Then go about it.
    If I understand you correctly - and there's no guarantee that I do -  the easiest thing is to bring all your Photos into iPhoto and do everything from there.
    You can have an archive on an external disk, you can sort and select and edit with or via iPhoto
    Regards
    TD

  • My iphone 5 is not syncing with my laptop and windows 8. cant find an itunes app for my laptop. is there something i can get that will help with this

    My iphone 5 is not syncing with my laptop and windows 8. cant find an itunes app for my laptop. is there something i can get that will help with this?

    Lbo51380 wrote:
    cant find an itunes app for my laptop. is there something i can get that will help with this?
    Go here -> http://www.apple.com/itunes/download/

  • Is Firefox 4.0 now compatible with ZoneAlarm Browser 1.5.260.0 and Windows Vista Home Premium, 64Bit System, Service Pack 2?

    Is Firefox 4.0 now compatible with ZoneAlarm Browser 1.5.260.0 and Windows Vista Home Premium, 64Bit System, Service Pack 2? Earlier when checking for updates there were compatibility issues. Were these issues resolved to allow me secure operation with Firefox 4.0?

    I also am a zone alarm user and was not to happy about the issue with 4.0
    I use sky .fm for music and was not happy when it would not play. required update to latest flash,which didn't work no matter what. even the suggestion in another thread.

  • Photoshop CS5 and Windows 7 Home Premium?

    Functioning new PC/Windows 7 software in question:
    HP Pavillion Elite HPE-171f Desktop Intel Core i7-860 Processor
    6GB DDR3 Memory - 1TB Hard Drive
    NVIDIA GeForce GTX 260 with 1.8GB Dedicated Graphic Memory
    Genuine Windows 7 Home Premium 64-bit
    Question - for recent CS5 users/experts using similar hardware/software listed above:
    Soon to purchase Photoshop CS5 full package (discs).  Will it install and run well on Windows 7 Home Premium and an i7-860 processor?
    I am reading far too many negative comments regarding Photoshop CS5 installation but it seems that they are mainly due to type of system and Windows version etc.  Is the above system and Windows 7 Home Premium compatible enough for this software?
    Hoping to hear from experts or those who have a similar system as above.
    Thank you.  Much appreciated.

    This link of Minimum system requirement can help you out: http://www.adobe.com/products/photoshop/photoshopextended/systemreqs/
    Zeno Bokor wrote:
    You're reading only negative comments regarding the installation procedure because you're on a support forum. People don't come here to say that everything is working as it should
    @ Zeno : Well said , Adobe should keep reward for Users who come and tell how good their install went

  • Can I run a windows software program taht is on a CD on my macbook pro after I install bootcamp and windows xp home?

    Can I run a windows software program that is on a CD on my macbook pro after I install bootcamp and windows xp home?

    genepaquin,
    the last MacBook Pros that supported installing Windows XP in a Boot Camp partition are the Mid 2010 models. If your MacBook Pro is newer than that, and you don’t have a newer version of Windows to install into a Boot Camp partition on your MacBook Pro, then you might consider an alternative such as running Windows with the help of programs such as VirtualBox or Parallels Desktop rather than through Boot Camp.

  • Please help me to find out windows 7 home premium product key

    Please help me to find out windows 7 home premium product key .My windows product ID is 00359-OEM-XXXXXX-XXXX
    my pc have sticker but is damage ...only can see last is -RXWJ8-XXXXX

    Hi,
    Please don't disclose any product key information in here. This is public and open place to discuss Windows 7 problem. It's dangerous for any personal information.
    Also, since the Windows is brought with OEM computer, maybe you could try to contact the manufacturer for help.
    Karen Hu
    TechNet Community Support

  • Sync help with new itunes and iphone update 3gs needed!!?

    hi there, ive recently updated my itunes and iphone simultaneously. my iphone says it is now got 0s 3.1.3 but my itunes says it is 9.0.2.25 NOT 9.03.
    When i tried to sync it , it comes up with the message - unknown error (-39)
    have tried reupdating and syncing but wont work/ please some help??!!!
    cheers, mark
    p.s. this is the first problem iv had with the phone since purchasing

    HIYA THERE, just to update you , iv perofrmed the diagnostics tests and it passed them all including syncing!!
    here are the results of that testing if thats any help at all.
    Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)
    Sony Corporation VGN-FW11E
    iTunes 9.0.3.15
    QuickTime 7.6.5
    FairPlay 1.6.16
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.6.0.32
    Apple Mobile Device Driver 1.45.0.0
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number 62D18ECE943CD279
    Current user is not an administrator.
    The current local date and time is 2010-02-22 14:42:44.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc., ATI Mobility Radeon HD 3470
    ** External Plug-ins Information **
    No external plug-ins installed.
    The drive H: MATSHITA DVD-RAM UJ870QJ Rev 1.01 is a USB 2 device.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {65E1948C-C19F-4514-B665-5F275E79C0FD}
    Description: Intel(R) WiFi Link 5100 AGN
    IP Address: 192.168.0.3
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.0.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.0.1
    Lease Obtained: Mon Feb 22 13:04:26 2010
    Lease Expires: Tue Feb 23 13:04:26 2010
    DNS Servers: 192.168.0.1
    192.168.0.1
    Adapter Name: {7E9A20F0-9B2E-4102-A7AA-A61684C68515}
    Description: Marvell Yukon 88E8055 PCI-E Gigabit Ethernet Controller
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: No
    DHCP Server:
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple website was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-02-22 14:36:10.
    ** iPod/iPhone Connectivity Tests **
    iPodService 9.0.3.15 is currently running.
    iTunesHelper 9.0.3.15 is currently running.
    Apple Mobile Device service 2.50.39.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    RICOH OHCI Compliant IEEE 1394 Host Controller. Device is working properly.
    Connected Device Information:
    Marks’s iPhone, iPhone 3GS running firmware version 3.1.3
    Serial Number: 839412C63NP
    ** iPhone/iPod touch Sync Tests **
    Sync tests completed successfully.
    cheers,
    mark

  • I have an issue with the tabs and windows disappearing....?

    I have a constant problem with Firefox now. I notice that with Firefox 4 and 5 there has been a reoccurring problem with the tabs and windows closing on their own. If I have more than one window open, one of them will suddenly disappear and I wont see the tab at the bottom anymore until I click out of the one I am currently on. It is very annoying and only when I get out of Firefox completely will it sometimes reappear. Even more frightening is the fact that when I move the mouse downward to the bottom of the page the page shuts out as if I clicked out of it.
    I am wondering if this is a security issue meaning some type of malware or virus that is manipulating my browser or is this a common issue that has some unknown cause? I would like to know what the cause is and how it can be fixed because it annoys me all the time. Please help!!

    No Issue with the voltage in general. iPad is being charged via USB.
    1. If you connect it directly to the computer - no problem.
    2. If you want to charge it directly from the power socket you will need this:
    http://store.apple.com/uk/product/MB706B/B/apple-usb-power-adapter
    TZ

Maybe you are looking for

  • Adobe photoshop licensing for this product has expired, backup swatches and brushes.

    when i open adobe photoshop CS3 and flash CS3 a box appears saying " licensing for this product has expired. please reinstall or contact help" i have tried all the soutions and are at to "reinstalling" i dont have the disc or the code. all i am worri

  • Convert jsp to pdf?

    The code displays the desired output from a jsp. It is a report (table of computed values). I need to convert it to pdf. i've been working on this but i fail. Here is the code of the jsp where the content of the report is generated.. <%@ page languag

  • Modify Number Range for Purchase Order

    Hi All, We have created a new transaction type 'ECPO' for Shopping carts in SRM.We have given it a new number range. While creating a shopping cart and based upon a condition how do i ensure that my shopping carts get created with this transaction ty

  • Returning to main timeline from movie clip

    okay on my main timeline i have an intro, then a main menu. from that main menu it goes to a movie clip, i want to create a 'back to main menu' button inside the movieclip that will return to a certain frame in the main timeline. can anybody help me

  • Communication Error when trying to use Video Chat

    When I try to connect via ichat video chat to my friends I recieve an error: "Can't get video from camera" I saw a past thread that asked me to remove widgets as well as checking my bandwidth. Both seem to be fine, I am the only computer on my connec