J2 run Int'l 1.4.1 freezes at InstallShield Wizard

I've tried several times to install 1.4.1 international on my computer. I run it, it extracts everything, and when it gets to the install shield part, it just sits there at 0%. Won't do anything. It's been up this time for about a half an hour. Still nothing. What do I do? How do I get it installed?
Windows XP, intel celeron, 1.8 Gb, 128ram, Eng w/Chinese language options.

It finally installed. The problem wasn't the software. The problem was the "0%" counter. Apparently it was installing the entire time. The counter just didn't change. Don't know if that's Java or InstallShield, but my problem is over.

Similar Messages

  • I own a MacBook Pro 2.4 ghz non unibody. I turn on my laptop for ten seconds and it freezes. It boots perfectly and runs for ten seconds until everything freezes. Please help!

    I own a MacBook Pro 2.4 ghz non unibody. I turn on my laptop for ten seconds and it freezes. It boots perfectly and runs for ten seconds until everything freezes. Please help!

    See if you can boot into single user mode with Command S.

  • My macbook pro running OS X 10.8.3 freezes when I plug an adapter into the displayport, even when nothing is connected to the other (vga) end. Anyone know a solution?

    My macbook pro running OS X 10.8.3 freezes when I plug an adapter into the displayport, even when nothing is connected to the other (vga) end. Anyone know a solution? I have used this adapter with a macbook air and it works flawlessly, but the moment I plug into the minidisplayport the macbook pro freezes with a little spinning color wheel that goes on and on. . .

    Hello there, sarhang27753.
    First thing that would come to mind to resolve the issue would be SMC and PRAM resets. I've linked Knowledge Base articles below:
    SMC
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    PRAM
    OS X Mountain Lion: Reset your computer’s PRAM
    http://support.apple.com/kb/PH11243
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • After 2nd time running a method my app window freezes 7 seocnds,error msg-

    Hello folks,
    first you will surely say is that my server is offline or something with the network is wrong but it is not ;-)
    thats the code:
    Please read my words after the pasted code at the bottom of the page!
    import java.awt.Color;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.LdapName;
    import javax.naming.ldap.Rdn;
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.*;
    import java.io.UnsupportedEncodingException;
    import java.util.*;
    import javax.swing.BorderFactory;
    public class MainWindow extends JFrame implements ActionListener
           static final long serialVersionUID = 1L; 
           private JLabel newPasswordLB      = new JLabel("Neues Passwort");
         private JLabel newPasswordRepeatLB = new JLabel("Neues Passwort wiederholen");
         private JLabel errorLB = new JLabel("Fehlerstatus:");
         private JLabel benutzerNameLB = new JLabel("Benutzername ausw�hlen:");
         private JPasswordField neuesKennwortPF = new JPasswordField();
         private JPasswordField neuesKennwortWdhPF = new JPasswordField(10);
         //private JLabel fehlerNachrichtLB = new JLabel();
         private JTextField fehlerNachrichtLB = new JTextField();
         private JButton pwBT = new JButton("Setze neues Passwort");     
         private DefaultListModel listModel = new DefaultListModel();
         private JList liste = new JList(listModel);
         private JScrollPane benutzerListeSP = new JScrollPane(liste);
         private JCheckBox kennwortVergebenCB = new JCheckBox("Benutzer vergibt Kennwort bei Neuanmeldung selbst");
         JFrame frame;
         String bla;
         String neuesKennwortTemp;
         String benutzername;     
         String klassengruppe;  // OU=Klassen
         String lehrergruppe;   // OU=Lehrer
         String edvlehrername;  // z.B. "verenabit"
         String schulname;      // z.B. OU=ASR
         String BaseDN=",DC=bodensee,DC=de";
         String adminPassword = "test";
         String adminUser = "cn=administrator,cn=users,dc=bodensee,dc=de";     
         public MainWindow()
             super("LDAP Modification Tool");            
             setLayout(null);         
             add(newPasswordLB);
             add(newPasswordRepeatLB);     
             add(neuesKennwortWdhPF);
             add(neuesKennwortPF);              
             add(pwBT);       
             add(errorLB);
             add(fehlerNachrichtLB); 
             add(benutzerListeSP);        
             add(benutzerNameLB);
             add(kennwortVergebenCB);    
             kennwortVergebenCB.setBounds(16,120,350,25);
             benutzerNameLB.setBounds(430,25,160,25);    
             fehlerNachrichtLB.setOpaque(true);
             fehlerNachrichtLB.setBackground(new Color(255,255,255));
             fehlerNachrichtLB.setBorder(BorderFactory.createLineBorder(new Color(155,155,155)));
             neuesKennwortPF.setBounds(230,50,150,25);
             neuesKennwortWdhPF.setBounds(230,80,150,25);
             newPasswordLB.setBounds(20,50,130,25);
             newPasswordRepeatLB.setBounds(20,80,190,25);       
             pwBT.setBounds(230,170,150,40);             
             errorLB.setBounds(20,385,100,25);
             fehlerNachrichtLB.setBounds(110,385,270,25);       
             benutzerListeSP.setBounds(430,50,160,360);
             kennwortVergebenCB.setHorizontalTextPosition(SwingConstants.LEADING);     
             neuesKennwortPF.setMargin(new Insets(1, 3, 1, 1));
             neuesKennwortWdhPF.setMargin(new Insets(1, 3, 1, 1));        
             pwBT.setMargin(new Insets(0,0,0,0));     
             fehlerNachrichtLB.setForeground(new Color(100,120,255));          
             pwBT.addActionListener(this);         
             liste.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
             liste.setVisibleRowCount(1);               
             listModel.addElement("verena bit");
             listModel.addElement("verena bit");
             listModel.addElement("verena bit");      
             this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             this.setSize(620,460);
             this.setLocationRelativeTo(null);
             this.setResizable(false);      
             this.setVisible(true);
          }  /*--------------------------------------- Konstruktor -------------------------------------------*/
          public String schulenameSuchen()
            return "";
          public void edvlehrernameEinlesen()
            edvlehrername = System.getProperty("user.name");      
          public void benutzernameEinlesen()
          int index = liste.getSelectedIndex();
               benutzername = (String) liste.getModel().getElementAt(index);       
               benutzername = "CN=" + benutzername + ",OU=Lehrer,OU=ASR";
          public void neuesKennwortEinlesen()
          neuesKennwortTemp = String.valueOf(neuesKennwortPF.getPassword());          
          public void actionPerformed(ActionEvent e)
           char[] neuesKennwortArray = neuesKennwortPF.getPassword();
           char[] neuesKennwortWdhArray = neuesKennwortWdhPF.getPassword();
           if (e.getSource().equals(pwBT))
                if(liste.isSelectionEmpty())
                     JOptionPane.showMessageDialog(frame,"Sie m�ssen einen Benutzer ausw�hlen!");
                return;
           else if(!Arrays.equals(neuesKennwortArray,neuesKennwortWdhArray))
                JOptionPane.showMessageDialog(frame,"Die eingegebenen Kennw�rter sind nicht gleich!");
                return;
           else if(neuesKennwortArray.length == 0 || neuesKennwortWdhArray.length == 0)
                JOptionPane.showMessageDialog(frame,"Es wurde kein Kennwort eingegeben!");
                return;
                benutzernameEinlesen(); // F�r diesen Benutzer wird das Kennwort ge�ndert
                neuesKennwortEinlesen(); // Dieses Kennwort bekommt der obige Benutzer neu
                edvlehrernameEinlesen(); // Anhand dieses EDV-Lehrers wird die Schule ermittelt wo sich der EDV-Lehrer
                // befindet. Dieser schulname bzw. z.B. OU="ASR" wird als Einstieg genommen, wenn sich der EDV-Lehrer
                // mit dem W2K Server befindet. Somit gibt es nur noch das Unterverzeichnis              
                // Eine Hashtable speichert Schl�ssel/Wert Paare
                Hashtable env = new Hashtable();
                String keystore = "C:/Programme/Java/jre1.6.0_01/lib/security/ZertifikatBerlin";
                System.setProperty("javax.net.ssl.trustStore",keystore);
                // Die Methode put der Klasse Hashtable weist die rechten Werte (Stings hier) einen Schl�ssel zu (verschiedene Kontexte hier)
                env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
                env.put(Context.REFERRAL,"follow");
                env.put(Context.PROVIDER_URL,"ldaps://rhein:636");      
                env.put(Context.SECURITY_PROTOCOL,"SSL");
                env.put(Context.SECURITY_AUTHENTICATION, "simple");
               env.put(Context.SECURITY_PRINCIPAL, adminUser);
               env.put(Context.SECURITY_CREDENTIALS,adminPassword);                  
           try
                DirContext ctx = new InitialDirContext(env);
                String base = "dc=bodensee,dc=de";
                String filter = "(sAMAccountName=" + edvlehrername + ")";
                String[] attribut = {"distinguishedName"};
                SearchControls kontroller = new SearchControls();
                kontroller.setSearchScope(SearchControls.SUBTREE_SCOPE);
                kontroller.setReturningAttributes(attribut);
                kontroller.setReturningObjFlag(true);
               NamingEnumeration enm = ctx.search(base,filter,kontroller);
               String DNkette="";
                while(enm.hasMore())
                    SearchResult resultat = (SearchResult) enm.next();
                    System.out.println(resultat.getNameInNamespace());
                    DNkette = resultat.getNameInNamespace();
                // CN=verena bit,OU=Lehrer,OU=ASR ,DC=bodensee,DC=de
                // index=4      ,index=3  ,index=2,index=1    ,incex=0
                LdapName FullDN = new LdapName(DNkette);
                 for( int i = 0 ; i < FullDN.size() ; i++ )
                     System.out.println(FullDN.getRdn(i));                                            
                 ctx.close();
                // Wert f�r das Kenntwort in der Activev Directory erzeugen
                String neuesKennwort   = "mother"; //neuKennwortPF.getText();
                String neuesKennwortAD = "\"" + neuesKennwort + "\"";
                byte[] newpassword = neuesKennwortAD.getBytes("UTF-16LE");
                // The username to be used for the password change                    
                ModificationItem mods[] = new ModificationItem[1];
                mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE,new BasicAttribute("unicodePwd", newpassword));
                ctx.modifyAttributes(fehlerNachrichtLB.getText(),mods); */
            catch (Exception er)
                fehlerNachrichtLB.setText(er.toString());
            } // if Ende           
          } // actionPerformed Ende    
              public static void main(String args[]) throws NamingException, UnsupportedEncodingException
                 try
                      JFrame.setDefaultLookAndFeelDecorated(true);          
                 catch (Exception e)     
                   e.printStackTrace();
                 MainWindow Fenster = new MainWindow (); 
           } When I run the application the first time enter twice a password and select a user etc.. to fullfill the if clauses and press the button all is working fine: I get this result:
    CN=verena bit,OU=Lehrer,OU=ASR,DC=bodensee,DC=de
    DC=de
    DC=bodensee
    OU=ASR
    OU=Lehrer
    CN=verena bitthe first line with CN=verena bit etc... I get because of this line:
    System.out.println(resultat.getNameInNamespace());the next 5 Relative DN`s i get because of this code:
    // CN=verena bit,OU=Lehrer,OU=ASR ,DC=bodensee,DC=de
    // index=4 ,index=3 ,index=2,index=1 ,incex=0
    LdapName FullDN = new LdapName(DNkette);
           for( int i = 0 ; i < FullDN.size() ; i++ )
                     System.out.println(FullDN.getRdn(i));                                            
                 }thats all fine, BUT when i hit the button in my application[b] the 2nd time and the above code gets executed my whole app freezes for 7 seconds and i get the error:
    javax.naming.ServiceUnavailableException: rhein:636; socket closedand when i click my button the 3rd time the app runs fine again and the fourth time i click my button the app throws me again the error and freezes ??
    Can someone help?
    another mysterious thing is when i dont use this line of code:
    env.put(Context.REFERRAL,"follow");
    I get a PartialResultException, but why ?

    A really odd thing is also that sometimes the user attribute like "cn" which i do retrieve gets not displayed in my JList when i start the application, but when i close the app and start it again it the JList contains the cn values or not its like a random factor. ???
    Someone told me that the garbage collector is not releasing all memory i used in my application so i have to release the resource explicit ??!! is that right? And how do i have to do this? I have never ever read something about that!

  • ITunes runs okay after fresh install, but freezes when I go to the store, or automatic download begins

    I posted the other evening about installing iTunes and then using a Library on a drive other than 'C.' I got this to work, used the old library file, iTunes creates a new one, freezes for a bit, and everything in those folders displays fine. Once iTunes starts to download two recent purchases, the program freezes. The downloads come in fine, but it takes hours before it shuts down by itself after clicking the exit button. Tonight I start it again. Everything is fine until I try to enter the store. The program freezes. Also, purchases in the cloud do not display, which may be due to the old library. I've never had any issues with iTunes in the many years I've been using it. Do I need to simply reinstall, create a NEW library on the separate drive, and then migrate existing material to the newly-created library? How do I get my purchases in the cloud (TV, Film, since all of my music is on the drive) to display so I can download them at will? I'm completely at a loss. ITunes used to be a lot easier to manage. I used to have libraries split between drives with no problem. I realize I've listed several broad problems here, so if I need to work through them one at a time, please tell me where to begin, or which specific info is needed to help you wiser folks help get my iTunes running once more.
    Thanks in advance!

    So I just learned that Apple now charges you for support to use their software if you're not a MAC user, but they still want me to purchase from their store, which I cannot use because the software is bugging out. Sense when did Apple become Microsoft? This is partly the reason I stopped buying pre-fab PCs, and just use their OS because I have to have it for work. I'd switch to Linux in a second if I could use my work-related software and had a player that could play iTunes proprietary content, since I've spent an obscene amount of income with them since 2005. I was hoping someone would stop by and give a hint of a solution, but I guess I'll figure it out on my own like I have to do when software designed for MS goes buggy. Maybe I'll rate this as solving my own problem and collect the 10 points. lol  Thanks to everyone to stopped by and read the problem.

  • How can I keep my macbook pro running 10.9.2 from continually freezing?

    My macbook pro running OSX 10.9.2 freezes randomly, sometimes before the computer has completely booted up.  I have no startup programs. Please help.

    Thank you for responding.
    EtreCheck results:
    Hardware Information:
              MacBook Pro (13-inch, Mid 2010)
              MacBook Pro - model: MacBookPro7,1
              1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 320M - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 0:4:31
    Disk Information:
              WDC WD10JPVX-22JC3T0 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 999.35 GB (750.53 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information:
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Support
              [not loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Support
              [not loaded] com.pctools.iantivirus.kfs (1.0.1) Support
              [not loaded] com.smarttech.iokit.SMARTBoard (9.7) Support
              [not loaded] com.tectona.driver.PL2303 (1.3.0) Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.tunnelbear.mac.tbeard.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.avast.home.userinit.plist Support
              [failed] com.google.keystone.agent.plist Support
    User Login Items:
              None
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
              FlashPlayer-10.6: Version: 13.0.0.206 - SDK 10.6 Support
              Default Browser: Version: 537 - SDK 10.9
              Flash Player: Version: 13.0.0.206 - SDK 10.6 Support
              AdobePDFViewer: Version: 10.1.0 Support
              QuickTime Plugin: Version: 7.7.3
              OfficeLiveBrowserPlugin: Version: 12.3.6 Support
              Google Earth Web Plug-in: Version: 7.1 Support
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
              DirectorShockwave: Version: 12.0.9r149 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
    Safari Extensions:
              Translate: Version: 1.1
              Exposer: Version: 1.1
              avast! Online Security: Version: 8
              1-ClickWeather: Version: 1.0
              SafariRestore: Version: 6.0.1
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              Flash Player  Support
              Flip4Mac WMV  Support
              SMART Board  Support
    Time Machine:
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        Untitled 1 [Local] (Last used)
                        Total size: 0 B
                        Total number of backups: (null)
                        Size of backup disk: Excellent
                                  Backup size 0 B > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   5%          kextd
                   3%          mds
                   2%          firmwaresyncd
                   1%          coreservicesd
                   1%          Finder
    Top Processes by Memory:
              106 MB          com.apple.WebKit.WebContent
              90 MB          Microsoft Word
              86 MB          Safari
              61 MB          WindowServer
              53 MB          Dock
    Virtual Memory Information:
              1.77 GB          Free RAM
              1.37 GB          Active RAM
              92 MB          Inactive RAM
              526 MB          Wired RAM
              272 MB          Page-ins
              0 B          Page-outs

  • My Mac Mini running yosemite 10.10.3 constantly freezes

    my mac mini runs slow & freezes after updating to 10.10.3

    Hi,
    Welcome to the Apple Support Communities!
    I understand that your Mac is not running as quickly as you would expect and you noticed this after the most recent update. In this situation, I would recommend reading over and working through the steps outlined in the attached article below. 
    OS X Yosemite: If your Mac runs slowly
    Best regards,
    Joe

  • Running "verify permissions" in Disk Utility freezes the Macbook

    Ever since I received my new Macbook, whenever I try to run the Disk Utility's "verify permissions", the system freezes up. Disk Utility seems to freeze, and I cannot interact with anything on the computer anymore. The mouse remains functional, but I cannot click on any other applications, change focus or even force quit.
    Any ideas? Thanks in advance!

    I always thought it was a bad idea to repair permissions from a disk other than the startup disk if you had updated the OS from what is on the install DVDs.
    Don't bother with verifying permissions as it takes as long as repairing them. Have you tried a straight repair of them instead? How about running that from a program like Cocktail?

  • G5 won't run AHT....systems freezes. Any Thoughts ?

    Hi All,
    I am trying to figure out what is going on with a G5 I have at work. Coworker says machine just freezes multiple times a day while she is working on it. I ran Tech Tools last week and it did not show any problems yet the freezes continue. So today I tried to run AHT version2.1 (G5 is running Tiger 10.4.8) and I can not get it to run. I first tried the extended test and on the first try it froze at 5 min 40 secs on the mass storage check and gave text in the screen top upper left ending in "ok". I restarted the machine and ran extended test again, this time it froze at 4 min at the logic board check again giving text ending in "ok".
    Then I tried the quick test twice. First time it froze at 11 secs at the logic board check. Second time it froze at 2 and a half mins again at the logic board check. The text again was in the upper left of the screen and the message said something about "invalid memory access at....and gave a whole string of numbers which mean nothing to me.
    So, does anyone have any idea what is going on with this machine? Do I have a RAM issue....this machine is mainly used for Photoshop work I had apple care on it but it expired 3/06 so that is no help. I will have new macs in a few months but am trying to keep this one running until they come in.
    G5   Mac OS X (10.4.8)  

    AHT on the original install disks/Tiger disks doesn't get updated with OS and firmware changes.
    The Genius Bar has access to the latest versions of AHT.
    Clone your hard drive (Superduper) to a new drive that you have Disk Utility>Zero-ed already and hold option to boot from the clone and see if your problems continue.
    Your problem could be hard drive, corruption in software, bad memory, PCI cards, external devices and so on.
    Only with a process of elimination can you solve your problem.
    Hope that helps.

  • With the lastest updates to foxfire, so It does not run slow or crash, why do I still have foxfire run from normal to slow, then freeze up and have either to reboot or click Ctrl w and to clear everything and re click foxfire to reload.

    Foxfire browser runs normal for a couple of days, then starts freezing up, where I cannot scroll with mouse or click in especially on facebook and fabulis.com. I have to either Reboot somputer or push ctrlw to clear the screen to desktop, then refresh desktop page and then click firefox icon to get back to where I was and continue on.

    It starts getting slow when it starts redirecting my web sites

  • Why do some youtube videos run for a while and then freeze in firefox

    HI i am having a problem with the lasted firefox browser. You see when I go to this website to watch a video witch is through youtubthe video will play for a little bit and then it will freeze but the audio of the video will keep playing but the video will still be frozen. I have went into firefox and I did go into tools and under privacy where it says clear recent history and I did put a check mark into clear catche, cookies, website preferences and push on the continue button. Then I went back to the website and again I did try and watch the youtube video with the same problem as described above. So then I did uninstall Adobe flash player and shockwave player and re downloaded both flash player and shockwave player and reinstalled them again. This changed nothing the youtube video keeps freezing and the audio keeps plays even when the video is frozen in firefox.
    edit: I was wondering can your antivirus cause videos from youtube to freeze.
    Help would be appreciated please.
    some info that might be helpful
    Firefox 36.0
    Windows 8.1 64 bit operating system
    Avast free 2015.10.0.2208

    Hello,
    Try these tool that may help solve your problem. Sometimes Video loads slowly depending on your network speed subscription from your network provider.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • 2.5 year old Compaq mini 110 running XP won't boot up / freezes up on Windows XP Screen...

    I get no error codes/messages & Have tried all HP's troubleshooting steps with the following results... Completed all except
    Hard drive test which reads "not supported" and recovery tool (F11) which doesn't work / won't launch recovery window. The mini
    still won't get past XP screen. I haven't a flash drive to utilize so was wondering if there was any other way to get it booted up? Possibly another way to access the recovery tool? Any help would be appreciated... Thks.

    You can always try by booting in safe mode, to see if Windows come up. If it does then you may need to remove all the Apple installed drivers from Add/Remove programs and try again. Here is a quick guide:
    If the computer is running, shut down Windows, and then turn off the power
    Wait 30 seconds, and then turn the computer on.
    Start tapping the F8 key. The Windows Advanced Options Menu appears. If you begin tapping the F8 key too soon, some computers display a "keyboard error" message. To resolve this, restart the computer and try again.
    Ensure that the Safe mode option is selected.
    Press Enter. The computer then begins to start in Safe mode.
    When you are finished with all troubleshooting, close all programs and restart the computer as you normally would.

  • After running (int x=0; x=x++) ,why the result is x=0??

    Let's see a example.
       int x = 0;
       x = x++;
       int y = 0;
       y = y++;what are the values of x and y?
    In fact x = 0 and y = 1.
    why x = 0?
    Is there anybody can examplain it?

    No, they are both zero.
    It's because x++ is using the post increment operator.
    Read some of [url http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%22post+increment%22&col=javaforums&x=28&y=8]these

  • After clicking "run" the Firefox download is now proceeding to the Wizard. I don't know why or what to do to fix it. Please help!

    I had Firefox on my computer and then I ran Wise Disk Cleaner, which somehow messed it up. I had to uninstall Firefox but when I tried to reinstall it goes through the "run" process but won't proceed to the Wizard. It keeps asking me for my Administrator password, which I do not know but I know when I installed it last time I didn't need that.

    If you are talking about app updates, these are permanently tied to the Apple ID used to purchase the app, regardless of the ID on your phone in Settings>Store.  The only way to stop the prompt for your older ID would be to delete these apps from your phone.  The ID in Settings>Store is the one being used for current purchases, not updates of apps purchased using a different ID.

  • I have downloaded FF and clicked on Run, and nothing at all happens, never see the wizard.

    I read the answers to the other people's questions on this - run as administrator - and that also didn't work.

    I assume you downloaded directly from Mozilla, and saved it to a non-temporary location such as Downloads or Desktop? https://www.mozilla.org/firefox/fx/#desktop
    In case the installer crashed, can you use the Windows Task Manager to terminate it and try again? To do that:
    * Ctrl+Alt+Esc to launch
    * Check the Applications tab first
    * Check the Processes tab next
    I'm not sure how the installer is identified in Processes, but it probably matches the file name under which you saved the installer.

Maybe you are looking for