HT204053 How do I see the contents of my iCloud ? Pls

How do I see my contents in iCloud ? 

Welcome to the Apple community.
Unfortunately your question is a little vague. If you mean how do you access icoud.com from your iOS device, then you can't. You should use the appropriate apps to view the data from iCloud  on your iOS device.

Similar Messages

  • Ow can I see the content of my icloud of my iPhone 4s on my computer?

    How can I see the content of my icloud for iPhone 4s in my computer. Thanks

    If you mean the camera roll photos included in your iCloud backup, you can't.   They can only be seen by restoring the backup to your device.

  • How can i see the content of the cache server 2 ?

    How can i see the content of the cache server 2 ?

    Caching server is backed by an sqlite database.  If you want to see what you currently have downloaded, you can glean some information by accessing the database.  Use this command to connect to the database:
    sudo sqlite3 /Library/Server/Caching/Data/AssetInfo.db
    Once connected, you can use .tables to see the tables in the database but the one with the most information appears to be ZASSET.  Use:
       select * from ZASSET;
    To list the current contents.  You will get a series of records similar to the following:
    26|1|5|0|868991341|402440412.42114|402507221.969799|ffaf18a45cd5dd5e853233629036 5767|30B9108D-ABE4-4061-A2E0-42E91301249B|Fri, 06 Sep 2013 18:21:34 GMT|/content/downloads/14/11/091-9722/ognnjd4fno85m4pbapjtnv23b7rf1mkufx/OSXUpd Combo10.8.5.pkg|
    Note that the final value is a human recognizable name of the package.  However, you may also see items like this:
    125|1|4|0|11622676|406739736.508118|406739736.508125|4f1f9b08b32f9f6211e4569604b 1efef|481BF3D9-99BB-415F-ADB6-860EDD24B08E|Thu, 14 Nov 2013 10:24:30 GMT|/us/r1000/032/Purple6/v4/37/a3/d2/37a3d2f7-2594-8224-7eda-712f17a3fd8b/mzps 6227198657217312566.D2.pd.ipa|
    This is an iOS application.  There is no real way that I know of yet to match the package name (mzps6227198657217312566.D2.pd.ipa) to a product name.
    When finished, type .quit
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available on the iBooks Store

  • How do you see the contents of your "Domain" file?

    Thanks to this forum I have found out that the photo files on my Web site are stored in the Domain file under Application Support. How do you see the contents of this file? When I double-click on it, iWeb launches and I see the actual Web site.
    12" PowerBook   Mac OS X (10.4.8)   G4 1.5 GHz, 768 MB RAM

    i don't think it will work. because when you open up the domain file after you changed the size of the pictures, iWeb will probably save again while uploading - so the changes were for nothing. yet i haven't tried it.
    other way is to change them after you published. using graphic converter you just drag all at once in and change all the sizes at once.
    mp

  • How do I see the contents of the hard drive on a Mac Mini?

    How do I see the contents of the hard drive on a Mac Mini?

    Welcome to the Apple Support Communities
    1. Go to Finder > Preferences > Sidebar and tick Hard disks.
    2. Select Macintosh HD in the sidebar.
    See > http://support.apple.com/kb/HT2470

  • I used Time Machine to recover my Pictures folder. This created a folder called Pictures (original) but I cannot open it.  There is a do not enter roadsign, red disk and white bar on it.  How can I see the contents?

    I used Time Machine to recover my Pictures folder. This created a folder called Pictures (original) but I cannot open it.  There is a do not enter roadsign, red disk and white bar on it.  How can I see the contents?

    Repairing the permissions of a home folder in Lion is a complicated procedure. I don’t know of a simpler one that always works.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    chmod -R -N ~
    The command will take a noticeable amount of time to run. When a new line ending in a dollar sign ($) appears below what you entered, it’s done. You may see a few error messages about an “invalid argument” while the command is running. You can ignore those. If you get an error message with the words “Permission denied,” enter this:
    sudo !!
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    Next, boot from your recovery partition by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the recovery desktop appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, enter “resetpassword” (without the quotes) and press return. A Reset Password window opens. You’re not going to reset the password.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • TS4403 How can I see the content of my camera roll on the Icloud

    How cn I see the content of my camera roll on the iCloud?

    If you mean the camera roll photos included in your iCloud backup, you can't.   They can only be seen by restoring the backup to your device.

  • How can I see the contents in a Ref Cursor

    I have this code:
    CREATE OR REPLACE PACKAGE APOD_LOG.APOD_C3_LOG_API_PKG
    AUTHID CURRENT_USER
    AS
    type rc is ref cursor;
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    END APOD_C3_LOG_API_PKG;
    CREATE OR REPLACE PACKAGE BODY APOD_LOG.APOD_C3_LOG_API_PKG
    AS
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    IS
    BEGIN
    DBMS_APPLICATION_INFO.set_module(module_name => 'APOD_LOG.API_PKG',action_name => 'Fetch_Log_Spec');
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Calling with in_LOCAL_IP_VALUE = ' ||to_char(in_LOCAL_IP_VALUE));
    open out_RESULT_SET for
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.123''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.123''') as MULTICAST_IP_VALUE
    from
    dual;
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Called Fetch_Log_Spec '||to_char(SQL%ROWCOUNT)||' row(s) returned with in_LOCAL_IP_VALUE = '||to_char(in_LOCAL_IP_VALUE) );
    END Fetch_Log_Spec;
    END APOD_C3_LOG_API_PKG;
    And I am trying to test it like this:
    DECLARE
    IN_LOCAL_IP_VALUE BINARY_INTEGER;
    OUT_RESULT_SET APOD_LOG.APOD_C3_LOG_API_PKG.rc;
    BEGIN
    IN_LOCAL_IP_VALUE := 23374048;
    -- OUT_RESULT_SET := NULL; How do I see this
    APOD_LOG.APOD_C3_LOG_API_PKG.FETCH_LOG_SPEC ( IN_LOCAL_IP_VALUE, OUT_RESULT_SET );
    END;
    How can I see the dataset returnd by the OUT_RESULT_SET in SQLPlus or Quest ScriptRunner?

    A ref cursor doesn't really contain rows but you can use them to reference a SQL statement that fetches the rows.
    Re: returning resultset from procedure...or pkg

  • How can I see the contents of the Firefox cache?

    How can I view the contents of the Firefox cache?

    Type '''about:cache''' in the URL bar and hit Enter.
    Memory cache device - <u>List Cache entries</u>

  • I cant see the content of my icloud

      Hello everyone. i have iphone 4 whis ios702 i bought from someone else. i think i've synced photoes to my cloud (i dont know if when i had ios 6.14 or after updating to ios 702)
    any way my cloud i occupied with 3.4 giga that i cant see.
    what should i do? should i delete the icloud content from my phone?
    if yes, how am i doing it?
    iPhone 4, iOS 7.0.2 

    orisharonn wrote:
    i tried to compare between camera roll to photoes collections by years->month... i seems that almost every thing is in both- photoes and camera roll. whay is that???
    The reason you see the same photos is that they are just differerent ways to view the same photos.  In the broadest view, they are organized by year.  If you "zoom" into a year, you will view them by "collections", which are only a month or two.  Zoom into a collection and you will see "moments", which is the shortest time period.  If you don't like viewing your photos this way you can always tap Albums at the bottom, the tap Camera Roll and you will see you photos as they were in iOS 6.  None of this means you have duplicate photos, they are just different ways to see the same photos.
    as i said, i prefer to backup pics and videos to my pc and to the cloud only apps data (like recordings of stuff)
    or whatsup conversations, and my contacts....
    You can do that by importing them to your computer using your usb cable and and turning off the camera roll in your backup options (in Settings>iCloud>Storage & Backup>tap your device under Backups>turn of Camera Roll under Backup Options).  As fromsouth said, this will not delete anything from your phone, it will just prevent the camera roll from being included in your iCloud backup.  And you will not see the reduction in your iCloud storage until you back up with these new settings a few times (or delete your existing backup and back up again).

  • I cannot see the contents of my icloud drive on my ipad

    I have uploaded a number of files to my icloud drive on my mac mini.
    When i log into icloud.com i can see all the files in my icloud drive.
    I have configured and set up icloud on my other devices, all are supporting the latest software.
    However i cannot view any of the files on my icloud drive from my ipad.
    i have approx 30 mobi files on the drive and i have kindle on my ipad, back up is complet, open kindle no files.
    I can email them to myself from the icloud drive and open them in kindle and save to library but that defeats the whole point of having a cloud drive.
    Need help.
    thxs

    Hi, I have this problem too. I've uploaded photos of my granddaughter to iCloud Drive on my 5 year old PC and can see the content on my PC at iCloud .com - though the system does not allow me to see minimised photos, just lots of numbered, blue rectangle icons. I spent over 2.5 hours with Apple Support yesterday and they could NOT resolve the issue in any straightforward manner, though did suggest I go through the same time consuming uploading process placing the same photos in the Beta version of 'Photos' available at iCloud.com. What a cumbersome system. Why hasn't Apple offered an iCloud Drive app (free of charge) so that once content has been placed in iCloud Drive it can Bev retrieved on any iOS device, as Apple suggest. Here is what they say at Apple.com (see also the illustrations they offer for iCloud Drive on an iPad - I was informed yesterday, by two advisors, that they couldn't find way to locate the suggested pages either?)
    Storing files in iCloud is simple. Just as it should be.
    To upload your files to iCloud, simply drag them into the iCloud Drive on your Mac running OS X Yosemite or PC running Windows 7 or later. Or start a new document using an iCloud-enabled app on your iOS device. Then you’ll be able to access those documents from all your devices.

  • How can I see the contents of the "Other" folder and delete unwanted files?

    Cleaning up "Other" folder

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • HT4890 how can i see the pictures stored on icloud?

    I want to see the photos and video that are stored on icloud. I erased some videos of my phone and I want to see if they are on the icloud so I can recover them

    You can not see which photos or videos are stored on iCloud. Please note that iCloud uses the storage only for photos and videos in the Camera Roll (other albums, etc. are not backed up).

  • How can I examine the contents of my icloud storage

    I received a warning today that my icloud storage was low. I checked and of 55 gig, I had used over 54 gig. I was not permitted to purchase more.
    I would like to examine the contents so that I can prune the excess. I have "drop box"', so presume I could move some contents to this back up facility.
    Advice please
    David Thomas

    You can't, the Nano does not have WiFi.

  • HT204053 how can i change the apple ID on iCloud?

    i updated my email address on my apple ID but when i connect to icloud there's still the old email address and when i type in the password it doesn't sign in... how can i manage to change the password also on icloud?
    thank you

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    When you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.

Maybe you are looking for

  • Adobe ExportPDF ERROR: "An error occurred while trying to access the service"

    I have been attempting, for two days, to get Adobe ExportPDF to convert a PDF file (appx 32mb, orignially created in Word, but with handwritten notations throughout) to Word (either .docx or .doc, or even RTF). The app spends about 5-10 minutes proce

  • Can't open my Excel file in Excel 2013

    Hi there. I've just been working with an Excel sheet and saved it, and now I can open it again. It's stuck on 10%. I've reinstalled the whole Office package (Office Home & Student 2013) but that doesn't change anything. Also not the DDE check/uncheck

  • Photoshop (CS3 - Vista Ultimate) layer effects issues

    I am running a Vista PC with 4GB RAM and other complimentarily high spec hardware. I am having trouble when adding 'stroke' effects to layers. At times I end up with horrendous colour-of-the-stoke spots/patches all over my layer. I have boild the iss

  • Editing not possible because 'Request flag' has value X

    When i try to change an number range settings from number range administration, i get an error "Editing not possible because 'Request flag' has value X " how can and  where can i remove this flag from? Thanks

  • Photo Printing vs Transfer to Computer via Bluetooth.

    I have a Photosmart 5550 AIO which comes with a Bluetooth dongle for printing from a cell phone.  It works fine when you complete the setup properly. I wanted to do more than just print the photos so I tried moving the Bluetooth dongle to a USB port