Suddenly having multiple problems with new iTunes

So my iTunes is all messed up and I don't know why.
I recently was given a new PC from my parents, and one of the first things I did was to import my old music library (about 12000 songs on an external hard drive.) When I added the files I kept receiving an error saying that iTunes could not save the library and, sure enough, the next time I opened iTunes there was nothing there. I uninstalled and reinstalled the latest version of itunes in case that was the problem, and after that I couldn't even get it to open, it would always give me a message saying that required files were missing. I have since uninstalled and reinstalled about 5 more times and had no luck.
Most recently i decided to just plug in my iPod and see if my pc would recognize what files were missing on its own. Strangely enough, iTunes opened. Unfortunately it still is unable to save my library. It also says that it cannot read the files on my iPod and that I need to restore its settings, but I would hate to erase it (its a full 160G Classic) just to have itunes be unable to put any files back on it.
If anyone has any idea what is wrong I would greatly appreciate the feedback.

I should add that as of this morning iTunes appears to opening fine and reading my iPod (which is inexplicable because I haven't done anything with it since my 1st post.) iTunes still, however, will not save my library. I keep getting error message {-1450}. Also, every time i open iTunes, I am asked to agree to the user agreement, as if i had just downloaded the program.

Similar Messages

  • Having multiple problems with script - NTFS Permissions and AD Groups

    Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
    1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
    2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
    3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
    is used differently later on in the script.
    4.  Verifies the entered information and requests confirmation to proceed.
    5.  Creates the folder.
    6.  Creates an AD OU and/or security group(s).
    7.  Applies appropriate security groups to the new folder and removes undesired permissions.
    Import-Module ActiveDirectory
    $Division = ""
    $DivAbbr = ""
    $OU = ""
    $OUDrive = "AD:\"
    $FolderName = ""
    $OUName = ""
    $GroupName = ""
    $OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
    $FSRoot = "E:\"
    $FolderPath = ""
    $DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
    [bool]$Location = 0
    do {
    $userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
    Switch ($userInput)
    W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
    S {"Staffing is not yet implemented."; break}
    P {"Packaging is not yet implemented."; break}
    default {"Invalid choice. Please re-enter."; break}
    while ($DivAbbr -eq "")
    write-host ""
    write-host ($Division + " was selected.")
    $FolderPath = $Division + "\"
    write-host ""
    $choice = ""
    do {
    $choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
    Switch ($choice)
    G {$Location = $false; break}
    L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
    default {"Invalid choice. Please re-enter."; $choice = ""; break}
    while ($choice -eq "")
    write-host ""
    write-host ("Location is set to: " + $Location)
    write-host ""
    if ($Location -eq $false) {
    $FolderName = Read-Host "Please enter folder name:"
    $GroupName = $DivAbbr + " " + $FolderName
    } else {
    $input = Read-Host "Please enter two-letter state abbreviation:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter city:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter street address number only:"
    $FolderName = $FolderName + $input
    $GroupName = $DivAbbr + " " + $FolderName
    $FolderName = $FolderName + " "
    $input = Read-Host "Please enter street name:"
    $FolderName = $FolderName + $input
    $input = Read-Host "Please enter any optional information to appear in folder name:"
    if ($input -ne "") {
    $FolderName = $FolderName + " " + $input
    $OUName = $FolderName
    write-host
    write-host "Path for folder: "$FSRoot$FolderPath$FolderName
    write-host "AD Path: "$OUDrive$OU$OURoot
    write-host "New OU Name: "$OUName
    write-host -NoNewLine "New Security Group names: "$GroupName
    if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
    write-host
    $input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
    if ($input -ne "Y") { Exit }
    write-host
    write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
    if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
    Write-Host "Folder already exists! Skipping folder creation..."
    } else {
    write-host "Folder does not exist. Creating..."
    new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
    Set-Location ($FSRoot + $FolderPath + $FolderName)
    if ($Location -eq $true) {
    $tempOUName = "ou=" + $OUName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "OU already exists! Skipping OU creation..."
    } else {
    write-host "OU does not exist. Creating..."
    New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
    $GroupNameMGMT = $GroupName + " MGMT"
    if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    # $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    write-host $BIUsersSID.Value
    # out-string -inputObject $BIUsers
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
    $objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
    write-host $ADGroupName
    write-host $objUser.Value
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    $ADGroupName = "JACOBSON\" + $GroupNameMGMT
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    } else {
    $tempOUName = "cn=" + $GroupName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "Security group already exists! Skipping new security group creation..."
    } else {
    write-host "Security group does not exist. Creating..."
    New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $FolderACL.SetAccessRuleProtection($True,$True)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
    First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
    into Powershell, they work as expected.  I've tried the following methods:
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
    In the second case, I get the following error message:
    Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
    At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
    +     $FolderACL.RemoveAccessRuleAll($Ar)
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IdentityNotMappedException
    This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
    also tried the solutions given in this thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
    http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
    My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
    the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
    My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
    Thanks!

    I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
    As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
    again utilizing the -Server parameter on the Get-ADGroup command:
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    # Add the new normal users group to the folder with Read and Execute permissions
    $GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    # Add the management users group to the folder with Modify permissions
    $GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
    Still having issues with the translation of the BUILTIN\Users group, though. 

  • I am suddenly having a problem with my iMac - when I try to restart or shut down, it hangs on a gray screen, and I have to hard reset to turn it off.  How do I fix this?

    I am suddenly having a problem with my iMac - when I try to restart or shut down, it hangs on a gray screen, and I have to hard reset to turn it off.  How do I fix this?

     
    http://support.apple.com/kb/TS2570 Mac OS X: Gray screen appears during startup 

  • When Apple solve problems with new iTunes calendar sync with windows and outlook?

    When Apple solve problems with new iTunes calendar sync with windows and outlook?

    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    More Info here...
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Multiple problems with new retina iMac. Suspect graphics driver

    New retina IMac, top spec, with latest Yosemite, and additional Cinema Display attached. Having multiple problems which I suspect are being caused by the graphics driver:
    The long running issue with Adobe PS whereby under certain size options the tools cursor disappears and just has the arrow cursor.
    With no warning, after doing an action such as opening an application the system reverts immediately to the login screen and does not show me as logged in.
    After switching users, a blank screen other than the cursor is shown. Seems I have to power off to get past this one.
    Can anybody shed any light on any of these, at least so that I can discount my theory of a single culprit?

    So I went onto the Adobe forums and found a number of threads on this subject. A staff member replied with the following:
    It's a video card driver bug introduced in MacOS 10.10 (which looks a lot like an old bug they fixed in 10.9).
    Apple is aware of this, and the other video driver issues in 10.10, and working on solutions.
    So thanks to Adobe we now know.

  • Problem with new iTunes & iPod update

    Ever since installing the new iTunes update I've been having problems updating my iPod.
    At first when I ran the new version of iTunes a message popped up telling me that I needed to update the software on my iPod. Upon trying to do that, another window popped up saying that 'iPod couldn't be mounted'.
    So now my computer can't detect my iPod. I've restored my ipod which didn't help. I would reset my ipod but I can't even do that since when I run the ipod updater program it doesn't detect it. I've tried numerous times to see unplugging/plugging my ipod with the firewire and noticed the ipod hdd was whirring like crazy (and still no detection).
    Since the last time I attempted doing that I've noticed that some of my mp3 files on my ipod have become corrupt and would stop halfway through play and just skip to the next song.
    Any idea whats going on and how I could fix this??

    iPod won't turn on.
    iPod doesn't appear in iTunes or on the Mac desktop.
    iPod does not appear in iPod Updater or iTunes in Mac OS X.
    iPod appears on the Mac OS X desktop but not in iTunes.
    Try to restore it in disk mode.
    Putting iPod into disk mode.

  • Problems with new iTunes categories

    My podcast, the Amateur Traveler (http://AmateurTraveler.com) is having a weird problem with the new iTunes categories. Using the new guidelines I changed my two feeds (AAC, MP3) to have this for the category:
    <itunes:category text="Society &amp; Culture">
    <itunes:category text="Places &amp; Travel" />
    </itunes:category>
    Currently my podcast shows up as one of the top 100 in "Society & Culture" but does not show up in the top 100 in "Places & Travel". Since that is a subcategory that does not seem possible.
    I looked at the feeds of some of the shows that are in the top 100 and they are still using the old category. So I added this to my rss feed.
    <itunes:category text="Travel" />
    But that does not seem to have fixed the problems.
    Ideas?

    I'm having the exact same problem, but with "Sports & Rec" for the main category and "Professional" for the subcategory.
    I show up in the "Show All" for Sports and Rec, but not at all in "Professional".
    I know that our podcast is rated more popular than some podcasts that appear in the Top 100 for professional. We should be appearing ahead of them in that list, but we don't appear at all. Our podcasts have similar names, so if I do a search I can see that our popularity is higher. So why are they in the Top 100 and we aren't
    I have my code typed correctly. I don't get it.

  • Outlook syncing problem with new iTunes update

    I'm concerned about syncing my iTouch again, as I have major problems from the last time:
    Last week, I updated and synced my iTouch (4th gen) and the synch acted different.  I was faced with "conflicts in Outlook" to review.  I was doing this on the fly, and didn't really think anything of it, even though I hadn't ever been asked this before, so I went ahead without thinking.  Before this, in order for my Contacts folders to not all sync together, I had to make a Contacts folder I named "iTouch Contacts."  When I finished the sync, I noticed that in Outlook, my main Contacts folder now only had about 400 contacts in it (should have about 3000), and my iTouch Contacts folder had over 3000.  Obviously, my iTouch had done something weird and synced differently.  I knew I had some kind of duplicating mess to deal with, but just ended up moving all of the iTouch contacts to the main Contacts folder to deal with it later.  In the next couple of days, I synced it again, and (again) the same "conflicts" and that began to worry me.  When it was all said and done, for some reason, I saw that the iTouch Contacts folder in Outlook had 3000 again.  Without thinking, I was just disgusted and deleted all those contacts.  I later realized that I had deleted the majority of my contacts and that my main Outlook Contacts folder was again down to only 400.  Since most of my contacts are no longer in Outlook, I can't email people from a new email, but must use a previous email and reply to them.  Also, when I look at the contacts on my actual iTouch device, ALL my Outlook Contacts folders are there, even ones I have never had checked to sync with the device.
    My question:  How do I dare sync again...without knowing first how to get all my Contacts transferred from my iTouch to Outlook?  And then how do I figure out how to sync the right folders?  The recent update must have had some changes that just took over without asking me!  I had even unchecked the boxes under the Info tab in iTunes on my device, so as to NOT sync contacts, but it just went ahead and did it anyway.
    Thank you in advance for your help!

    Hi lastskier
    Have you browsed through the forums at all? Its worth spending a little while doing so because most problems have been experienced by others and resolved.
    My recommended method for installing iTunes upgrades is:
    1. Back up your iTunes library, and by this I mean locate the iTunes folder (usually in My music) and copy all of it and its contents preferably to a removeable hard drive (they are really cheap now). This is your insurance and if all else fails you have not lost your music files.
    2. Download the iTunes programme from the apple website to your pc - DO NOT install online.
    3. Temporarily disable any antivirus/antispy software programmes (locate the icon in the lower right hand side of your desktop and right click - you should get options to disable)
    4. Run the install and reboot.
    With any luck you will be up and running and the new iTunes will have found your old library and imported it. You will still have a safe copy on your removeable drive.
    Conflicts with AV/antispy programmes are the most common problem with iTunes installs.
    If it doesn't work and you are happy you have a back up of your music, you could try uninstalling all iTunes, iPod and QT s/w using "add/remove programs" and then running thru the steps again. However, this time you may have to get your new iTunes to find your music files on your removeable drive by plugging it in to your pc and getting iTunes to search for it.
    You will have lost any library settings e.g. playlist info play count etc by going this route, but there are fancier ways of dealing with that. You can open up "my Music" folder and reimport your entire back up copy of the iTunes folder and this will preserve your old settings.
    Let me know how you get on.
    Local retailer custom built pc. Pentium 4 chip 2.4GHz Windows XP SP2 20Gb iPod

  • More problems with new itunes not starting

    Hi,
    Have recently downloaded upgrade of iTunes and experienced the same problems as a few others - no response when trying to start it up. I was very happy indeed yesterday when the Quicktime standalone fix worked and my music reappeared. However, on restarting today, it's back to the square one - no response! Am I doing something wrong or is there anyone who can help?
    HP   Windows XP  

    I'm having the same problem on my desktop. I've done both a spyware search using ewido, and a virus check using symantec, neither of which helped. I tried uninstalling and re-installing and that also didn't help. Each time I try staring itunes I get the message:
    iTunes has encountered a problem and needs to close. We are sorry for the inconvenience.
    I'd be happy to send the error report that I get along with this message.
    Oddly enough, this problem is only occuring on one computer. I have no problem with it on my laptop. I hadn't updated itunes for a while on my desktop.
      Windows XP  

  • Problems with new iTunes 7

    i recently downloaded iTunes 7 and have been having problems with it. when i hook up my iPod i sees it but it wont let me play any of the music or my playlists. its shows all the songs as grey and down by where it shows the gigs used is a little lock symbol...how do i get rid of that lock?

    Anybody?

  • Please Help - Multiple problems with new BB software update

    Hi -
    Re: new software upgrade to 6.0 bundle 2534 v6.0.0.570
    I have a BB Bold 9700, via Carphone Warehouse on O2 (UK).
    I just downloaded this software update in good faith, via the desktop manager. It has changed several things I did not wish to change, some of them without any explanation as to how to revert to what I had before.
    One thing it has done is duplicate all my calendar entries, using different email addresses as default calendar addresses. I never had this with the previous software. Also, I am having trouble entering a new calendar entry on a day where there is already an "all day" entry.
    I guess the more we rely on these little machines, the more we suffer when things go wrong. Does anyone have any clues as to what to do ? Carphone Warehouse could not help and accessing anyone at BB seems impossible.
    Thanks in advance for your help.

    To reply to your responses, in order:
    Nothing -- I just discovered the problems and came here to....
    ... Express my frustrations (aka "throw a tantrum") and seek feedback from others who may be experiencing the same issues;
    Yes, I checked the wifi settings and nothing has visibly changed, and no, I haven't received ANY prompts from Apple about app upgrades -- and before you ask, yes, my iPad is registered with Apple with me as the owner;
    The decision to cut the power was one of the moronic moves that bother me, as it renders the device useless for the growing number of photographers looking to give Apple their MONEY to use it; and
    I should not have to reset the network settings just because Apple can't get the bugs out of an update before they issue it.

  • I'm having multiple problems with my MacBook Pro, HELP!

    I'm having quite a few problems with my macbook, such as:
    -when I click on something from the dock it opens up the applications folder
    -my keyboard is acting strange, when on safari the buttons act like shortcuts eg while typing it highlight file or edit print options come up or bookmarks
    -when I click on a link on safari it opens up in a new tab
    Please help, much appreciated
    Charles

    . Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    Then restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983

  • Anyone NOT having Keyboard problems with newer MBP!

    After reading about all the keyboard problems on the newer MBPs, is there anyone NOT having keyboard lockups or dropping letter problems? Looking to purchase a MBP soon but after reading about the many keyboard problems I will probably postpone or decide to get a different machine.

    There might be a couple of things to try. You could borrow an external keyboard to use for a while--or even buy a cheap one used, and see if you still have problems or not. If you don't, there's likely a problem with the MBP keyboard itself.
    Also, if you have access to an Apple Store, you might be able to make an appointment with the genius bar and get a definite diagnosis. It may be possible to arrange to get in a replacement keyboard at the Apple Store and have them fix it while you wait. Don't know for sure if that would be possible, but it's worth asking. Same with an Apple authorized repair shop--it might be possible to get it fixed without having to send it off.
    Good luck!

  • Several problems with new itunes??!!

    Getting much of the same issues with new version of itunes. Printing up cd covers, the playlist gets all jumbled up for some reason. Also, the thing that really gets me livid is before you used to be able to randomize your playlist and the order would change. This was cool if you were going to burn a cd and just wanted a random order different than the order you put the songs in your playlist. Now it seems you have to move the songs around instead of itunes "shuffle" changing the order for you. The shuffle does work for playback but not when you want to burn your cd in a different random order like the old itunes used to. I also used to like the old itunes that would show the cd artwork bigger during playback. Now it doesn't seem to have that feature. "Recently Played" folder doesn't appear to work as well. Itunes Store appears to be much slower while searching for music and tends to freeze up a lot. Sampling songs in the store also seems to need to "rebuffer" way more than the old version. Most of the time, I don't mind the updates. It takes some time getting used to it but eventually it gets easier. This update, however, I am not very happy with. Especially not being able to shuffle my "playlist" order. That ***!!

    looks like this is a known issue for the album covers printing jumbled. several work arounds would be to try print in black and white theme. You can also try to save as a pdf and print from another application like word or paint or something

  • Problems with new itunes! music breaks up!

    after installing the new itunes,i tried playing my music but the sound was horrible!! the music cracks up after a few seconds. and i got a pop out asking me to reinstall itunes becuz the cd burner wasnt installed properly or something. help pls!!

    The exact error message might help, but here's a place to start
    Songs and Other Content Do Not Play Correctly

Maybe you are looking for

  • How to fix this error: "Scanner is Not Operating Correctly"

    My MP830 (purchased in 2006) will print from my computer but nothing will print  or scan when placed on the scanning bed.  The error is:  "Scanner is not operating correctly."  How can I fix this?  I do have the Set Up CD-Rom with the Driver, Applica

  • Why do I get a white background when pasting into Word

    I am brand new to Photoshop and can't find an answer for this anywhere. Please help: When I open my company's logo (an EPS file) in Photoshop, it has a transparent background (the "checkered" one), which I DO want.  But then when I Select All/Copy/Pa

  • 2 inputs and 1 output.

    Hi all, This is my first post. I use an arduino 1 board to read 2 (x & y) analog signals. I would like to command 1 pwm output on the bases of the 2 analog signals. The idea is create a table 3x3 in wich x and y axes are based on the values of the an

  • Upgrade from Mac OS X 10.4.11

    Hi, I want to upgrade my old macbook now running mac OS X 10.4.11. It has a "2.16 GHz Intel Core 2 Duo" processor. How fare will I be able to upgrade?

  • TV display resolution so huge only see apple menu and About - how reset?

    Somehow my kids reset the resolution on our TV display screen.  It view is so "huge" one can only see for example the Applie Menu pick and the "About" choice under it. I tried Safe Boot and got normal size Log In screen, but after entering password r