N8 - how to list all apps, settings, etc.

I am preparing to do the Anna update and would like to generate a list of all apps installed, network connection settings, preferences, etc. setup on the phone and was wondering if there is an app or other way to do this?  I am probably going to do a hard reset after the update and am planning to backup/restore the phone but just wanted to list the contents to be sure nothing is missing.

@jm24
If you go to Menu > Applications > Office > File mgr. > Backup and restore is a very useful feature under these circumstances, although would need to be upon F:\ Memory card if hard reset proposed.
Happy to have helped forum with a Support Ratio = 42.5

Similar Messages

  • New laptop i need itune plus all apps settings etc on it how?

    HI and thank you in advance for your help.
    I have an iphone and ipad with apps contacts notes and a lot more all stored not only on the devices but backed up to my laptop.
    I have a new laptop now and will be selling my old one. I need to have itunes on my new laptop and not lose any of the files, apps contacts and information on my ios devices. Is this possible and if so please advise how i should do it.
    i am using windows 8 HP laptop, Iphone 5 latest ios and an Ipad2 latest ios also Itunes latest version.
    thank you again Mike

    Type "move itunes library" into the google search bar.

  • HT5400 If I install OS6 on my iPhone 4, will it retain as intact, all my settings and apps? OS 5 did not do so, which required HOURS of manually restoring apps, settings, etc. I am wary of another complete OS upgrade, so soon. Waiting till answers come.

    If I install OS6 on my iPhone 4, will it retain as intact, all my settings and apps? OS 5 did not do so, which required HOURS of manually restoring apps, settings, etc. I am wary of another complete OS upgrade, so soon. Waiting till reassuring answers come, before attempting install.

    You will get prompt reply if you post your question in the iPhone community forum.
    https://discussions.apple.com/community/iphone/using_iphone

  • Urgent: How to list all alias for a server throw DNS query?

    Hi
    Is there anyone know how to list all alias for a server by asking the network DNS. Is that possible?
    It doesn't work with InetAddress it return a single result.
    Best regard

    InetAddress will not get you the aliases, but you can certainly find all the different IP addresses for a specific host name using the getAllByName() method.
    You won't be able to get the aliases since those IP addresses (assuming there are more than 1) will all be cached as mapping to the name you passed to the getAllByName() method and you can't clear the map cache until the JVM exits.
    So your best hope is to get a list of IP's and either exit your app and restart with a new mode, or save them to a file for another app to read.

  • Downloaded and installed 5.0.1, killed my phone, finally able to restore but lost all apps, photos, etc. help

    Downloaded and installed 5.0.1, killed my phone, finally able to restore but lost all apps, photos, etc. help.  Everything I need is on my iTunes page but I cannot sync with iPhone4. Any ideas how I can sync?

    If your phone is in recovery mode, you've already lost ALL of the data on the phone. Your only choice now is to restore it from your most recent backup. You follow this by syncing your content back to your phone. Any data, on your phone, not backed up or in supported applications on your computer, is gone. iTunes content you can re-download for free.

  • How to list all properties in the default Toolkit

    I would like to know what kinds of properties are stored in the default Toolkit (Toolkit.getDefaultToolkit()). I don't know how to list all of them. Toolkit class has a method getProperty(String key, String defaultValue), but without knowing a list of valid keys, this method is useless.
    Any idea would be appreciated.

    Here is a little utility that I wrote to display all the UIDefaults that are returned from UIManager.getDefaults(). Perhaps this is what you are looking for?
    import javax.swing.*;
    import java.util.*;
    public class DefaultsTable extends JTable {
        public static void main(String args[]) {
            JTable t = new DefaultsTable();
        public DefaultsTable() {
            super();
            setModel(new MyTableModel());
            JFrame jf = new JFrame("UI Defaults");
            jf.addWindowListener(new WindowCloser());
            jf.getContentPane().add(new JScrollPane(this));
            jf.pack();
            jf.show();
        class MyTableModel extends javax.swing.table.AbstractTableModel {
            UIDefaults uid;
            Vector keys;
            public MyTableModel() {
                uid = UIManager.getDefaults();
                keys = new Vector();
                for (Enumeration e=uid.keys() ; e.hasMoreElements(); ) {
                    Object o = e.nextElement();
                    if (o instanceof String) {
                        keys.add(o);
                Collections.sort(keys);
            public int getRowCount() {
                return keys.size();
            public int getColumnCount() {
                return 2;
            public String getColumnName(int column) {
                if (column == 0) {
                    return "KEY";
                } else {
                    return "VALUE";
            public Object getValueAt(int row, int column) {
                Object key = keys.get(row);
                if (column == 0) {
                    return key;
                } else {
                    return uid.get(key);
        class WindowCloser extends java.awt.event.WindowAdapter {
            public void windowClosing(java.awt.event.WindowEvent we) {
                System.exit(0);
    }

  • How to list all the rows from the table VBAK

    Friends ,
    How to list all the rows from the table VBAK.select query and the output list is appreciated.

    Hi,
    IF you want to select all the rows for VBAK-
    Write-
    Data:itab type table of VBAK,
           wa like line of itab.
    SELECT * FROM VBAK into table itab.
    Itab is the internal table with type VBAK.
    Loop at itab into wa.
    Write: wa-field1,
    endloop.

  • How to list all files in a given directory?

    How to list all the files in a given directory?

    A possible recursive algorithm for printing all the files in a directory and its subdirectories is:
    Print the name of the directory
    for each file in the directory:
    if the file is a directory:
    Print its contents recursively
    else
    Print the name of the file.
    Directory "games"
    blackbox
    Directory "CardGames"
    cribbage
    euchre
    tetris
    The Solution
    This program lists the contents of a directory specified by
    the user. The contents of subdirectories are also listed,
    up to any level of nesting. Indentation is used to show
    the level of nesting.
    The user is asked to type in a directory name.
    If the name entered by the user is not a directory, a
    message is printed and the program ends.
    import java.io.*;
    public class RecursiveDirectoryList {
    public static void main(String[] args) {
    String directoryName; // Directory name entered by the user.
    File directory; // File object referring to the directory.
    TextIO.put("Enter a directory name: ");
    directoryName = TextIO.getln().trim();
    directory = new File(directoryName);
    if (directory.isDirectory() == false) {
    // Program needs a directory name. Print an error message.
    if (directory.exists() == false)
    TextIO.putln("There is no such directory!");
    else
    TextIO.putln("That file is not a directory.");
    else {
    // List the contents of directory, with no indentation
    // at the top level.
    listContents( directory, "" );
    } // end main()
    static void listContents(File dir, String indent) {
    // A recursive subroutine that lists the contents of
    // the directory dir, including the contents of its
    // subdirectories to any level of nesting. It is assumed
    // that dir is in fact a directory. The indent parameter
    // is a string of blanks that is prepended to each item in
    // the listing. It grows in length with each increase in
    // the level of directory nesting.
    String[] files; // List of names of files in the directory.
    TextIO.putln(indent + "Directory \"" + dir.getName() + "\":");
    indent += " "; // Increase the indentation for listing the contents.
    files = dir.list();
    for (int i = 0; i < files.length; i++) {
    // If the file is a directory, list its contents
    // recursively. Otherwise, just print its name.
    File f = new File(dir, files);
    if (f.isDirectory())
    listContents(f, indent);
    else
    TextIO.putln(indent + files[i]);
    } // end listContents()
    } // end class RecursiveDirectoryList
    Cheers,
    Kosh!

  • How to transfer all lightroom settings from one pc to an other?  Zsolt

    How to transfer all lightroom settings from one pc to an other?

    If you are talking about moving Lightroom and all your images to another PC, then this might help:
    http://www.lightroomqueen.com/how-move-lightroom-to-new-computer/
    If something different, please clarify what it is you are wanting to do.

  • Sunone Messaging Server 6.1--How to list all mail user's last login time

    hi,i want to know how to list all the mail user's last login time.
    There are more than 100000 mailbox accounts on our mail server,
    i want to know which account is not used for more than 2 or 3 years.
    thanks.

    http://wikis.sun.com/display/CommSuite/imsconnutil
    Somchai.

  • I have two iCloud accounts, my original one that I used for iTunes years ago which has all my content, apps etc and a mobile me one which I got when I set mobile me up which has all my settings etc, this is causing problems, can I merge them?

    As I said I have two iCloud accounts, both do different things, i.e. my original iTunes account has all my app's and music etc, and then also the account which was set up for me when I set up a 'mobile me' account has all my calendars, contacts, settings etc, how can I merge these or even easily set my settings etc to go to my older iTunes account, I have tried to set up family sharing and all I can share is my calendars not my apps because they are with another iTunes account.
    I am also a little concerned that my fire vault has just set its self up using the mobile me account, if I was to get rid of an account I imagine this would be the easiest one to ditch then what would happen to all my encrypted data?
    Many thanks for your help.
    NIK

    I am logged into the same things on both my iPhone and my MacBook Pro, except for mail. I use a gmail IMAP account and everything there already works on both machines. The iCloud account on my iPhone uses one Apple ID and the one on the Mac uses the second Apple ID.

  • I share an itunes acc with 3 family members, how do i manage apps, contacts etc

    Hi.  Please help.  We have 1 itunes account and 3 iphones and an ipod.  1 iphone is new and I need to transfer all contacts, apps, photos, messages etc to the new phone an restore the old one.
    I want to ensure that everything I have on my iphone is backed up and transferred to my new one.  I thought simply plugging it in and syncing was enough, but when I look on the apps on iphone it asks if I want to sync to Outlook, Google Contacts, Windows Address Book or Yahoo address book.  I don't know which one to choose, I just thought it all backed up to itunes.
    Obviously I'm not very up on all this so any advice would be great.
    Also if you have any advice on how to manage multiple devices on 1 itunes acc, ie, keeping apps, contacts etc separate, I'd appreciate your help.
    Thanks

    Transfer Info to new iPhone:
    http://support.apple.com/kb/HT2109
    Multiple devices, one computer:
    http://support.apple.com/kb/HT1495

  • How can I restore my settings, etc. after update to Firefox 20 reset everything?

    Windows 7 Starter, Firefox 20; running from non-administrator account (possibly the cause of issues):
    I updated to Firefox 20, and everything was reset (i.e. homepage, bookmarks, passwords, addons).
    I searched online for solutions but it hasn't helped me (i.e. Profile Manager).
    I located the profiles folder, and it contains one folder called: shunltlp.default
    the folder seems to have all the necessary files, e.g. bookmarks, key3, etc.
    How can I get Firefox to use these files, and restore my settings, etc.?
    Thanks,
    Davoid.

    Hi cor-el,
    Thanks for the reply.
    I had been to that page during my search for solutions but found it a bit confusing, although I did create a new profile but didn't understand the choose folder part.
    I re-read the instructions and I have been able to restore my old profile.
    So, thanks for pointing me in the right direction.
    Re: running my Firefox from a non-administrator account
    I think this may have been the cause of the profile problem.
    I.e. when I selected 'Choose a folder' when creating the new profile, the default folder path was Administrator> etc., where as my old profile was not there, but in Username> etc. folder path...
    I understand browsing from a non-administrator account is the sensible security option, but is causes other problems when installing updates...
    Thanks for the help. It's much appreciated.
    Davoid.

  • Cmd Line: How to list installed App Version?

    Hi,
    How do I list all installed applications, version, etc using a command line?
    (some thing similar to the GUI-About This Mac, more info, Software, Applications). I also know ls -la /Applications.
    I like to get a complete inventory of installed software using a command line.
    Thanks,
    Uday.

    Hi
    I think this command should give you what you want?
    system_profiler SPApplicationsDataType
    You could also use any one of these three:
    system_profiler -detaiLevel level
    Where 'level' would be mini, basic or full. The manual pages will have more information; man system_profiler.
    To see what other options (data types) system_profiler has available issue:
    system_profiler -listdatatypes
    Tony

  • Stripping all apps, data, etc out of iPAD 1

    I  am selling my ipad 1 and want to delete all apps, email, personal information, etc. How to do this?
    thanks!

    Plug into iTunes. Then go to tools at the top and restore. You will be able to select 'restore as a new device' which will wipe everything clean! :)
    Let me know if this helps...

Maybe you are looking for

  • Itunes icon bounces in dock won't startup,safari crashes at startup. Help

    Don't know if problems are related,can someone decipher crash log for any clus on how to fix. Date/Time: 2007-07-30 10:56:30.569 -0400 OS Version: 10.4.10 (Build 8R218) Report Version: 4 Command: Safari Path: /Applications/Safari.app/Contents/MacOS/S

  • Connecting macbook to Xbox 360, HOW?

    Hi guys, I have an xbox 360 and a new macbook. I want to connect my macbook to the xbox 360 to view itunes library and photos etc. How do I go about this, ie what cables etc do I need? Can I connect now using the stuff I have? xbox 360 macbook BT Hom

  • 3000 v100 random shutdown

    Hi all: I think some one already posted a similar problem but it was a n100 notebook. I have had the v100 for over a year and my battery has also died. But the problem is not that. Problem is that even on the AC adaptor, the notebook shuts down rando

  • Pages mysteriously changed its name to Word and now wont work

    Hello, Pages wont work anymore and i cannot reinstall It is now called Word and wont open any documents... please help

  • Lost fluid grid columns

    I am experimenting with using Fluid Grid and it is very good. However, as I developed the template I have lost the fluid grid columns on screen, so I can no longer move divs around and have them snap. At first I thought it was maybe having added marg