Can anyone help me decompile a class file?

Can anyone pls help me decompile a class file? I've used DJ decompiler and Cavaj decompiler to decompile it but both can't seem to decompile it successfully. How do I attach the class file here? Thanks in advance!

Oh! Now I get it. So sorry I didnt intend for anybody
to do something illegal/unethical. I dont know much
about Java programming since I am very new to this
language. I didnt know anything about obfuscating
codes either. The reason why I was trying to
decompile the said class file is because I wanted to
check whether the hack program I downloaded ...That is completely contradictory.
By the way, can you tell me how I can learn Jave programming
without the aid of a book since I couldnt find one
yet.Given the eleventy bachillionty kathousand books that exist on java programming, something tells me you haven't looked too hard for one.
The best non-hard-copy source:
www.google.com

Similar Messages

  • Can anyone help me to change the file to version 8.6 ??

    can anyone help me to change the file to version 8.6 ??
    Attachments:
    Hydrostatic_Test.vi ‏2362 KB

    Duplicate Post.
    http://forums.ni.com/ni/board/message?board.id=170&thread.id=465548
    Tim
    Johnson Controls
    Holland Michigan

  • Can anyone help me in sending a file through FTP

    i have written a program to transfer files or directories in zipformat through FTP.i have also installed filezella server to check whether it is working or not.i have connected to filezella server but i am not able to send file.can any one send the code for sending the file.
    i have also tried the jakarta api sendfile ().but in that i don't what is mode means.
    for your reference i am sending the code as far developed.
    import java.io.*;
    import java.util.*;
    import java.util.zip.*;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    import org.apache.commons.net.ftp.*;
    import org.apache.commons.net.tftp.*;
    class FTPTransfer
    static public void main(String[]p)
    FTPTransfer ob = new FTPTransfer();
    // ob.Create_Zip_File(new File("outfile.zip"),new File[]{new File("c:\\trialtwo")}, false);
    ob.ftpConnect();
    // connecting to FTP server
    public void ftpConnect()
    boolean error = false;
    FTPClient ftp = null;
    try
    int reply;
    //ftp.connect("ftp.comcast.com");
    ftp = new FTPClient();
    ftp.connect( "localhost",21);
    // ftp.login( username, password );
    System.out.print("reply from FTP Server :"+ftp.getReplyString());
    // After connection attempt, you should check the reply code to verify
    // success.
    reply = ftp.getReplyCode();
    if(!FTPReply.isPositiveCompletion(reply)) {
    ftp.disconnect();
    System.err.println("FTP server refused connection.");
    System.exit(1);
    // ftp.sendFile();
    // transfer files
    // ftp.logout();
    TFTPClient tftp = new TFTPClient();
    System.out.print("before sending");
    tftp.sendFile("c:\\trialtwo\\a-1.txt",1,new FileInputStream("c:\\trialtwo\\a-1.txt"),"localhost",21);
    System.out.print("after sending");
    catch(IOException e)
    error = true;
    e.printStackTrace();
    finally
    if(ftp.isConnected())
    try
    ftp.disconnect();
    catch(IOException ioe)
    // do nothing
    System.exit(error ? 1 : 0);
    //send files
    // filename - The name the remote server should use when creating the file on its file system.
    // mode - The TFTP mode of the transfer (one of the MODE constants).
    // host - The remote host receiving the file.
    //port - The port number of the remote TFTP server.
    private void listContents( File Zip_File, File dir, ZipOutputStream out )
    throws Exception
    String[] files;
    files = dir.list();
    byte[] buf = new byte[1024];
    File[] file = dir.listFiles();
    for (int i = 0; i < file.length; i++) {
    System.out.println("*********** "+file);
    // File f = new File(dir,file[i]);
    try{
    FileInputStream in = new FileInputStream(file[i]);
    out.putNextEntry(new ZipEntry(file[i].getPath()));
    int len;
    while((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    catch(Exception e)
    zipEntry(Zip_File, file[i], out);
    } // end listContents()
    void Create_Zip_File(File Zip_File,File[] To_Be_Zipped_Files,boolean Skip_Dirs)
    try
    // Open archive file
    FileOutputStream stream=new FileOutputStream(Zip_File);
    ZipOutputStream out=new ZipOutputStream(stream);
    for (int i=0;i<To_Be_Zipped_Files.length;i++)
    //if (To_Be_Zipped_Files[i]==null
    // || !To_Be_Zipped_Files[i].exists()
    // || (Skip_Dirs ))
    // continue;
    System.out.println("Adding "+To_Be_Zipped_Files[i].getName());
    zipEntry(Zip_File, To_Be_Zipped_Files[i], out);
    out.close();
    stream.close();
    System.out.println("Finished zipping : "+ Zip_File.getAbsolutePath());
    catch (Exception e)
    e.printStackTrace();
    System.out.println("Error: " + e.getMessage());
    return;
    private void zipEntry(File Zip_File, File file, ZipOutputStream out) throws Exception
    if (file.isDirectory())
    listContents(Zip_File, file, out);
    return;

    You'll stand a better chance of getting help if you're more specific about what problems you're encountering. "Can't send file" doesn't say much.
    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.

  • Can anyone help me with retreiving datalog files?

    I have been working to find a way to read an analog input signal as a waveform, and then attempting to save the data (as just the raw data--like ordered pairs) to a file. Obviously, I would like to be able to read this data later on, but I have been unable to do so as of yet. I have been working with saving the data as datalog files. I am attaching both my read and write file VI's, and I wonder if anyone may be able to tell me what is going wrong. The problem seems to be with the read file. The write file generates a file, but when I try to read this file, the read file does not recognize it as a valid datalog file and will not read it. My programs are very similar to those in ....\examples\file\datal
    og.llb, but I have not been able to actually read the files I create. I hope I have been clear enough in describing my problem. Thank you for any help you can offer.
    Jonathan
    Attachments:
    Write_Data3.vi ‏35 KB
    Read_Data2.vi ‏26 KB

    Hi Johnathan,
    Please be patient with us.
    Most of the people answering questions on this exchange do so on a voluntary basis. We do so because we want to help.
    Dennis has done a wonderful job of carrying the bulk of this exchange's traffic.
    He has answered almost 900 questions in the last two years.
    He merits a major award if you ask me. Maybe a "leg lamp" he can display in his front window.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Can anyone help me open these InDesign files?

    I've been trying all day to open files for a project I was working on in March with InDesign.  I could open them in March but now my computer is either crashing from trying to load the folder that contains the files, or it gives me one of two error messages.  The first saying I don't have permission to open the file, the second saying the file is already open with another user.
    I have tried opening from my computer and from an external drive, neither work.  I have tried restarting.  I've tried opening as a copy, original and normal.  I've tried opening InDesign as an administrator.  I have tried phoning Adobe and have been on hold for 25 minutes so far.  I have tried the online help but nobody available there.  I don't know what else to try.
    I can create a new InDesign files and I'm not having any trouble with any other Adobe products.  My subscription is until 29th August.  Any ideas appreciated.
    Thanks,
    Angs

    If you open it in a plain text editor, what do the first few lines look like? If there's no lock file, the next most likely cause for this error is that the files aren't really .indd files.

  • Can anyone help me rewrite a .bat file to work on my iMac?

    I need some help writing these .bat files so i can use them on my mac
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpItems
    pause
    //new file
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar;dist\bcprov-jdk16-145.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpMobSkills
    pause
    //new file
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar;dist\bcprov-jdk16-145.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpQuests
    pause
    //new file
    @echo off
    @title Lithium Server Console
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ server.Start
    pause
    Thank you very much, im sorry if i seem very ignorant by asking this, i just dont know applescript and im trying to get this done as fast as possible.

    Try the developer forums:
    https://discussions.apple.com/community/developer_forums

  • Can anyone help to download a little file from support portal!!!

    HI all!
    please help me!
    I have Netweaver SR3 + PI, i need to import fie (xi content in Integration Builder) for solving tasks////
    i have an access to support portal, but this file (SAPBASIS70018_0-20000888.ZIP) can download only by SolMan, a don't have it,........
    Anybody if have this file or can download it,please help me
    the path:// service.sap.com/swdc -> Download -> Support Packages and Patches -> Entry by Application Group -> SAP Content -> ESR Content (XI Content) ->
    This file SAPBASIS70017_0-20000888.ZIP or SAPBASIS70018_0-20000888.ZIP

    I opened my e-mail adresss/
    i need  XI CONTENT SAP_BASIS 7.00 for SAP Netweaver SR3
    Artyom Suchkov
    thanks.

  • Importing a .3ds file --- Can anyone help please

    Here is a world i have written in java 3d
    I can import a .obj file into this world but i want to import a file called Flipp.3ds but it keeps giving me an error
    Here is the complete class ..... Can anyone help
    Im pretty new to java 3d
    import java.io.*;
    import com.sun.j3d.utils.behaviors.vp.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.j3d.utils.behaviors.keyboard.*;
    import com.sun.j3d.utils.geometry.*;
    import java.applet.Applet;
    import java.awt.BorderLayout;
    import java.awt.event.*;
    import java.awt.GraphicsConfiguration;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.image.*;
    import com.sun.j3d.loaders.objectfile.ObjectFile;
    import com.sun.j3d.loaders.ParsingErrorException;
    import com.sun.j3d.loaders.IncorrectFormatException;
    import com.sun.j3d.loaders.Scene;
    import javax.vecmath.*;
    public class Assign2 extends Frame implements ActionListener {
         protected Canvas3D myCanvas3D = new Canvas3D(null);
         protected Button exitBt = new Button("Exit");
            protected BoundingSphere bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
         private boolean spin = true;
         private double creaseAngle = 60.0;
            private String filename;
    // Lights
           * This adds a continuous background sound to the branch group.
           * @param b BranchGroup to add the sound to.
           * @param soundFile String that is the name of the sound file.
         protected void addBackgroundSound (BranchGroup b,String soundFile) {
             //Create a media container to load the file
              MediaContainer droneContainer = new MediaContainer(soundFile);
              //Create the background sound from the media container
              BackgroundSound drone = new BackgroundSound(droneContainer,1.0f);
              //Activate the sound
              drone.setSchedulingBounds(bounds);
              drone.setEnable(true);
              //Set the sound to loop forever
              drone.setLoop(BackgroundSound.INFINITE_LOOPS);
              //Add it to the group
              b.addChild(drone);
          protected void addLights(BranchGroup b) {
              Transform3D dirLightsXfm = new Transform3D();
              dirLightsXfm.set(new Vector3d(-1.5,0.0,0.0));
                       TransformGroup dirLights = new TransformGroup(dirLightsXfm);
              dirLights.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              dirLights.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
                       // Create a bounds for the background and lights
                     // Set up the global lights
              Color3f ambLightColour = new Color3f(1.0f, 1.0f, 0.4f);
              AmbientLight ambLight = new AmbientLight(ambLightColour);
                     ambLight.setInfluencingBounds(bounds);
                     Color3f dirLightColour = new Color3f(0.0f, 1.0f, 0.0f);
                     Vector3f dirLightDir  = new Vector3f(-1.0f, -1.0f, -1.0f);
                     DirectionalLight dirLight = new DirectionalLight(dirLightColour, dirLightDir);
                     dirLight.setInfluencingBounds(bounds);
              dirLights.addChild(ambLight);
                     dirLights.addChild(dirLight);
            b.addChild(dirLights);
            if (spin)
              {     Transform3D yAxis = new Transform3D();
                   Alpha rotationAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE,
                                                   0, 0,
                                                   1500, 0, 0,
                                                   0, 0, 0);
                   //attach to lights
                   RotationInterpolator rotator =
                        new RotationInterpolator(rotationAlpha, dirLights, yAxis,
                                                   0.0f, (float) Math.PI*2.0f);
                   rotator.setSchedulingBounds(bounds);
                   b.addChild(rotator);
    // Content Branch
          protected BranchGroup buildContentBranch() {
              //Create the appearance for the cube
              Appearance app1 = new Appearance();
                        Appearance app2 = new Appearance();
                      Color3f ambientColour1 = new Color3f(0.0f,0.0f,1.0f);
                        Color3f ambientColour2 = new Color3f(0.0f,0.0f,0.0f);
                        Color3f emissiveColour = new Color3f(0.0f,0.0f,0.0f);
                           Color3f specularColour = new Color3f(1.0f,1.0f,1.0f);
                       Color3f diffuseColour1 = new Color3f(1.0f,1.0f,0.0f);
                        Color3f diffuseColour2 = new Color3f(1.0f,1.0f,0.0f);
                       float shininess = 10.0f;
            app1.setMaterial(new Material(ambientColour1,emissiveColour,diffuseColour1,specularColour,shininess));
              app2.setMaterial(new Material(ambientColour2, emissiveColour,diffuseColour2,specularColour,shininess));
                    //import the object...
              filename = "Flipp.max";
              int flags = ObjectFile.RESIZE;
              ObjectFile f = new ObjectFile(flags,
                     (float)(creaseAngle * Math.PI / 180.0));
                   Scene s = null;
                   try {
                     s = f.load(filename);
                   catch (FileNotFoundException e) {
                     System.err.println(e);
                     System.exit(1);
                   catch (ParsingErrorException e) {
                     System.err.println(e);
                     System.exit(1);
                   catch (IncorrectFormatException e) {
                     System.err.println(e);
                     System.exit(1);
              BranchGroup contentBranch = new BranchGroup();
              addLights(contentBranch);
              //Position the Woman
              Transform3D groupXfm = new Transform3D();
              groupXfm.set(new Vector3d(0.0,0.0,0.0));
            TransformGroup group = new TransformGroup(groupXfm);
            group.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              group.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              // Adding to the Content Branch
              group.addChild(s.getSceneGroup());
              contentBranch.addChild(group);
              BoundingSphere movingBounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 300.0);
              BoundingLeaf boundLeaf = new BoundingLeaf(movingBounds);
              KeyNavigatorBehavior keyNav = new KeyNavigatorBehavior(group);
                        keyNav.setSchedulingBounds(movingBounds);
                        group.addChild(keyNav);
              Transform3D floorXfm = new Transform3D();
              floorXfm.set(new Vector3d(0.0,-1.5,-1.4));
            TransformGroup floor = new TransformGroup(floorXfm);
              floor.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              floor.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
            Box theFloor = new Box(3.0f,0.0f,3.0f,app2);
            floor.addChild(theFloor);
            contentBranch.addChild(floor);
              return contentBranch;
    // View Branch
         protected BranchGroup buildViewBranch(Canvas3D c) {
              BranchGroup viewBranch = new BranchGroup();
              Transform3D viewXfm = new Transform3D();
                     viewXfm.set(new Vector3f(0.0f,0.0f,10.0f));
              TransformGroup viewXfmGroup = new TransformGroup(viewXfm);
              viewXfmGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
              viewXfmGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              BoundingSphere movingBounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 300.0);
              BoundingLeaf boundLeaf = new BoundingLeaf(movingBounds);
              ViewPlatform myViewPlatform = new ViewPlatform();
              viewXfmGroup.addChild(boundLeaf);
              PhysicalBody myBody = new PhysicalBody();
                PhysicalEnvironment myEnvironment = new PhysicalEnvironment();
              viewXfmGroup.addChild(myViewPlatform);
              viewBranch.addChild(viewXfmGroup);
              View myView = new View();
              myView.addCanvas3D(c);
              myView.attachViewPlatform(myViewPlatform);
                     myView.setPhysicalBody(myBody);
                     myView.setPhysicalEnvironment(myEnvironment);
              return viewBranch;
    // Exit Button - dispose of system
         public void actionPerformed(ActionEvent e) {
                   dispose();
                   System.exit(0);
            public Assign2() {
              VirtualUniverse myUniverse = new VirtualUniverse();
              Locale myLocale = new Locale(myUniverse);
                    myLocale.addBranchGraph(buildViewBranch(myCanvas3D));
                    myLocale.addBranchGraph(buildContentBranch());
              setTitle("John (Sean) Gleeson 100437719");
              setSize(600,600);
              setLayout(new BorderLayout());
              Panel bottom = new Panel();
              bottom.add(exitBt);
                    add(BorderLayout.CENTER, myCanvas3D);
                    add(BorderLayout.SOUTH, bottom);
                    exitBt.addActionListener(this);
                    setVisible(true);
         public static void main(String[] args) {
                      Assign2 demo = new Assign2();
    }Thanks,
    Sean

    You should repost in the 3D forums (just below this one). We are simple 2D folk :)

  • HT1369 hey, when I connect either my ipod or ipad to itunes I get the promt ' i tunes was unable to load data class information from sync services. Reconnect or try again later'. Can anyone help me with syncing my devices?? Thanks in advance

    Hey, when I connect either my ipod or ipad to itunes I get the prompt 'itunes was unable to load data class information from sync services. Reconnect or try again later. Can anyone help me with syncing my devices?? Thanks in advance

    I am having the same issue, anyone else ?

  • Hi. Having trouble viewing a downloaded file from a site. iPad is telling has not got a app to open file ,but have downloaded so many now and none of them are any help. Tried this on my android phone still nothing. Please can anyone help as slowly ma

    HHi having trouble viewing a downloaded file from a site my iPad is telling me I don have a app to open file . And have downloaded loads of apps and still no joy . Have tried this on my android phone to and still nothing. Please can anyone help as slowly going crazy. Thanks tim

    What type of file?  From what site?  What Apps have you downloaded for it?
    Perhaps if you provide details of what you are doing we can provide more precise help.

  • I need to export a photo at around 1meg file size,and dont seem to be able to do it in the presets can anyone help please ,I shoot on a canon 5d

    I need to export a photo at around 1meg file size,and dont seem to be able to do it in the presets can anyone help please ,I shoot on a canon 5d

    I believe Frank is referring to the end use (e.g., for print or on-screen use).
    Until he returns, I can tell you that I ran a quick test using an image from the Aperture 3 training book library which was as follows:
    Camera = Canon EOS 5D Mark II
    Master resolution = 5616 x 3744 (21 MP)
    I was able to export to a JPEG with end file size of 1 MB as follows:
    Export Presets drop-down > select 'Edit' option
    Selected preset name 'JPEG - 50% of Original Size' > change percentage value to 40% > change DPI value to '300' > click OK to set as current default > Export version to desktop.
    The exported JPEG has a resolution of 2246 x 1498 and appears on screen to have the same image quality of the original in Aperture.
    Note - I did not change the default Image Quality slider in the Export Preset dialog (which left it at 10).
    Basically, you will need to play around with the settings until you find the appropriate values to arrive at an image version you want.

  • I have a MacBook Pro, I want to copy Itunes files to an SD card to play in my car, the SD Card doesn't appear in Itunes when I insert it, and I don't know how to convert the files to the correct format, can anyone help?

    I have a MacBook Pro, I want to copy Itunes files to an SD card to play in my car, the SD Card doesn't appear in Itunes when I insert it, and I don't know how to convert the files to the correct format, can anyone help?
    Thank you

    So it seems from reading the COMMAND manual that my first issue is that I used a 16GB SD card, and the manual says it will only recogize up to a 2GB SD card. I did use my MB Air's SD card slot and crated a folder and dragged the music files to it, then to the card. So I am going to get a 2GB card and try that next. Otherwise just stick with the iPOD connected. At least that is 8GB

  • I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    Hello,
    That means it can find the Hard Drive, or can't find the things needed for booting.
    See if DU even sees it.
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • I tried to sync my Macbook Pro photos in iPhoto with my iPod Touch.  I have done this numerous times, but today I got an error message saying the required file cannot be found.  At the same time all of my photos on my iPod vanished.  Can anyone help me?

    I tried to sync my Macbook Pro photos in iPhoto with my iPod Touch.  I have done this numerous times, but today I got an error message saying the required file cannot be found.  At the same time all of my photos on my iPod vanished.  Can anyone help me?

    Try deleting the photo cache from your computer and then re-try the photo sync - the location of the cache, and how to delete it, is on this page http://support.apple.com/kb/TS1314

  • While updating iphone software to 5.0.1, I am getting error message that Iphone cound not be updated because the firmware file is not compatible. Can anyone help me to resolve this issue.

    While updating iphone software to 5.0.1, I am getting error that Iphone could not be updated because the firmware file not compatible.
    Can anyone help me to resolve this issue.

    Using iTunes 10.5.2.11 on a PC running 64 bit Windows 7
    First did a full back up of  iphone using iTunes
    Put iphone into Recovery Mode ( http://support.apple.com/kb/ht1808 ). Erases all user data and settings!
    Disconnected USB cable from iphone
    Powered off iphone by holding down Sleep/Off button until slider appeared, slid to off, waited until screen dark
    Pressed and kept holding Home button while plugging cable back into phone
    I still saw the graphic on the iphone that said to plug into iTunes, so I unplugged and re-plugged cable. (I may have released the Home button too soon)
    Recovery Mode alert came up in iTunes.
    Followed all iTunes prompts to restore phone - it downloaded and sucessfully installed iOS 5.0.1
    iphone did not appear in iTunes due to missing pairing file (that made me nervous)
    iphone was now at factory settings. I followed prompts on iphone screen to start reactivation process
    Eventually the iphone asked if I wanted to restore from a back-up (whew!)
    A window opened in iTunes and I was able to select my previous back-up file for the restore
    A full restore from back-up then occured
    I also allowed a carrier settings update to occur when prompted (not sure that happens in all cases)
    When the restore was done I had to re-enter some passwords, but everything was there
    iOS is now 5.0.1 (9A406). The whole process took about an hour.

Maybe you are looking for

  • Add a dimension

    Hi Experts, I am new to BPC and was just wondering if there will be any adverse affects if we add a dimension to an application while the BPC system is in the production mode.  Can it even be done?  If not, I would like to know if there is a work aro

  • When & why to create a "master layer" in CS6 for multi-layer image?

    I would appreciate a link or a brief explanation of"when & why" and "how to use" a master layer when working with a multi-layered image (psd or psb) file in CS6. I've done a google search and haven't found anything useful. I've seen a couple of tutor

  • IE8 and ADF 11g

    Hi, has anyone tried to run an ADF 11g Application on IE8? Is it working? Kind Regards, Friedrich

  • Pad synchronization register level programming

    Dear all, the user manual (6602) talks about pad synchronization. I need six counters to start generating PWM - Signals at the exact same point of time. An external trigger should be used. As pointed out in  the user manual, the external trigger is c

  • Won't recognize cd

    My Mac used to burn cd's fine but since I upgraded my iphone, my MAC will no longer read ANY cd's or burn them.