How do I run a repair program?

How do I run a repair program

Normally there are instructions provided on how to use a repair program, usually they are provided by whatever resource made that repair program available, such as a web page.  It might also be the case that the repair program provides its own instructions which could be in the form of a separate text file or possible part of the application itself where you start the program and it tells you what to do.
If you can identify the repair program you are talking about and indicate where you acquired it from, it might be possible to provide more specific help.

Similar Messages

  • How do we run a servlet program in eclipse

    how do we run a servlet program in eclipse.

    Not at all, because servlets require a servlet container. Some Eclipse plugins (Lomboz etc.) do provide integration with those.

  • How do i run a java program an another directory?

    How do I run a java program that's in a different directory?
    I have been doing this in the command line:
    java "C:\Document and Settings\freeOn\Desktop\Java\Test\test"
    and I get
    Exception in thread "main" java.lang.NoClassDefFoundError:
    C:\Document and Settings\freeOn\Desktop\Java\Test\test
    I just thought there might be a quick way to do this and not
    have to cd to the following dir evertime i want to run an app in
    console.
    The test.java file is this:
    import java.io.*;
    public class test {
        public static void main(String args[]) {
          System.out.println("Testing.....");

    Ok I looked in the java help and found the classpath, this makes it alittle easier.
    java -cp C:\DOCUME~1\freeOn\Desktop\Java\Test\ test
    At least i can run this in the run dialog which makes it easier thanks for you help kota balaji

  • How can I run external console program, printing output to JTextPane?

    How can I run external console program, printing output to JTextPane?
    I have a console app. written in C++ and I would like to run in it from java swing app. and I would like to see its output in a JTextPane.

    I have used this article
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    to successfully pipe output from jboss batch files to a JTextPane.

  • How do i run a Repair Disk from ARD

    how do i run a Repair Disk from ARD

    have you considered a netboot image and or a safeboot?
    With a netboot image you could try repairing the drive remotely. (the down side is this requires a mac os x server to do)
    A SafeBoot can be remotely triggered,  and it include automatic disk check and repair. (the downside is depending on how the computer is connected to the network, it may not re-connect to the network when safeboot complete and boots into 'safe mode'. ) I find if the computer is connected to the network by a built-in ethernet adapter, I can usually still access the computer in safe mode
    Before running a disk repair or permissions repair, it's a good idea to make sure the computer is backed up.
    Also, in the case that a NetBoot, Disk Repair, or SafeBoot fails, you would probable want to be able to physically walk over to the computer.
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck explains that SafeBoot includes Automatic Verify and Repair of Disk.
    Mac OS X: Starting up in Safe Mode explains how to use the terminal to configure a computer to SafeBoot into SafeMode. It also explains how to turn off SafeBoot after booting into SafeMode.
    cheers!

  • How do I run disk repair on Mac OS X Lion 10.7.5 from own system?

    how do I run disk repair on Mac OS X Lion 10.7.5 from own system?

    Boot into the Recovery HD (restart holding down Command +r), select Disk Utility>Macintosh HD>Repair Disk. More info here:
    OS X: About OS X Recovery

  • How can i run my java program with out java language

    Hai to every one ..Iam new to java language ...am using windows xp operating system , i did not installed java language in my system .. how can i run a java program with out installing java language... Which files is requied to run java program..?
    any one can help me??

    Hai to every one ..Iam new to java language ...am
    using windows xp operating system , i did not
    installed java language in my system .. how can i run
    a java program with out installing java language...
    you ... can ... not ... do ... this
    Which files is requied to run java program..?
    any one can help me??a JVM. Download it from sun's website.
    [url http://java.sun.com/javase/downloads/index.jsp]Download JavaSE here

  • How can I run an external program without quitting Firefox?

    I want to run an external program from within Firefox, much as Outlook express is run from the email button. How do I set this up?
    Firefox doesn't import my Bookmarks from the listed html file. Any cure for this?

    I don't want to run the mail program, I want to run another program.
    Maxthon allows me to do this using External Tools. Does Firefox allow me to run other programs without leaving Firefox?
    2. Firefox allows me to load an html file which contains my bookmarks, but it doesn't load the bookmarks file. is there a solution?

  • How can I run an external program from a PLSQL procedure?

    Is there a package to run an external program from PLSQL? or is there another way to do that?
    thanks.

    here there is an example about how a PL/SQL procedure can
    work with an external C program.
    http://download-east.oracle.com/docs/cd/A87860_01/doc/appdev.817/a76936/dbms_pi2.htm#1003384
    Apart from that you have Java Stored Procedures option
    to carry out your task.
    Java Stored Procedures Developer's Guide Contents / Search / Index / PDF
    http://download-east.oracle.com/docs/cd/B10501_01/java.920/a96659.pdf
    Joel P�rez

  • How can I run a java program on Linux?

    I have JBuilder's IDE installed on my Linux partition and it works. However I don't know how to compile and test a program without it. Also I tried to install Limewire on Linux and although I've installed the Java SDK on the system. Once before I installed JBuilder and then JBuilder (I guess) installed it again. However it told me it couldn't find the Java Virtual Machine. Isn't this installed with the JDK? I am able to run programs through JBuilder so I can't see why I'd have a problem. Any answers to the above issues would be greatly appreciated.

    Go here and work out how to make a simple app to compile and run on the command line: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/unix.html#2b
    (You should find the JDK from a directory under the jbuilder directory so use that and not the /usr/local/jdk1.4 in the example.)
    Then find the classes or source code of your project and do the same thing to it.

  • How can I run the C program which will interact with user

    hi, all
    I wanna run a C program whose function is that just show a line of characters, waiting for user input and finally show what user has entered. The C can run correctly in command window. But when I use Runtime class, it can not run correctly. My question is that how I can emulate that C program just by invoking Java method. The code I have written below, thank.
          String command = "cmd /c a.exe";  // a.exe is that C program
          String s;
          try {
             Process process = Runtime.getRuntime().exec(command);
             InputStream input = process.getInputStream();
             BufferedReader bufferedReader =
                new BufferedReader(new InputStreamReader(input));
             while((s = bufferedReader.readLine()) != null)
                  System.out.println(s);
          catch(IOException e) {
             System.err.println("IOException: " + e.getMessage());
          }

    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Process.html#getOutputStream()

  • How can i run my java program in background process?

    hi all,
    i am working on desktop monitoring so when i start my program on client machine that is visible to all but i want this program client not visible to all instead of this can be run in background process . so, nobody can see that.
    so, how i can do this ?
    pls pls help me
    thanks in advanced to helper
    regards
    maulik & ritesh

    this will run the java program in the background.It'll just use the Windows Java Console instead of the command-line console. It has nothing to do with running as a background process.
    Edit: though this might be exactly what the OP wants: not "background process" but "no DOS console".

  • When will there be a fix for the permissions problem in iTunes 11.1.1? I get a list of three or four-hundred when I run the repair program.

    Does anyone know when will there be a fix for the permissions problem in iTunes 11.1.1? I have a list of three to four hundred repairs everytime I use the repair program. ~Mike.

    SinkeMH wrote:
    Does anyone know when will there be a fix for the permissions problem in iTunes 11.1.1
    Likely someone does but Apple has not stated if/wehn.
    I have a list of three to four hundred repairs everytime I use the repair program. ~Mike.
    Then don't use the repair program unless you are actually having an issue.

  • How do I run a DeDuper program to clean all of the duplicate files off of my library?

    I see the Deduper program and understand what it does. but how the **** do I run this?
    Its to the point where I cannot add music to anything because I get 10 of the same files on EVERYTHING. It makes Itunes not worth having? I am losing hair right now

    Ask the app developer. That's not an Apple product.

  • How to check running time of program in real time?

    Hello Experts,
    I am currently creating a report wherein I need to check how long the program is running.
    For example, If it currently runs in almost 10 minutes, I need to terminate the report or create
    a message informing the user to please limit the selection of records.
    Are there any FMs to do this? Thank you guys and take care!

    Get runtime in two phases:
    DATA: t1 type i, t2 type i, delta type i.
    GET RUNTIME FIELD t1.
    ..... evaluation .....
    GET RUNTIME FIELD t2.
    delta = t2 - t1.  "Microseconds!
    .... check the delta and send message if necessary!
    Hope this helps, R.

Maybe you are looking for

  • Plugin-container continued !!!!!!!!!Like it or not.

    ''Duplicate post, continue here - [/questions/770868]'' plugin-container forum was closed...WHY? This is a legitimate problem with mozilla.The browser now sucks all because this thing was added.It was fine the way it was...did we get sold out to some

  • Over heating 2011 Macbook Pro - Please help???

    My August 2011 Macbook Pro has overheated causing the lacquer on my wooden floor to melt- Apple Customer Service state there is nothing wrong however this has been going on for 5 months and over 40 calls and visits!! My last visit to store the issue

  • Internal microphone not working on a T420s

    Hi, I have been googling a lot and reading the forums, but nothing seems to help. No matter what I do, the internal mic does not record any sound. I tried with pulseaudio and without, various options in alsa-base.conf, all kinds of settings in alsami

  • What upkeep/housework do I need to do on my Macbook...

    Sorry, not sure what the right term is for it.. Just bought my 1st mac.. getting used to it and loving it. What sort of upkeep do you need to do to it if any.. For example on my pc I was always told its good to run the scan disk scan every now and th

  • Need to delete Windows and reinstall

    I mistakenly created a partition that was just barely big enough to run Windows. I do not have enough C-drive disc space to install anything! Oops!. Can I delete Windows, restore the disc to one partition, and then create a bigger partition? If so, w