Trouble burning cd - delete old/temp files?

Hi there - I am having issues burning cds. Burning stops mid way due to an unknown error. I thought in the past, I rectified this by deleting old files, but cannot remember where to find them. Any suggestions on this? I am using the most recent version of iTunes, and have successfully run the cd burner diagnostics, with successful test results. Thanks!

Yes...in iTunes and I also tried burning via Sonic, and got the same result

Similar Messages

  • I want to delete temporary internet files. Notice I did not say clear the cache. That does not work! How can I delete the temp files? Why did you take that feature away? VERY frustrating that you would do that!

    I search for how to delete temp int files and keep coming up with the "clear cache" crap. That is not what I searched for. Clear cache does NOT delete the temp files. Why would you take that feature away??

    The Windows temporary internet files folder isn't used directly by Firefox. Firefox uses its own cache folder and you can see its current usage on the about:cache page via the location bar.
    If anything does show up in the temporary internet files folder then it is likely caused by using MS plugins like the Windows Media Player or Silverlight. You need to clear that folder via IE or the control panel (internet settings).

  • Programatically delete Photoshop Temp##### files

    XP Pro
    CS3
    1GB Ram
    Scripting with JavaScipt
    We run photoshop doing batch processes all week long. Is there anyway to include in the javascript batch process a command to delete the temp file that gets built up. I realize they are normally deleted upon proper program termination but that doesn't always happen.
    Since the name appears somewhat with random numbers I am not sure how I could point directly at that, the constant appears to be "Photoshop Temp" but there is also the numbers at the end of that file name to consider.
    or for another consideration (secondary).
    Can I put at the end of the batch command a line of code to close Photoshop? If so what would that be?
    Thank you,
    Jeff

    Yes, I am talking about scratch files.
    Two parts...
    If the Photoshop application is run all week and we process 1GB of files through there it is going to make a huge scratch file correct? That is also why am curious if I can put a line of code at the end of the script to terminate Photoshop which will delete the scratch file.
    As far as workflow goes in our environment the best way is to take the recommendation of "try67" and use the getFiles() function of the currently logged in user and delete that scratch file if Photoshop will allow me to do that while the Photoshop application is still running.
    Concerning the automatic deletion of scratch files...
    I will take a closer look. I just had to go in delete 4 different scratch files on the day I originally posted this thread (3/7/2009).
    I am going to confirm that the installation is up to date.
    Another question which you will probably be able to answer right away. If I (user "A") am bumped out due to an application crash and someone else (user "B") logs in will it still delete the scratch file upon Photoshop launch?
    Thank you very much for your time in reviewing my question and replying.
    Jeff

  • After generating a .mov, iMovie does not delete the temp files

    When generating a .mov iMovie creates a temp file indicated by a greyed-out icon. It is my understanding that iMovie should delete this temp file when the movie is finally generated. I've been working on a stack of movies lately and I noticed that my available space on the HD was dissappearing at an alarmingly high rate. What is happening for me is that the icon does dissappear, but the file itself remains. I know this 'cuz when I revealed the hidden files I found 1.8 Tb of hidden files sitting on my desktop, each the temp file of a movie I recently generated.
    Any idea what's happening here? When I ran iMovie 6 (?) I didn't see this issue. I'm now on iMovie 11.
    Thanks,
      James

    This seems to have been a problem for a while. My Aperture library is >500GB and I can't store it on the internal drive of my new retina MBP. If I hadn't moved to referenced files already I would have had to do it now.
    When you point iMovie to the drive with the referenced folders you seem to have to use the 'import' option and cannot index the movies in folders lower than the one chosen. I can tolerate the inconvenience of iMovie not being able to use the index of referenced movie files. It's an extra bind that iMovie itself can't index a drive or hierarchy of folders to produce a pick list of video footage.
    One thing I might try is creating a new Aperture library on an external drive and putting all my video files in that. Keeping that as a managed library, I can perhaps take advantage of the Aperture-iMovie link.

  • HT4007 I have just transferred all my raw, jpeg & tiff files into LR4 and using to opportunity to delete old raw files to free up disc space. How can i completely remove a raw file from my msc disc??

    I have just transferred all my raw, jpeg & tiff files into LR4 and using the  opportunity to delete old raw files to free up disc space. How can i completely remove a raw file from my mac disc??

    I'd be careful here: LR references files. It can copy them, like from an SD card to your hard drive, but it doesn't necessarily make duplicates. So when you say you "transferred" those files "into" LR it just means you referenced existing files. And if you delete those they're gone, unless you've made copies. LR does not import files by copying them into a managed library like Aperture does.

  • Ola Hallengren maintenance solution TSQL script not deleting old backup files from my local SQL server

    I have looked on Ola's site (https://ola.hallengren.com/frequently-asked-questions.html) and I did see this:
    DatabaseBackup is not deleting old backup files. What could the problem be?
    Verify that the SQL Server and SQL Server Agent service accounts have full control of the backup directory.
    If that directory is a network share, verify that the SQL Server and SQL Server Agent service accounts have full control of the network share.
    If you are using a proxy account, verify that the account is a member of the sysadmin server role and that it has full control of the backup directory and network share.
    Verify that the file is not locked in the file system; for example, a backup or antivirus software could be locking the file.
    DatabaseBackup has been designed not to delete transaction log backups that are newer than the most recent full or differential backup. This could explain why transaction log backups are not being deleted.
    I followed these instructions and then I right clicked the "sp_delete_backuphistory" job under "SQL Server Agent > Jobs" folder and clicked the "Start job at step ..." option. The job successfully ran, but my .bak backup
    files were still on located on my separate drive partition I use specifically for these backups. 
    The SQL Server and the SQL Server Agent are both using the same AD account. 
    Would any of you SQL gurus out there know how to resolve this?
    Thank you 

    The sp_delete_backuphistory job only deletes the historical info from the backup & restore tables in the msdb database. It does not do anything to the files on disk.
    https://msdn.microsoft.com/en-us/library/ms188328.aspx
    The code to actually purge the backup files from disk is inside the DatabaseBackup stored procedure. It is controlled by using the @CleanupTime parameter for that stored proc. Verify the value for that parameter is low enough to delete your files on disk. The
    value is in hours, and I believe the default is 48 hours. The SQL agent job name usually starts with "DatabaseBackup...".

  • Deleting old flat files inside a SSIS package - SSIS 2005

    Hi,
    after each flat file import, I need to move the acquired file into an history folder and deleting old files of 1 week ago.
    How can I cancel these files, acting inside my SSIS 2005 pckg?
    Many thanks

    While in foreach loop, after a successful import just move the file with the File System Task. Deleting old files is a little trickier, you can also loop thru the files and delete those older than based on name (if the date in the name of the file) or use
    File Properties Task to get file's age to a variable and then use a precedence constraint to decide on deleting or not
    conditionally.
    Your question is general. Many devs did this before, just Bing/Google examples out.
    Arthur My Blog

  • Why does firefox need to be closed to delete cookies & temp files

    Only firefox seems to be this way -- under Windows, when I run a cleaner to delete temp files and cookies, firefox temp files and cookies can't be deleted unless firefox is closed. Can't this be fixed?

    Other browsers don't seem to have his problem. i enjoy be being able to click on one item and having things cleared without fuss or bother. I'd prefer not to auto delete with each close nor do I want to have to manually hunt down with Ctrl+Shift+Del. I'm aware of those options. I was wondering why firefox still worked that way. Definitely a disadvantage for me using it. reminds me of the story:
    A guy goes into a store to buy a suit and the clerk gives him one to try on:
    Guy, "Hey one sleeve is longer than the other."
    Clerk says, "Just shift your shoulders like this and it will look fine, see."
    Guy, "But the pantlegs are uneven."
    Clerk, "Well, just shift your weight onto one hip and, yes, see it looks fine."
    Guy, "But the collar rides low on one side."
    Clerk, "Here, hold that side in place with your chin against your chest like you're holding a violin. Voila!"
    These accommodations go on for bit and the guy, somewhat exasperated but worn down, buys the suit. He wears it out of the store and down the street with his chin clamped to his chest, and one leg sort of dragging and his shoulder cocked, etc.
    Two doctors walk past him and one says, "Oh that poor fellow," and the other says, "Yes, but he sure had a nice looking suit."

  • My Macbook Pro won't auto delete old TM files

    My wife's Macbook pro won't auto delete old files on the TM disc. I think it has to do with using a time capsule. I'd rather stop that and just use the WD Passport but how do I do that?

    Hi..
    My power cord has been trying to go out on me for a few weeks and tonight it just went capooey
    If there's a power issue on your Mac, it's doubtful uninstalling and reinstalling software will make any difference.
    Try Troubleshooting MagSafe adapters
    If the adapter is ok, try Resetting the System Management Controller (SMC)

  • Deleting old backup files

    I backup to an external HD weekly using Backup (the little umbrella.) This 250 GB HD is almost filled. Can I delete older backups to make more room?

    I assume it would depend on how you use backups. If you need to have old versions of your files available to retrieve, then you might want to burn some older backups to dvd before deleting them. I just need one daily and one weekly backup , so I overwrite the backup each time. In case of hardware failure or corruption, I can always retrieve a file from either one day or one week (at most) prior. Files which need to be permanently archived go onto DVD. In that scenario there's no need for multiple backups of the same files at all.

  • Error while deleting the Temp File

    Please see the following results I have the temp_03.dbf in dba_temp Files but have no id in v$temp_space_header. So when I am trying to do the alter tablespace drop file its giving me error. Cant drop the file at this time. Any recommendations will highly be appreciated.
    select tablespace_name, FILE_NAME, FILE_ID from dba_temp_files;
    TABLESPACE_NAME FILE_NAME FILE_ID
    TEMP /crtp01/temp/temp_01.dbf 1
    TEMP /crtp01/temp/temp_02.dbf 2
    TEMP /crtp01/temp/temp_03.dbf 3
    TEMP /crtp01/temp/temp_04.dbf 4
    TEMP /crtp01/temp/temp_05.dbf 5
    TEMP /crtp01/temp/temp_06.dbf 6
    TEMP /crtp01/temp/temp_07.dbf 7
    7 rows selected.
    select TABLESPACE_NAME, FILE_ID from v$temp_space_header;
    TABLESPACE_NAME FILE_ID
    TEMP 6
    TEMP 7
    TEMP 1
    TEMP 2
    TEMP 4
    TEMP 5

    Use this command to delete tempfile.
    Not sure which one you used.
    sample,
    ALTER DATABASE TEMPFILE '/crtp01/temp/temp_07.dbf ' DROP INCLUDING DATAFILES;
    but have no id in v$temp_space_headerThere's ID in v$temp_space_header, right?
    All files under same 'TEMP' temporary tablespace
    select TABLESPACE_NAME, FILE_ID from v$temp_space_header;
    TABLESPACE_NAME FILE_ID
    TEMP 6
    TEMP 7
    TEMP 1
    TEMP 2
    TEMP 4
    TEMP 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Automatic deletion of temp files and Disabling copy to option of originals in DMS

    Dear DMS Experts,
    I have 3 requirements, I have searched the net ,but I am still clueless as to how to do it.
    1) The temporary files created in C;\temp ( or the path we have given in dc20 ) has to be deleted after viewing the documents because of security reasons.
    I heard about enabling the OLE2 option in table TDWX, but I am not sure .
    2) The 'copy to' option of originals has to be disabled in display mode ( CV03N ). Adding further, the 'save as' and 'print option' for MS Office applications ( word, excel ) has to be disabled due to security reasons( I tried with both office integration and %AUTO% )
    3) In product browser view ( using folder structure in CV01N ), I need the users to have 'delete link as ' option disabled as they are not supposed to delete the folders created by admin ( Deleting means deleting from the structure and not from the system) . For this, I have given authorization object for bill of materials for the users and disabled 'delete' checkbox as well as 'Delete from database' checkbox . But still, I am able to delete the folders from the structure.
    Any help would be appreciated.
    Thanks in advance.
    Regards,
    Aravind

    Hi Chandu,
    I am still in the dark regarding Q2 and Q3 . Regarding Q2, I tried disabling the check out options and also try opening it in SAP Script or smartform by populating the entries in the originals to the smartform. But still download option is possible. Hence I have raised to SAP service market place.
    Regarding Q3 , I am trying to use custom authorization object .
    Regards,
    Aravind

  • Deleting Old Scratch Files Immediately

    I've got QMaster working OK with Compressor so far. However, I had started a very large batch render on a Friday, only to come back to find the scratch disk full, with some files done and some not done. After investigating, I found out that the scratch disk (170GB free when I left) was full, and that none of the files were cleaned up after the successful jobs were finished, leaving a bunch of useless files on the drive, and causing the remaining files in the batch to die. I've got about 750GB of video to compress and send to a client, and I'd rather not have to do it one small batch at a time (24GB largest single file).
    So, since this is not a matter of deleting files that are 1 day old (the lowest setting in the QMaster CP AFAIK), is there an easy way to clean out files that are no longer needed after a successful completion?
    (Send a e-mail message on completion that will trigger a shell script? I can do that, but I'd really rather not have to, especially since the computers in the cluster are not my department's machines.)
    p.s. I'd love to be able to avoid QMaster copying the originals to the scratch drive as well, say by sharing the volume, but that doesn't seem avoidable, and since it's automated, I'll live with it

    You can try moving your cluster storage directory to a volume with more space. Where is your destination for the output files? The only time I see files in the cluster storage directory is when a batch failed. Running out of disk space would definitely cause a failure.

  • Delete old application files  after update?

    I downloaded the 3.4.1 update and want to delete the 3.4 application files to free up more space on my laptop's hard drive.  Is this OK?
    Also, what aboout deleting older versions of catalogs?  Thanks.

    When you update, this removes the previous application files and replaces them with new ones. It will leave an empty folder.
    If you no longer use a particular catalog you can delete it, but make sure you really don't want the catalog any more. Installing an update doesn't change the catalog only the application.
    The only time a new catalog is created by LR (rather than by yourself), is when upgrading (rather than updating) from LR 2 to 3 and in this case LR creates a new catalog from your old one, leaving the old one intact. Once you are happy with everything you can remove the LR 2 catalog. Personally I don't. I kept the LR 1 catalog until LR 3 came out and will keep the LR 2 catalog until LR 4 comes out, but I am cautious like that and have loads of hard drives, so space isn't a problem. I just move the old catalog to a backup location...you never know what is going to happen and I may for some completely unknown reason need it some day..

  • How we will delete old recording files in ES2  ?.

    Hi ,
    The error ::
    2010-02-26 16:25:16,811 ERROR [STDERR] Feb 26, 2010 4:25:16 PM com.adobe.idp.auditworkflow.dsc.service.storage.ProcessRecordingStorageImpl manageRecordingFileSizes
    WARNING: deleting oldest recording(s) due to space limitation.
    I  am seeing above error many times in log file. Then googled i got  http://forums.adobe.com/thread/506674?tstart=0 thread. But  i know this one.
    Is there any page in adminui  ,  where i can delete all old recording  at a shot.
    Is there any  way  where i can improve  buffer size of server ?   Becuase some times  i am getting error like below :
    2010-02-26 16:12:12,558 WARN  [com.adobe.idp.dsc.workmanager.workload.policy.MemoryPolicy] Memory threshold exceeded: maximum limit 95.0, current value 106.0
    2010-02-26 16:12:12,559 WARN  [com.adobe.idp.dsc.workmanager.workload.policy.WorkPolicyEvaluationBackgroundTask] Policies violated for statistics on 'adobejb_server1:wm_default'. Cause: com.adobe.idp.dsc.workmanager.workload.policy.WorkPolicyViolationException: Work policy violated. Will attempt to recover in 60000 ms
    Please help me out !!

    Here's the help topic:
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/000375.html#1548929
    Here's how to configure the number of recordings to keep:
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/001482.html#1608026
    scott

Maybe you are looking for