My devices no longer show up when plugged into itunes on home computer - How can I get the devices to show up on the left tool bar on itunes like before?

for some reason I can't see "devices" when I plug them into my home computer (running snow leapard).  I recently upgraded my laptop to lion and now the devices are looking for my mac book.  How do I get the devices to sync with home computer and not the mac book?

Try Andrei Cerbu's post here or see TS1538: iOS: Device not recognized in iTunes for Windows, in particular section 5, forcing a driver update.
tt2

Similar Messages

  • My iTunes library is on an old PC that no longer works. I purchased a new iPod Touch.  How can I get the contents of my library to the new iPod?

    My iTunes library is on an old PC that no longer works. I purchased a new iPod Touch.  How can I get the contents of my library to the new iPod?

    My iTunes library is on an old PC that no longer works. I purchased a new iPod Touch.  How can I get the contents of my library to the new iPod?

  • HT1689 I have downloaded missing artwork via Google images onto i-tunes but when I then connect my i-phone, how can I get the artwork to transfer across to the i-phone?

    I have downloaded missing artwork, using Google images, into i-tunes.  I expected this to be automatically transferred to my i-phone when I connected it but nothing happened, How can I transfer the artwork into my i-phone?

    Try a reset ..
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • My ipod touch will no longer download new apps after i updated via apple store.How can i get the updates deleted or correct the problem moving forward?

    My ipod touch will no longer download new apps after I updated via apple store.It freezes now when I attempt to download and blanks the app off entirely . How can I reverse the updates or correct the problem moving forward?

    Basics from the manual are restart, reset, restore.
    Try those

  • I have alot of music on my iphone 4 that i cant get on to my itunes account on the computer, when i sync the phone it doesn't transfer the music on to my computer. how can i get the music off my phone and into my itunes without it deleteing all my music?

    i put all my music on my iphone and then when i got my new computer and downloaded itunes, it wont let me transfer the music thats on to my phone.
    How do i get the music thats on my iphone on to my computer without it deleting everything?
    (please dont tell me to sync my phone or back it up as i already have and it hasnt tranfered my music).

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • How can i get the correct text from a string like it show in the original source with the quotation marks in the right place ?

    The text is in hebrew so the problem is that sometimes the quotation marks not in the right place.
    For example i have this text: תווית
    על בגד: ''תן לאישה לכבס. זה תפקידה''
    This is the source original text you can see the quotations marks and they are not in the right place and all i did is copy paste.
    And this is a screenshot of how this text looks like in the website in the original:
    You can see now where the quotations marks should be.
    Now this is how i'm using the text in my program:
    First of all i'm using a webclient to download the page from the website and i'm also encoding it to windows-1255 since it's in hebrew.
    using (var webClient = new WebClient())
    webClient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    byte[] myDataBuffer = webClient.DownloadData("http://rotter.net/scoopscache.html");
    page = Encoding.GetEncoding("windows-1255").GetString(myDataBuffer);
    Then i'm extracting the places i need by reading the html file lines and parsing the right text and it's link.
    string loc;
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    List<string> lockedLinks1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    lockedThreads = new List<string>();
    lockedLinks = new List<string>();
    Regex textRegex = new Regex("ToolTip.*?(?=','<)");
    string[] fall = File.ReadAllLines(filename);
    for (int i = 0; i < fall.Length; i++)
    if (fall[i].Contains("http://rotter.net") && fall[i].Contains("locked")||
    fall[i].Contains("locked_icon_general") ||
    fall[i].Contains("locked_icon_anchor") ||
    fall[i].Contains("icon_anchor") ||
    fall[i].Contains("locked_icon_fire") ||
    fall[i].Contains("locked_icon_sport") ||
    fall[i].Contains("locked_icon_camera") ||
    fall[i].Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(fall[i + 2]))
    if (m.Value.Contains("><b"))
    loc = m.Value.Replace("\"><b", string.Empty);
    lockedLinks.Add(loc);
    string txt = fall[i - 1];
    string text = textRegex.Match(txt).Value.Replace("ToolTip','", String.Empty);
    if (text.Contains("&rsquo;"))
    text = text.Replace("&rsquo;", string.Empty);
    lockedThreads.Add(text);
    Already here on the List lockedThreads you can see the quotation marks not in the right place as in the original:
    After i'm parsing the text and links and adding them to the Lists in another class i'm doing a comparison using this Lists:
    foreach (List<string> l_branch in ListsExtractions.responsers)
    TreeNode l_node = treeView1.Nodes.Add(l_branch[l_branch.Count - 1]);
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    l_node.ImageIndex = 0;
    l_node.SelectedImageIndex = 0;
    for (int l_count = 0; l_count < l_branch.Count - 1; l_count++)
    TreeNode l_subnode = l_node.Nodes.Add(l_branch[l_count]);
    if (ListsExtractions.lockedThreads.Contains(l_subnode.Text))
    l_subnode.ImageIndex = 0;
    l_subnode.SelectedImageIndex = 0;
    The problem is in the line:
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    When it's getting to the line with the quotation marks it's never equal.
    Now there are more quotation marks.
    In general the problem when comparing both text if it's having quotation marks it's not the same.
    So i have two options:
    1. To fix it somehow so the quotation marks will be the same in both variables when comparing and also the same like in the original as they show in the html page.
    2. To remove the quotation marks from both variables.
    What should i do ? And how ? I was prefer to use the original quotation marks like in the original since they have a meaning in the place they should be. The question is how can i do it ?
    This is example of the block from the html file where the text with the quotation marks is:
    <TD ALIGN="RIGHT" VALIGN="TOP">&nbsp;<font size=-1 color=#ff9933><b>9418</b></font>&nbsp;</TD></TR><TR BGCOLOR="#eeeeee">
    <TD ALIGN="RIGHT" VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();" onmouseout="deActivate()" href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/new_locked_icon_general.gif" border="0"></a></TD><TD ALIGN="right" VALIGN="TOP" WIDTH="55%">
    <FONT CLASS='text15bn'><FONT FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=189696&forum=scoops1"><b>
    <font color="898A8E">תווית על בגד: ''תן לאישה לכבס. זה תפקידה''</b>
    </a></font></TD>

    Ok, it is unclear on what is happening here.
    Are you saying that when the webclient gets the data that it is not honoring the quote characters? Or the processing of the data buffer is causing issues?
    This is what I see the of your example text which is trying to be parse out:
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();">";
    It appears to me that the  escapes `&rsquo;` does not have matching `&ldquo;` anywhere within the tooltip. So it appears that the page properly places left quotes in when processing the page, but the raw html has broken text.
    Hence a garbage in, garbage out situation.
    William Wegerson (www.OmegaCoder.Com)

  • How can I get the ruler tool to show length in inches?

    This doc says the units the ruler tool shows length in are changed using preferences:
    http://helpx.adobe.com/en/photoshop/using/positioning-ruler-tool.html
    This document says the ruler tool always uses pixels unless you change measurement scale on a per image basis:
    http://livedocs.adobe.com/en_US/Photoshop//10.0/help.html?content=WS3D3EF585-502B-49d2-85F F-537E9DC25C21.html
    So far, the latter seems to be the case, but that's horribly inconvenient. Is there something I'm doing wrong or is there some setting somewhere that will make the ruler tool display measurement length in inches (or what ever I set in preferences)?
    Note that I am not talking about the units shown at the top and left side when the ruler is in view, I'm talking about the ruler tool's position and length data, whether or not the ruler is in view.

    Trevor,
    Unfortunately, that only changes the ruler units, not the mouse coordinates displayed when taking measurements using the ruler tool.
    gener7 nailed it though.
    rgr

  • Iphone no longer backs up when plugged into itunes

    Hi guys,
    I think this started after updating to iOS5.
    Previously, when I would plug my phone in, it would sync AND create a backup. Now however, it simply does not. I recently realized on the summary screen that my latest backup for my iPhone was several weeks old.
    In itunes "Back up to this computer" is ticked. Under preferences "Prevent iPods, iPhones, and iPads from syncing automatically" is not ticked.
    I have experimented with "sync with this phone over Wi-Fi" On or off that doesen't seem to force a backup.
    If I click the "sync" button in the bottom right corner, it will sync and create a backup. However, I would really like to have the process be more automated.
    My guess is that Apple is making this harder because they want everyone to backup via iCloud? Or am I missing something?
    Jake

    No, it's not crippled.  Mine works exactly the way it always has after upgrading to iOS5.
    Connect the device.
    On the summary tab, which option is selected for backup?  Backup to this comptuer or Backup to iCloud?

  • When I try to activate Java plug in it keeps failing when I try to activate it. How can I get the Java plugin to activate on FireFox.Java has been updated.

    I tried activating the plugin at osgov.com/webcam.html to see the web cam. I keep getting an error message that the plug in failed when i try to activate it when I am on firefox.

    Hello T.B., if you already [https://support.mozilla.org/en-US/kb/how-to-use-java-if-its-been-blocked#w_activate-java-once Activate Java once], try to reload the page and check it again. If does't work try to [https://support.mozilla.org/en-US/kb/how-to-use-java-if-its-been-blocked#w_always-activate-java-for-a-site Always activate Java for a site]
    Java 7.11 is vulnerable, so use it, it if absolutely necessary.
    thank you

  • How can I get the book marks bar back to showing all bookmarks?

    The recent changes to the bookmarks bar are really annoying.
    Previously I could see all the bookmarks, even if they flowed onto two or three lines now I can only see one line and the rest are in a drop down. This makes it slower to access things that I go to on a regular basis.
    Also, how do I hide the folders???!!! They take up so much room on the bookmarks bar. It was so much better before the last few upgrades.

    You may have been using the old Multirow Bookmarks extension in Firefox 3.6 and earlier versions of Firefox, which wasn't updated for Firefox 4.0 and 5.0. This is a different version of that old extension, which adds a few new features. <br />
    https://addons.mozilla.org/en-US/firefox/addon/multirow-bookmarks-toolbarplus/

  • ITunes will not show my purchases before October 18, when I had a different username.  How do I get the older purchases (more than 5,000) listed when my password is rejected and it won't issue a new one for that username?

    iTunes will not show my purchases before October 18, when I had a different username.  How do I get the older purchases (more than 5,000) listed when my password is rejected and it won't issue a new one for that username?

    Wow that was really quick, thank you so much.  Im not sure at all which version it was because i said it was around 4 years ago he bought it.  I know it isn't under his username, since he's a PC person (ugh) so i know its probably registered to one of our actual names.  isn't there some way to look it up since we did register it, because I'm not even sure where the disks are from when we bought it (we've moved a lot and also have two storage lockers, i know i would have kept it with other disks) but my cd rom drive is actually broken on my computer as well ( i think it got stepped on and is now squished and won't eject or run disks.)
    So is there anyway they can look up that its registered to one of our names since we did register it when we bought and installed it, or do i really have to find the disk with some sort of proof of purchase (i know there would be no receipt after all this time)
    either way, ill do what you suggested to the best of my abilities and thank you so much for answering my questions, i can't even open the program as its incompatible and find out the info from that) so I'm in a bit of a pickle and your response was so thorough and it didn't seem to be posted long enough to even write a well researched response, thanks, all the best,
    sarucia

  • HT1296 I am trying to sync contacts from my iPhone to Mac.  When I plug in my iPhone, I do not get the Info tab in iTunes (as mentioned in how to sync on this website).  How can I get the info tab to appear?

    I am trying to sync contacts from my iPhone to Mac.  When I plug in my iPhone, I do not get the Info tab in iTunes (as mentioned in how to sync on this website).  How can I get the info tab to appear?

    Since the release of Mavericks (OS X 10.9) syncing contacts and calendars with a Mac via iTunes is no longer supported. The currently supported method is via iCloud. Setup instructions: http://www.apple.com/icloud/setup/

  • I down loaded a rental movie and stopped part way through . i turned the computer on and off and when i went back on itunes it didnt show up on the rental playlist and movie playlist.how can i get the movie back?

    i down loaded a rental movie and stopped part way through . i turned the computer on and off and when i went back on itunes it didnt show up on the rental playlist and movie playlist.how can i get the movie back?

    Unless it has recently changed you can only watch rentals on the device or mac you rent them on.

  • I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I tried to find help with the support by web chat for 2 days already, but every time it says that chat is un available (even if it's suppose to be 24/7)... I dont know what else to do.... please help!

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

Maybe you are looking for

  • Asset  Details report  ,  AA-MM-FI link ?

    Dear All, I have to make a report for asset details (line item wise). In this report i have to display asset with G/L  no, purchasing doc no , service document no, qty, value etc. This report can be develop with the help of AA-MM-FI integration. i m

  • Read user selection from slicer of pivot charts

    I want to read the slicer selection made by user and use those values to get the data from SQL.

  • JFileChooser not show files and folders

    I had a java program using JFileChooser to open files. It worked fine on my Linux Redhat 7. Recently, I upgrade to Linux Fedora 5. I found the FileChooser does not show any directories or files for me to chose from. It's just and empty FileChooser Wi

  • Transfer GL data into SEM exchange

    Hi, I am trying to transfert data from oracle GL to ABM going through exhange . I am having trouble with the transfert the filters are not working. example: I have account numbers starting from 3100 to 8130 when i enter the rules for my expense accou

  • Airport problem; please help

    Hello Heres the problem; In my network/internet settings for airport the message is this: AirPort is connected to the network ___________ AirPort has a self assigned IP address and may not be able to connect to the internet. HOW DO I FIX this problem