Import and delete the photos from the camera

The link you gave is not useful. I don't want to use the application Windows 8 photos. All I want to do is to plug my camera and have pictures, transfer in a folder of my title and delete the photo from my camera. It's an ability that were available in Windows 7 and not available in Windows 8. I am currently using Dropbox and it is slow and uses tons of data to my hotspot.

Thank you!

Split from: https://answers.microsoft.com/en-us/windows/forum/windows_8-pictures/importing-and-erasing-photos-from-camera/d8ad55da-66e7-46d5-b54e-3ef0bf45e986

Hello Joe,

Thanks for posting your query in Microsoft Community.

I understand that you have questions, import and delete the photos from the camera. We are happy to help you in the matter of fixing.

You can check the below link to import photos from the camera.

  1. First, connect your digital camera, and press the Power On button. Windows 8, which will detect the camera and will install the appropriate drivers.
  2. After the driver installation is complete, the AutoPlay menu appears.
  3. Select the option import pictures using Windows.
  4. In the lower right corner of the screen, a small window asking if you want to mark photos will appear. You can type a general images you want to import. Tags can be very useful to organize and find your photos.
  5. If you do not want to insert a tag just leave this space empty and click Import.
  6. If you want to customize the import settings, click the Options button. Now you can change the following settings: where pictures import them (the default folder is pictures - if you want another folder, click Browse and select or create this folder), the name of the folder (by default the name of the folder will be the date when the images are imported over the tag you entered) and the file naming convention.
  7. When you are finished, click the OK button. These settings apply to all the photos you want to import in the future.
  8. After you click import, Windows 8 starts to move all your photos.  If you want the pictures to be removed from your camera once the import process is completed, click the Delete after import check box.
  9. Once the process is complete, start Windows Photo Gallery and you will be able to see all the photos that have been imported.
  10. Now, turn your unit off and unplug the cable to connect to your PC.

If this does not help then, try the steps below to get the images from the camera.

  1. Go in computer.
  2. You will find the camera under portable device or removable devices.
  3. Double-click on this unit and you can copy and paste from this location and import it onto your computer.

I hope this helps. Otherwise, feel free to write us back for assistance.

Tags: Windows

Similar Questions

  • Help with excel import and delete the page script

    Hello. I will try to make it as simple as possible. I have some data from excel (saved as delimited by tabs) that I need to import in a 5 PDF page. I use the script below to import, and it works fine. All import fields and records the individual (one for each record) PDF. However, I need to extend this functionality by removing some pages before it saves the document by looking at the different boxes. The code below is what I use to import the records.

    // specify the filename of the data file
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text file containing the data
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    var err = 0;
    var idx = 0;
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2) 
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf"); // saves the file
            idx++;
        }
    }
    

    As I said before you import works surprisingly well.

    My PDF consists of 5 pages (info-registration, p1 = Dir-contract = p0, p2 = contract ndarp-brand, p3 = takes-contract, p4 = agreement must be brand). My idea is that on the import of data, the script will look at a few check boxes and determine which contracts to remove on the PDF and then save. I wrote the syntax of which, in my view, what it should look like. I'm not a programmer and know just a little bit. I looked through the documentation and this is what I came with. I don't know how to combine to work. Here's the code I came up with that.

    var dir = this.getField("Associate Director"); // checkbox
    var aldir = this.getField("Alumni Director"); // checkbox
    
    var fac = this.getField("Facilitator"); // checkbox
    var alfac = this.getField("Alumni Facilitator"); // checkbox
    
    var oyb = this.getField("Optimize Your Brain"); //checkbox
    var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
    
    // Below are all the possible training options.
    if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:1, nEnd:2})
    }
    else (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:1, nEnd:2})
    }
    

    How to combine these two so that I can create a document temp import my data, check the boxes to check off and delete the appropriate pages and save the file and then go to the next record? I got the first part done. It imports large and has the right, but I don't know what to do next. Thanks for any help!

    Or y at - it another way to do this?


    Michael

    Wow. Ok. I had it works beautifully. There was a lot of trial and error. Because the script as it was would have, would open the original PDF, delete the pages needed, then save the file. While it would be to go to the next record is missing pages in PDF and bomb to open. I hunted and searched for a way to do this. I found "this.insertPages" in the documentation. Finally, what worked was so move the "save under" in the service and put it under every variation of check. So now when checking the boxes, he performs the check, removes the mandatory pages, stops, insertions of back in deleted pages from the original file, leave the service and finally goes to the next record.

    Here is my final script:

    // This code looks at an excel (tab delimited) file, imports the records into a PDF form 10 Pages long.
    // Then checks a series of checkboxes and deletes the pages that aren't associated with first page.
    // After it deletes these pages it reinserts the deleted pages so it can do the checks for the next record in the (tab delimited) file.
    
    // variables for importing excel data
    var err = 0;
    var idx = 0;
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    //Checking a bank of 6 checkboxes and determine which pages need to be deleted, save the file, and the insearch the deleted pages again.
    function seekandDestroy() {
        if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
    }
    
    // Imports records does the above function then go the next record, all the while doing error reporting.
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2)
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            var dir = this.getField("Associate Director"); // checkbox
            var aldir = this.getField("Alumni Associate Director"); // checkbox
            var fac = this.getField("Facilitator"); // checkbox
            var alfac = this.getField("Alumni Facilitator"); // checkbox
            var oyb = this.getField("Optimize Your Brain Site Coordinator"); //checkbox
            var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
            seekandDestroy(dir, aldir, fac, alfac, oyb, poyb); //performs the above function
            idx++; //goes to next record
        }
    }
    
  • How to delete a Photo Album that came from my Mac to my iPhone. I want to remove it from the phone.

    How to delete a Photo Album that came from my Mac to my iPhone. I want to remove it from the phone. I do not use the cloud. Just sync with USB.

    You must synchronize with iTunes again but to change the settings on the Photos to iTunes page for doesn't understand is not the album (s) that you do not want on the phone. See the information below to keep your photos safely stored and updated on all your devices - Apple Support

    If you want more pictures synced to your iPhone, iPad or iPod touch, turn off sync in iTunes and they will be removed from your device. You can disable synchronization for some of your photo albums or all of them at once.

    Stop the synchronization of some albums

    1. Open iTunes on your computer and connect your iPhone, iPad or iPod touch.
    2. Click the device icon in iTunes.
    3. Click on the Photos.
    4. Choose "Selected Albums" and deselect the albums or collections you want to stop synchronizing.
    5. Click on apply.

    Stop synchronization of all photos

    1. Open iTunes on your computer and connect your iPhone, iPad or iPod touch.
    2. Click the device icon in iTunes.
    3. Click on the Photos.
    4. Uncheck 'Synchronize Photos' and then click 'remove all '.
    5. Click on apply.

    Learn how remove photos and videos synced from iTunes when you can not access the originals.

  • Delete photos from my camera do not roll after the update to 9.3.1 IOS iphone 4s, also the photo has not saved when taken by camera

    Delete photos from my camera do not roll after the update to 9.3.1 IOS iPhone 4s, also the photo has not saved when taken by camera

    Mhefzi86 wrote:

    Delete photos from my camera do not roll after the update to 9.3.1 IOS iPhone 4s, also the photo has not saved when taken by camera

    OK, thanks for sharing.

    Maybe you can provide clarification comments on what happens when you try and what troubleshooting steps you did.

  • Well when I transfer my videio and/or photos from my camera sd card, when the transfer images will open in Windows Live Photo Gallery with pictures showing as a large icon.

    Well when I transfer my videio and/or photos from my camera sd card, when the transfer images will open in Windows Live Photo Gallery with pictures showing as a large icon. My photos are stored on my HP-Pavilion(E:).) drive

    But after that when I click on the drive C: E: MyPictures they open as a flower tile. I can go to the top, then click on view and then large icon and they will change to display an icon of the photo. But the next time I go in this same folder they showup new slot-shaped sticker flower. I can go through the same process and click the show the big icon and they will change to a large icon image.

    It was that all of my photos, at all times, remained as a large icon all the time. Something has changed this feature.

    Now I can go to the libraries, photos, My Pictures(E:) et cliquez sur n'importe quel dossier et le dossier s'ouvre avec les images dans ce dossier, montrant une image de grande icône.)

    Something has changed at the sight of my photos in the folder that contains photos. I can't stay on display large icons.

    Thank you

    Hey

    Follow article

    http://www.SevenForums.com/general-discussion/75911-how-can-i-keep-all-folders-changing.html

    Good luck

  • I have an Acer - processor AMD A10, 16gig ram desktop pc, I've upgraded to windows windows 10 8. When I open lightroom everything is ok in the library. When I select develop LR does not and I have to close it. If I delete a photo from the library of the h

    I have an Acer - processor AMD A10, 16gig ram desktop pc, I've upgraded to windows windows 10 8. When I open lightroom everything is ok in the library. When I select develop LR does not and I have to close it. If I delete a photo from the library of the same thing happens. How can I fix this., he can be to stop what is happening

    Hello Sarika

    Thanks for your help.

    It's not that simple I thought he'd be when I used your method that whenever I tried to uncheck 'Use graphics processor' Lightroom 6 crashed.

    At least you put me on the right track and I persevered and found the file relevant agprefs of Lightroom web help and followed the instructions to change manually.

    I have changed two files with the same name but stored in different locations.

    Everything works fine now.

    Thank you once again.

    Mick

  • How can I download photos from my camera card in the small front port?

    How can I download photos from my camera card once I put it in the small harbour in front of the computer?

    Hi Islarich,

    Thanks for posting the question on the Microsoft Community Forums.

    According to the description, it seems you are trying to download images from the camera.

    It would be great if you could answer this question in order to help you further.

    You connect your digital camera to your computer using, USB cable or a memory card?

    To download the pictures from my camera to the computer, refer to the following Microsoft article:

    How can I get pictures from my camera to my computer? http://Windows.Microsoft.com/en-in/Windows-Vista/how-do-i-get-pictures-from-my-camera-to-my-computer

    Troubleshoot camera connection: http://windows.microsoft.com/en-us/windows-vista/troubleshoot-camera-connection-problems

    If you need Windows guru, do not hesitate to post your questions and we will be happy to help you.

  • Import and view the files on a memory card from your USB connected printer (Windows 8)

    Hello everyone

    Have you ever wondered if there was a way to access the files on a memory card in the printer to your computer? Is there. Here's a video that shows how import or view the files on a memory card in the printer of Windows 8 if the printer is connected via USB.

    This video shows you how to import and display the files and images in Windows 8 on your computer, when you insert a memory card into your USB connected printer.

    I hope that aid video above.

    This is especially useful if you do not have a computer with a memory card reading and you need to retrieve an image from a memory card.

  • Using Lr test, I managed to copy photos in the Catalogue and in development. Now, I want to use the photo developed/published as master and delete the original. So using the "modified" as the new source version. What is the process to do this?

    Using Lr test, I managed to copy photos in the Catalogue and in development. Now, I want to use the photo developed/published as master and delete the original. So using the "modified" as the new source version. What is the process to do this?

    This is to manually remove the master files. But are you sure you want to do this? Especially if these files are raw files? If you do, you throw a lot of precious image data. Remember that the main files are completely intact and in their original state at any time. The catalog stores all the changes that you make. But if you really want to delete your master files, you need just to delete them individually or as a group.

  • Windows import program does not close after you import photos from a camera.

    Windows import program does not close after you import photos from a camera. It is frozen on the desk and the computer must be restarted to use the program again, windows does not detect a problem, how to fix it.

    original title: importer of photo and video for windows

    Hello

    1. which version of the operating system is installed on the computer?
    2. don't you make changes on the computer before the show?

     
    Method 1:
    You can perform a clean boot and check if the problem occurs.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: After a repair, be sure to set the computer to start as usual as mentioned in step 7 in the Knowledge Base article.

    Method 2:
    Alternatively, you can change settings for importing pictures and videos in windows by following the steps from the link.
    http://Windows.Microsoft.com/en-us/Windows7/change-settings-for-importing-pictures-and-videos
     
  • My scanner and Camera Wizard is not poping up to transfer photos from my camera

    My Wizard appears after using the trial version of AVG PC Tuner is no longer to transfer pictures at my cameras are listening on.  Used to.

    the wizard has no other camera listed... does not work try to list them using the disc that came with them... I have a Sony and a new Panasonic... dunno why no brand is not listed.

    Anyone know how to get the screen to make it appear again?

    I tried the automatic setting of Microsoft... has not helped... Impossible to find something wrong

    I have always used the auto pop up the camera wizard to transfer my photos from my camera.  I ran AVG PC Tuner trial a few days ago.  Now... the scanner and Camera Wizard does appear more... ugh.  I tried to add the two cameras to the wizard, but because Sony and Panasonic is not listed, I can add them (he claims he can't find good info on the disk is)

    Anyone know a fix?

    do a system restore to an earlier date of AVG from the trial.

  • How can I fix my Lightroom 6? It starts and then crashes when I try to delete a photo from a collection or edit a photo.

    How can I fix my Lightroom 6? It starts and then crashes when I try to delete a photo from a collection or edit a photo.

    Go to the dialog box Preferences, Performance tab and disable the GPU acceleration. See if that helps.

  • Add, change and delete the file "iTunes" on a NAS

    I have just said "Apple Support Community" by Apple Support.

    The title probably sums up what I'm trying to do. I'm looking for a way to add, change, and delete files on a NAS.

    Hardware: MacBook Pro 15, 1 TB of storage, 16 GB memory, OSX El Capitan.

    NAS: Qnap TS - 453 has: storage nominally 16 TB, up to about 5 TB.  4 WD 4TB disks in a RAID 5 configuration.

    a Vaio WIN10 as well as a smaller MacBook (my wife)

    The purpose of the NAS is to provide a backup system for computers and act a server "iTunes."

    I acquired the NAS after the death of my WD MyBook live in December 2015 after five years of reading backup and "iTunes" to my computer and the Sonos system.

    After two months of 'getting to know you' with the NAS, I finally managed to configure the server "iTunes" and Mirabile Indo-European it works!  I'm just doing the SIN to a back-up for computers.

    Now for the question: I am looking for an app (for lack of a better term) that will allow me to add and remove files to and from the NAS "iTunes" folder

    My search for a solution so far has indicated that:

    (1) NAS' iTunes folder is not really true Apple iTunes and

    (2) I need something that is DAAP (Digital Audio Access Protocol) friendly, that would allow me to add, change and delete the files.that would allow me to add, edit and delete files.

    I'm not looking for something that would synchronize the files iTunes NAS to one of my computers, I am all prepared to do myself if necessary.

    If I can't find an application so I use the app 'Brute Force' change my Mac iTunes required records and download again to my NAS.

    Why do you need an app to put the files in a folder on the NAS Server?  Make them just above in the Finder.  Maybe I'm missing just your problematic here.  Do you mean add your PEMA files to iTunes? I've never used this file format, but kind of, I would be very surprised if iTunes supported it.

    the NAS iTunes folder is not really true Apple iTunes

    I don't understand what you're trying to say here.  "Apple iTunes" is an application. Yes, a folder is not an application.

    Be warned, we see not few messages from people that use iTunes with a NAS. Often the problems cannot be explained. sometimes just iTunes and NAS disagree togther.

  • I want to congratulate the subscription and delete the auto-renewal, how do?

    I want to congratulate the subscription and delete the auto-renewal, how do?

    To cancel the https://helpx.adobe.com/creative-cloud/help/cancel-membership.html

    - or answer #1 in https://forums.adobe.com/thread/2023066 - includes a link to Chat from Monday to Friday

  • Photoshop closed unexpectedly cs5.1 and delete the file I was working on that

    Photoshop closed unexpectedly cs5.1 and delete the file I was working on that

    Hi jasonb80685354,

    Greetings.

    • Unfortunately, there is nothing that can be done apart from with a record back if you a.

    Concerning

    Rohit

Maybe you are looking for

  • Firefox doesn't ' see css files, other browsers do not recognize css files. Please, help me.

    I created the website. There are currently on the level of development. the link is http://snazhmudinov.byethost7.com/ If you open it with chrome, safari and ie, it works fine. But when I started using Mozilla and Opera, they simply don't see css fil

  • Wireless

    I changed the OS of my computer laptop hp g7000 vista home premium to ultimate and now my wireless is not lit. the switch does not respond, it remains remains orange. the pc is new. any help please?

  • WALKMAN NWZ-E345 cannot update firmware 1.01

    Hello Using Windows 7 64 bit. I have met all the conditions to apply Firmware 1.01 on this page:http://eSupport.Sony.com/CA/Perl/SWU-do... 1 & os_id = 47 When I get to the screen "Digital Software Update Tool (1/3)" with the message "plug in the appl

  • Satellite A300 - how to remove card slot card?

    I have laptop Toshiba companyModel name Satellite A300 {color: #ff0000} {COLOR}I insert the camera card into the card slot multimedia digital multi. But this card was smaller than the slot.While I can't remove it, because it's fine. How can I remove

  • New N600 adapter unable to connect to EA3500 wireless smart router

    I replaced a wireless adapter G from Linksys with a Wireless-N N600 USB adapter on my desktop PC. The new N600 adapter installs OK, the computer can see the EA3500 network router, but the two cannot connect. What's wrong? What should I do? Help! I ne