HT2518 Having downloaded iTunes from my pc to mac the data has not appeared in my mac iTunes

Using the Migration Assistant we have transferred our iTunes music from our old pc to new mac.  The process was successful but when we open iTunes the transferred music files are not in our iTunes.  We know the music is on the laptop but how do we transfer all the files into our iTunes library?  We have tried finding the files in Finder and can see individual songs if we search for them but cannot see where they are stored.  it took 12 hours to download all this data and we don't want to have to do this again.

In the Finder's search result page, control-click one and choose to open the enclosing folder.
(65591)

Similar Messages

  • I have downloaded google app on my ipad but the icon does not appear on my home screen. How do I remedy this situation?

    I have downloaded google app on my iPad but the icon does not appear on the home screen.How do I remedy this problem?

    Swipe your Home Screen to the right and search for Google.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%203/68acc81c1fdfda43ca2 2a5a44ab66410.jpg

  • Please create a apple id bcoz my id is not working when i try to download anything from store it displays your apple id has not been used in the itunes store please help me i want to talk online with support communities

    Please help me create a apple id and send to this email [email protected]

    Hi, just to let you know that i already solve my problem! I created a 2nd Apple ID when trying to download an app. Instead of registering with the app i already have i choose to make a new registation and so now i use 2 ID's, one without any payment options and other with the "None" payment option.
    (I checkked someon's post that have made the same ...)
    Bye
    mph4, LX

  • How to launch an application with elevated administrator account privilege from windows service even if the account has not yet logon

    Here is the case:
    OS environment: Windows 7
    There are two user accounts in my system, standard user "S" and administrator account "A", and there is a windows service running with "Local System" privilege.
    Now i logged-in with account "S", and i want to launch an application with elevated administrator account "A" from that service program, so here is the code snippet:
    int LaunchAppWithElevatedPrivilege (
    LPTSTR lpszUsername, // client to log on
    LPTSTR lpszDomain, // domain of client's account
    LPTSTR lpszPassword, // client's password
    LPTSTR lpCommandLine // command line to execute e.g. L"C:\\windows\\regedit.exe"
    DWORD dwExitCode = 0;
    HANDLE hToken = NULL;
    HANDLE hFullToken = NULL;
    HANDLE hPrimaryFullToken = NULL;
    HANDLE lsa = NULL;
    BOOL bResult = FALSE;
    LUID luid;
    MSV1_0_INTERACTIVE_PROFILE* profile = NULL;
    DWORD err;
    PTOKEN_GROUPS LocalGroups = NULL;
    DWORD dwLength = 0;
    DWORD dwSessionId = 0;
    LPVOID pEnv = NULL;
    DWORD dwCreationFlags = 0;
    PROCESS_INFORMATION pi = {0};
    STARTUPINFO si = {0};
    __try
    if (!LogonUser( lpszUsername,
    lpszDomain,
    lpszPassword,
    LOGON32_LOGON_INTERACTIVE,
    LOGON32_PROVIDER_DEFAULT,
    &hToken))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if( !GetTokenInformation(hToken, (TOKEN_INFORMATION_CLASS)19, (VOID*)&hFullToken,
    sizeof(HANDLE), &dwLength))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if(!DuplicateTokenEx(hFullToken, MAXIMUM_ALLOWED, NULL,
    SecurityIdentification, TokenPrimary, &hPrimaryFullToken))
    LOG_FAILED(L"DuplicateTokenEx failed!");
    __leave;
    DWORD dwSessionId = 0;
    WTS_SESSION_INFO* sessionInfo = NULL;
    DWORD ndSessionInfoCount;
    bResult = WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &sessionInfo, &ndSessionInfoCount);
    if (!bResult)
    dwSessionId = WTSGetActiveConsoleSessionId();
    else
    for(unsigned int i=0; i<ndSessionInfoCount; i++)
    if( sessionInfo[i].State == WTSActive )
    dwSessionId = sessionInfo[i].SessionId;
    if(0 == dwSessionId)
    LOG_FAILED(L"Get active session id failed!");
    __leave;
    if(!SetTokenInformation(hPrimaryFullToken, TokenSessionId, &dwSessionId, sizeof(DWORD)))
    LOG_FAILED(L"SetTokenInformation failed!");
    __leave;
    if(CreateEnvironmentBlock(&pEnv, hPrimaryFullToken, FALSE))
    dwCreationFlags |= CREATE_UNICODE_ENVIRONMENT;
    else
    pEnv=NULL;
    if (! ImpersonateLoggedOnUser(hPrimaryFullToken) )
    LOG_FAILED(L"ImpersonateLoggedOnUser failed!");
    __leave;
    si.cb= sizeof(STARTUPINFO);
    si.lpDesktop = L"winsta0\\default";
    bResult = CreateProcessAsUser(
    hPrimaryFullToken, // client's access token
    NULL, // file to execute
    lpCommandLine, // command line
    NULL, // pointer to process SECURITY_ATTRIBUTES
    NULL, // pointer to thread SECURITY_ATTRIBUTES
    FALSE, // handles are not inheritable
    dwCreationFlags, // creation flags
    pEnv, // pointer to new environment block
    NULL, // name of current directory
    &si, // pointer to STARTUPINFO structure
    &pi // receives information about new process
    RevertToSelf();
    if (bResult && pi.hProcess != INVALID_HANDLE_VALUE)
    WaitForSingleObject(pi.hProcess, INFINITE);
    GetExitCodeProcess(pi.hProcess, &dwExitCode);
    else
    LOG_FAILED(L"CreateProcessAsUser failed!");
    __finally
    if (pi.hProcess != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hProcess);
    if (pi.hThread != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hThread);
    if(LocalGroups)
    LocalFree(LocalGroups);
    if(pEnv)
    DestroyEnvironmentBlock(pEnv);
    if(hToken)
    CloseHandle(hToken);
    if(hFullToken)
    CloseHandle(hFullToken);
    if(hPrimaryFullToken)
    CloseHandle(hPrimaryFullToken);
    return dwExitCode;
    I passed in username and password of account "A" to method "LaunchAppWithElevatedPrivilege", and also the application i want to launch, e.g. "C:\windows\regedit.exe", but when i run the service program, i found it do launch
    "regedit.exe" with elevated account "A", but the content of regedit.exe is pure back. screenshot as below:
    Can anyone help me on this?

    You code is not dealing with the DACL access to Winsta0\Default.  Only the LocalSystem account will have full access and the interactively logged on user which is why regedit is not displaying properly.  You'll need to grant access to your user. 
    You also need to deal with UAC since that code is going to give you a non-elevated token via LogonUser().  You need to get the full token via a call to GetTokenInformation() + TokenLinkedToken.
    thanks
    Frank K [MSFT]
    Follow us on Twitter, www.twitter.com/WindowsSDK.

  • I'VE DOWNLOADED FIREFOX TWICE, BUT THE ICON HAS NOT APPEARED TO DRAG DOWN TO MY LAUNCH BAR. WHAT TO DO NEXT?

    I HAVE AN APPLE MACBOOK, LION OSX-10, TRYING TO DOWNLOAD FIREFOX TO OBTAIN YAHOO TOOLBAR SUBSEQUENT TO RECENT SOFTWARE CHANGE.

    Which version did you download?<br />
    The latest Firefox 3.6.24 version or Firefox 8.0.1?
    See also:
    *http://kb.mozillazine.org/Installing_Firefox#Mac_OS_X
    *https://support.mozilla.com/kb/Installing+Firefox+on+Mac
    You can find the latest Firefox releases here:
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    It might be better not to update to the Firefox 9 version that will be released later today because there are still unresolved crashes on Mac with that version.
    *http://releases.mozilla.org/pub/mozilla.org/firefox/releases/8.0.1/mac/en-US/

  • I cant download from appstore. I made my apple Id but when I try to download from app store it says this id has not yet been used in itunes. what should I do?

    I cant download from appstore. I made my apple Id but when I try to download from app store it says this id has not yet been used in itunes. what should I do?

    Follow the on screen instructions to set up an iTunes account using your Apple ID.

  • HT1222 Wheb I try to update iTune I am getting a message "the site has not a valid signature" and the downloading is stopped. How can I fix IT?

    Wheb I try to update iTune I am getting a message "the site has not a valid signature" and the downloading is stopped. How can I fix IT?
    I am using windows 7 64

    That suggests that the installer is getting damaged during the download.
    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • TS3212 Trying to download iTunes 10.7 in Windows 7 64-bit. When I click the download now button, it immediately goes to the "Thank you for downloading" screen, but the file has not downloaded. Popups unblocked. Any thoughts? Thanks!

    Trying to download iTunes 10.7 in Windows 7 64-bit. When I click the download now button, it immediately goes to the "Thank you for downloading" screen, but the file has not downloaded. Popups unblocked. Any thoughts? Thanks!

    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/quicktime/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro-.

    How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro (so that I can the save them in iTunes and then synchronize some of the videolectures to the iPad?)

    To set it up as POP you need to delete the account, reboot the phone by holding the HOME and SLEEP buttons at the same time until an Apple logo appears (about 10 seconds), then add it back following these instructions: Forcing creation of a POP or IMAP email account
    I understand that you have used the same account for many years, but the technology is also changing constantly. Years ago the standard was POP (Post Office Protocol), which was designed at a time when it was inconceivable that anyone would access their email from more than one device. When people started using multiple devices, for the most part they wanted to see changes on one device mirrored on another. A new standard, IMAP (Internet Mail Access Protocol) was developed. With iMAP the master copy of all messages resides on a server, and multiple devices are kept in sync with the server. So if you delete a message from one device it is removed from the server, and then removed from all other devices when they next sync. This is the same way Microsoft Exchange works. Other benefits of IMAP include the ability to have multiple mail folders that are kept in sync across devices. In your case you could use this to create a separate folder for each family member, so they could move messages to their own folder and not clutter up the shared Inbox. Most computer mail readers can even automatically sort incoming mail into folders based on the contents of the message.
    IMAP is considered a "higher level" standard than POP. When you create a mail account iOS devices query the server and ask what it supports; if it says it supports IMAP then the account is automatically configured for IMAP. So if you really want POP you must fool it, as described in the link above. In my experience Android devices default to the highest level protocol also, and I suspect newer Blackberries do (although it has been 15 years since I used a BB).

  • In the modern world why is not possible to download apps from foreign countries whilst in the uk...!?

    In the modern world why is not possible to download apps from foreign countries whilst in the uk...!?

    Because apps are licensed for sale only in specific countries by the developers, and for iTunes Store and credit card security and anti-fraud purposes you need an AppleID and billing address in the country you are buying from.
    Just because it is a digital download does not mean licensing and local commerce laws and taxes do not apply, like they would to a physical item.

  • I downloaded a tv series. My iTunes voucher was debited but The program did not appear?

    I downloaded a tv series last night. Payment was taken but the download has not appeared.

    Hello Storm3
    If you are not able to download your purchase by looking at your purchase history, then report the issue to the iTunes Store to resolve it.
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht2519
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Regards,
    -Norm G.

  • HT201302 Hello,I have downloaded photos from my ipod touch following the instructions but it doesn't download videos.Can you help please?

    Hello,I have downloaded photos from my ipod touch following the instructions but it doesn't download videos.Can you help please?

    doesn't download videos
    I seen so many of these post for windows users.
    Try my little "trick" (must be running iOS 4.3 or better)
    Download the app "Download Manager Lite" (FREE) or "Download Manager" Full ($ 1.99 USD)
    After downloading, transfer it to iTunes
      iTunes Store: Transferring purchases from your iOS device or iPod to a computer 
    After transferring, Go to your iDevice (on itunes), to the apps page, scroll down, you can add/save videos and/or files. 
    Click on "Add", find the folder of which your movies are being downloaded. Its much faster than syncing from itunes.
    You can do the wi-fi transfer, the best part is that you don't have to be connected to the same wi-fi.
    You will get 2 different URLs you need to type on your computer. Type the Web URL not the ftp URL. After that, you should have access to the app, without the need of itunes. 
    Click on Add, find the folder of where your movies are stored, faster than syncing with iTunes.
    HOPE THIS HELPS.

  • I can no longer sync Callander from outlook to my iPad the button has disappeared from iTunes what do I do

    Why can I no longer sync my Calendar from outlook to my iPad the button has gone from iTunes why.

    Calendar data is now synced through icloud not local itunes.
    Make sure it is setup under Settings>Icloud & Settings>Mail, Contacts, Calendars

  • I have just upgraded from an iPhone 3Gs to an iPhone 5. I am trying to transfer all my content via icloud but having problems logging in - it keeps telling me the server is not responding. Nano sim hasn't yet been registered - does this affect things?

    i have just upgraded from an iPhone 3Gs to an iPhone 5. I am trying to transfer all my content via icloud but having problems logging in - it keeps telling me the server is not responding. Nano sim hasn't yet been registered - does this affect things?

    Have you activated your phone with your carrier yet?

  • I'm using windows 7, trying to download pictures from my canon 5d mark 2, but when I click import, the camera does not appear. I've tried changing USB ports, switching the camera on and off, trying a different USB cord, tried a different camera, but nothi

    I'm using windows 7, trying to download pictures from my canon 5d mark 2, but when I click import, the camera does not appear. I've tried changing USB ports, switching the camera on and off, trying a different USB cord, tried a different camera, but nothing. Please help! This problem only started a few days ago on lightroom 3.6, upgraded to 5.5, but still not working. Thanks.

    Can you see the Canon EOS camera and image files using Windows Explorer? If not disconnect the camera, close all applications' shutdown Windows, and TURN OFF the power to your system and ALL connected devices. Disconnect all phones, iPads, and any other USB devices and restart your system.
    Retry Windows Explorer and see if your camera is showing. If so try LR import again.

Maybe you are looking for

  • Win 7 and Arch dual boot [SOLVED]

    There are other help threads about this, but I didn't want to hijack somebody's elses thread.  Sorry for the long post, I just want to provide as much detail as possible: I am trying to use Grub (not Grub2) to dual boot between Arch Linux and Windows

  • Save functionality is not working in adobe reader

    hello, i am designing layout for offline adobe forms in Adobe Live Cycle Designer ES version 8.1 and having adobe reader version 8. i save form on PC. When i open  it shows me save button after doing changes in form m not able to save it as save func

  • Odd error with MS Office Install and transforms

    Hello, I'm seeing this on our new Dell PCs that we are delivering to our staff. We create the image, test it, and it works fine. We then deliver the PCs to the user, user logs in, Windows creates profile, etc, but MS Office (2002) won't run - for tha

  • Movie playback question

    I dont own an iPod yet, and never have, thus I have no experience with them. I am considering a 3G, 32GB touch model because I need a better mp3 player, and well, not not get a laptop replacement at the same time(my laptop will not work wireless). On

  • Restore old fce files

    Some years ago I used Final Cut Express (3.5.1) for video editing. For some reasons (too complicated, no further support from Apple?) I went back to iMovie and recently to Adobe Premiere. Now I have the problem that old files in fce format do not ope