Is there a solution that allows Windows XP to work with iCloud

I have had the iPhone 4s for about a year and need to retrieve the pics\videos stored on it. I work on PC's and the iPhone is my first experience with Apple\Mac products. Being new to this device I let someone else set the iPhone up to download picture media directly to my PC and iTunes was set up to sync all future media. Approximately 400 images\videos were imported to my PC with no software, programming or device errors but now the error ' the player is missing the program needed to open' the file. Apples recommends Quicktime but I didn't have success with that either. iCloud specify's Windows Vista or Windows 7, however, I used the same PC for the other videos which is Windows XP Professional. My last attempt I received an error with a message to delete PhotoStream, so I gave up. Anyone have any ideas or advice? Also, if windows Vista or Windows 7 are the only two options for the PC is there a solution for other PC users?

I have no trouble at all using my MBP with my projector, Apple MDP-VGA adapter, and standard VGA cable.
...can't do anything about the video resolution...
What does this mean? What are you trying to do without success?

Similar Messages

  • [Solved] Windows Firewall rule that allows Windows Update

    Can anyone kindly give me a Windows Firewall rule that allows Windows Update? Assume I'm running MMC's "Windows Firewall with Advanced Security" snap-in as Administrator. Note that a "solution" that takes down the outbound firewall is
    not acceptable.
    Thank You.
    ===== Solution =====
    Suppose that, as the default, you've set the outbound firewall to block (see
    To close the outbound firewall, below). In order for Windows Update to check whether an update is available and then to download the update files, you first need an outbound firewall
    allow-rule that allows the Windows Update service to pass through the outbound firewall.
    Prerequisite: Knowledge of the Microsoft Management Console (MMC) and its "Windows Firewall with Advanced Security" plug-in.
    What you will do: You will use the "Windows Firewall with Advanced Security" MMC plug-in to create an outbound firewall rule that
    allows '%SystemRoot%\System32\svchost.exe' (the generic service driver) to pass through the outbound firewall on behalf of 'wuauserv' (the name of the specific service that performs the update).
    Warning: If you don't know what I'm writing about, get help.
    Name: Allow Windows Update (...or any name you prefer - it doesn't matter)
    Group:
    Profile: Public
    Enabled: Yes
    Action: Allow
    Program: %SystemRoot%\System32\svchost.exe
    Local Address: Any
    Remote Address: Any
    Protocol: Any
    Local Port: Any
    Remote Port: Any
    Allowed Computers: Any
    Status: OK
    Service: wuauserv
    Rule Source: Local Setting
    Interface Type: All interface types
    Excepted Computers: None
    Description:
    To open the outbound firewall:
    More accurate wording would be
    Outbound connections are allowed unless explicitly blocked by a rule.
    If you look at the standard rules you will find no block-rules. That means that nothing is blocked, everything is allowed, and the outbound firewall is wide open.
    To close the outbound firewall:
    More accurate wording would be
    Outbound connections are blocked unless explicitly allowed by a rule.
    If you look at the standard rules you will find only allow-rules that have been crafted to allow the vital Windows connections to pass through the outbound firewall. To an informed observer it's obvious that the firewall engineers crafted these
    allow-rules so that users who closed the outbound firewall wouldn't have to write them. But the firewall engineers left out Windows Update.

    Hi mark,
    Thanks for sharing, it will help other users who have similar issue.
    Regards

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • What is the best USB powered portable 1TB hard drive for a macbook pro that allows Time machine to work, windows (thru Parallels software) and mac storage and is available in Australia?

    What is the best USB powered portable 1TB hard drive for a macbook pro that allows Time machine to work, windows (thru Parallels software) and mac storage and is available in Australia?

    I agree with teh OWC sggestion above, but why must it be USB powered? I find that far more unreliable, and the low power devices slow.
    I'd frankly get a good external enclosure and buy a bare drive.  But the OWC stuff is quite good - vastly better than some of the majors (WD being aprime example of stuff that's boderline quality and often not compatible)
    Grant

  • Is there a program that allows you to black out most of the screen content of a PDF and slide down like you would with an overhead (covered with a piece of paper)for teaching purposes??

    Is there a program that allows you to black out most of the screen content of a PDF (on an iPad) and slide down like you would with an overhead (covered with a piece of paper) for teaching purposes??

    Maybe this online manual would help.
    * http://en.flossmanuals.net/thunderbird/interface/
    Not sure how well printing it out would work, though.

  • Is there an app that allows you to take a picture of ei: safeway card and UPC code instead of finding these cards everytime out of a wallet

    is there an app that allows a person to take a picture of ei: a safeway card and the UPC to just pull out the phone instead of looking for cards out of wallet o purse?

    I've seen a number of them that appear to do what you want. Search the app store.

  • Is there an application that allows you to read iBooks purchased from iTune

    Is there an application that allows you to read iBooks purchased from iTune. like Amazon books for Kindle ?

    Yes it is the iBooks reader that comes with the iPad.
    There are readers foe Barnes and Noble (eBook) & (nook) and Amazon (kindle).
    But iBook comes preinstalled.

  • Is there an app that allows you to write in an ipdad

    Is there an app that allows you to write like S notes with google

    There are hundreds of apps that let you write with your finger or a stylus. Penultimate and Noteshelf are two I've used.

  • I am trying to save  one  picture in different versions- How do I do that- there is nothing that allows me to save as

    I am trying to save  one  picture in different versions- How do I do that- there is nothing that allows me to save as- How do I do that??

    http://www.apple.com/aperture/
    Regards
    TD

  • Is there any app that allows me to control the cell phone from the computer with the mouse?

    Is there any app that allows me to control the cell phone from the computer with the mouse?

    No this is not possible.
    But you could use the iPhone Simulator of Xcode if you have access to an Mac. Like the name explains, it simulates an iPhone on an Mac, but you cannot use all standard apps

  • Is there a screen that allows a manager to change details of their employee

    Is there a screen that allows a manager to change details of their employee?
    Using Manager Self Service, we would like to be able to have our users change the job title, department etc. of their 'reports' i.e. their employees. Is there a way to do this using standard Manager Self Service functionality?

    Yes, it is possible to change the department related changes through Manager self service using function Change Cost Center, Location and Manager and it is possible to change the job using Change Job.
    Hope this clarifies your Question.

  • Is there a setting that allows for simultaneous downloading and watching of a rental movie on ATV?

    Is there a setting that allows for simultaneous downloading and watching of a rental movie on ATV?

    Apple TV has no storage, it is caching the movie and needs to load a portion before playback starts. The time it takes is dependent on your network.
    What is your current connection via speedtest.net?
    Make sure DNS is set to auto (settings - general - network)
    If on wifi try ethernet

  • Is there an app that allows you to download and read pdf files on your ipod touch?

    Is there an app that allows you to download and read pdf file on your ipod touch (5G)?

    There are many apps that allow reading PDFs. GoodReader allows downloading some items. It all depends upon how the site handles the download. It also uses file sharing in iTunes.
    iBooks also reads and had file sharing.

  • I want to control a PowerPoint presentation on my iPad remotely from my iPhone. Is there an app that allows me to wirelessly control my iPad from my iPhone?

    I want to control a PowerPoint presentation on my iPad remotely from my iPhone. Is there an app that allows me to wirelessly control my iPad from my iPhone?

    Yes.
    The app is called Keynote Remote and is available for both iPhone and iPad from the App Store. This app can also run Keynote presentations from your Mac from either your iPad or iPhone.
    Both your iPad and iPhone need to be on the same WiFi Network. With your iPad Keynote file loaded, go to:
    iPad > Keynote > Tool Menu (wrench) > Advanced > Remote and turnon "Enable Remotes"
    on your iPhone set up the link:
    Keynote Remote > Settings > New Keynote Link and follow instructions - you will be given a set of numbers, enter those numbers on the iPad and you are all set.
    Good Luck

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

Maybe you are looking for