Delphi 2006-2010 error: "Cannot create file C:\Users\Admin\AppData\Local\Temp\EditorLineEnds.ttr"

DelphiDelphi 2010Delphi 2009Delphi 2007Delphi 2006

Delphi Problem Overview


I am getting an error after installing Delphi 2007 (Edit: This problem occurs in all Delphi versions from 2006 to 2010) that I can not figure out and have never seen before. After restarting I can launch the program without any problems, but if I were to close out of the program and start again it will give me the following error:

"Cannot create file C:\Users\Admin\AppData\Local\Temp\EditorLineEnds.ttr". The process cannont access the file because it is being use by another process."

"System" has a handle on this file that cannot be cleared unless I reboot. I can also correct the problem by renaming the file before I launch the program.

I have tried reinstalling the program with no luck.

Version installed: CodeGear™ Delphi® 2007 for Win32® R2 Version 11.0.2902.10471. Operation System: Windows 7 Pro 64bit

Update 08/14 13:35 EDT Tried the following solutions, but still having the same file lock issue:

  1. Renamed Temp Directory to a directory I know had full security rights. Files would be created in this directory when launching Delphi, but EditorLineEnds.ttr would still get locked by SYSTEM and prevent me from relaunching.
  2. Uninstalled the following security updates KB2982791 and KB2976897, but this did not solve the problem. I have suppressed windows updates for now and will try uninstalling all security patches for 8/13.
  3. Uninstalled Delphi completely and re-installed. Problem still occurs after re-installing everything.

I will try reinstalling Windows from scratch and install Delphi before Windows updates to see if updates are truly the cause. My workaround for now is just renaming EditorLineEnds.ttr before launch Delphi.

Delphi Solutions


Solution 1 - Delphi

There are three solutions to this that I am aware of:

  1. Try uninstalling the Windows security update KB2982791 which was already mentioned by Francisco Caffagni. This solved the issue for me (Windows 8.1 + Delphi 2007) but it might not be such a good idea to uninstall a Windows security update.
  2. Rename the file every time you start Delphi. See below for a simple program that does it for you.
  3. Use Andreas Hausladen's IdeFixpack (Delphi 2007 version, beware that version 4.4 does not work under Windows 8, version 4.3 seems to work), (for later Delphi versions) Note that the editor option Show Lineends will use a different character if you use this fix because the IDE won't load the EditorLineEnds.ttr font any more. (Solution 1 and 2 don't have this drawback, but who uses that option anyway?)

Note: Microsoft withdrew this fix a few days later and issued a new one KB2984615 on 2014-08-27. Unfortunately this did not fix the issue for me. Maybe uninstalling KB2982791 first and then installing KB2984615 might work, but I haven't tried it.

I wrote a simple program, that solves the issue for me:

It uses FindFirstChangeNotification / FindNextChangeNotification and checks whether that file exists and if yes, moves it to a unique subdirectory in %temp%.

Binary download

The source code is available from sourceforge.

Solution 2 - Delphi

This is my bds_start.bat script running Delphi2006 on Win7-64bit system. I customized GabeMeister answer and similar script found in one of the links. I now can restart DelphiIDE without reboot. All ttr temp files are still locked by system so del command may not work. They are deletable once system is rebooted.

It's however impossible to restart Delphi double clicking myproject.dpr project files. I was afraid to install IDEFixPack for D2006 because one of comments did not promise it to work.

bds_start.bat

@REM http://www.danielmagin.de/blog/index.php/2014/08/windows-update-disable-delphi-2007-2010/
@REM http://stackoverflow.com/questions/25295980/delphi-2007-error-cannot-create-file-c-users-admin-appdata-local-temp-editorl
@REM http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/idecommandline_xml.html

@REM del files created by DelphiIDE, may not able to delete but
@REM moving to a new name is possible. Use unique name by timestamp.
del "%temp%\EditorLineEnds*.ttr"
set dt=%date%_%time:~3,2%-%time:~6,2%
rename "%temp%\EditorLineEnds.ttr" "EditorLineEnds_%dt%.ttr"
start "" "C:\Borland\BDS\4.0\Bin\bds.exe" -pDelphi

Running CBuilder change argument to -pCBuilder. Maybe best fix would be to create bds.exe replacement tool, del/move *.ttr file, run and passthrough cmd arguments to the original bds_original.exe file. This should enable *.dpr double click restarts. Or use BdsLauncher.exe which I think is regedit linked to *.dpr extension. Then process list had bds.exe name.

Solution 3 - Delphi

Here is another workaround from http://www.danielmagin.de/blog/index.php/2014/08/windows-update-disable-delphi-2007-2010/

Quote: > you can rollback easy in two ways > > 1: create a batch file with following lines
> wusa /uninstall /kb:2982791
> wusa /uninstall /kb:2970228
> this batch file you run on start up of windows. but with auto update both updates installs every time > > 2: disable the KB's from autoupdate
> after update goto WindowsUpdatesin your system. disable both KB's so on new updates it will be not > installed again

Solution 4 - Delphi

For Delphi 2007, install IDEFixPack 4.4 and add add the following environment variable to the system settings:

IDEFixPack.DisabledPatches=DotNet.GlobalizationSearch

Reboot and it should work. I have 2 desktops with Win 8.1 Pro and its working like a charm!

Solution 5 - Delphi

If you are on windows, I made a batch file shortcut for starting Delphi. Basically it is a batch file that changes the name of EditorLineEnds.ttr to the current date time, moves it to a different sub folder, and then starts Delphi.

Here are the contents of my batch script:

SET HOUR=%time:~0,2%
SET dtStamp9=%date:~-4%%date:~4,2%%date:~7,2%_0%time:~1,1%%time:~3,2%%time:~6,2% 
SET dtStamp24=%date:~-4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%

if "%HOUR:~0,1%" == " " (SET dtStamp=%dtStamp9%) else (SET dtStamp=%dtStamp24%)

if exist "C:\Users\<username here>\AppData\Local\Temp\EditorLineEnds.ttr" (
  echo "Moving EditorLineEnds.ttr"
  MOVE "C:\Users\<username here>\AppData\Local\Temp\EditorLineEnds.ttr" "C:\Users\<username here>\AppData\Local\Temp\ExtraEditorLineEnds\%dtStamp%.ttr"
) else (
  echo "EditorLineEnds.ttr was not found."
)
start "C:\Program Files (x86)\CodeGear\RAD Studio\6.0\bin\bds.exe"

Solution 6 - Delphi

Just to point out that the KB2982791 update has been withdrawn by Microsoft. The reasons cited appear to be problems with font rendering and system crashes and not this specific issue which, on the face of it, does appear to be the fault of Delphi and is merely exacerbated by the update.

The KB article on the Microsoft site has been updated: http://support.microsoft.com/kb/2982791

Specifically these sections are of interest:

> Known issue 2
> Microsoft is investigating behavior in which fonts do > not render correctly after any of the following updates are installed:
> 2982791 MS14-045: Description of the security update for kernel-mode > drivers: August 12, 2014
> 2970228 Update to support the new currency > symbol for the Russian ruble in Windows
> 2975719 August 2014 update > rollup for Windows RT 8.1, Windows 8.1, and Windows Server 2012 R2
> 2975331 August 2014 update rollup for Windows RT, Windows 8, and > Windows Server 2012
> > Status
> Microsoft has removed the download links to > these updates while these issues are being investigated. > > Known issue 3
> Microsoft is investigating behavior in which systems may > crash with a 0x50 Stop error message (bugcheck) after any of the > following updates are installed:
> 2982791 MS14-045: Description of the > security update for kernel-mode drivers: August 12, 2014
> 2970228 > Update to support the new currency symbol for the Russian ruble in > Windows
> 2975719 August 2014 update rollup for Windows RT 8.1, Windows > 8.1, and Windows Server 2012 R2
> 2975331 August 2014 update rollup for Windows RT, Windows 8, and Windows Server 2012
> > This condition may be > persistent and may prevent the system from starting correctly. > > Status
> Microsoft has removed the download links to these updates while > these issues are being investigated.

Solution 7 - Delphi

The problem seems to be with Windows Updates installed on 13th August. I tried uninstalling KB2982791 as suggested by the previous poster, but that did not fix the problem. Uninstalling all Windows updates from 13th August did cure the problem however.

Solution 8 - Delphi

The same for CodeGear Delphi 2009 on Windows 7

Uninstalling following windows update 2982791 2970228 wont help.

Using IDE Fix Pack after that will help.

Solution 9 - Delphi

dzEditorLineEndsFix - Cannot create file %Temp%\EditorLineEnd.ttr

This is a small program that fixes the problem introduced by the Windows update KB2982791 with Delphi 2006 to 2010 that causes the error "Cannot create file %Temp%\EditorLineEnds.ttr". It works by moving the file to its own unique subdirectory whenever it is being created.

Solution 10 - Delphi

I'm using Windows 8, not 8.1

I turned off all Windows updates and yesterday I checked for updates and installed all security updates. Today I have the same problem, but none of the above mentioned update was installed on my notebook. I looked for all of them, but did not find any between installed security updates:

KB2982791, KB2970228, KB2975719, KB2975331

But I found another update KB2993651 and tried to uninstall it, uninstallation process was halted. I reset my comp. Now I cant find this update, and the problem did not solved.

So did not find a another workaround and created the following script, that I run before opening RAD 2010.

cd %temp%
ren EditorLineEnds.ttr EditorLineEnds%RANDOM%.ttr

I'm using the %RANDOM% function, because with the fixed name on second time the renamed file will also be locked and the script will not succeed on rename.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionM SchenkelView Question on Stackoverflow
Solution 1 - DelphidummzeuchView Answer on Stackoverflow
Solution 2 - DelphiWhomeView Answer on Stackoverflow
Solution 3 - DelphiErik VirtelView Answer on Stackoverflow
Solution 4 - DelphiJulio FurquimView Answer on Stackoverflow
Solution 5 - DelphiGabeMeisterView Answer on Stackoverflow
Solution 6 - DelphiToby GrovesView Answer on Stackoverflow
Solution 7 - DelphiPeter GoodlandView Answer on Stackoverflow
Solution 8 - DelphiZamView Answer on Stackoverflow
Solution 9 - DelphionerkayaView Answer on Stackoverflow
Solution 10 - DelphiJeff_AlieffsonView Answer on Stackoverflow