Crash of the Library when doing a search
My logos crashes when I go to my Library and do a search for instance Psalm5270.LogosCrash.txt
Comments
-
Welcome to the forum. Try to run Logos as an Administrator to see if it temporarily can fix the problem until someone can provide a solution.
System.TypeInitializationException: De type-initialisatiefunctie voor Logos.OwnerDrawn.OwnerDrawnCursors heeft een uitzondering veroorzaakt.
System.UnauthorizedAccessException: Toegang tot het pad C:\Users\drsjh\AppData\Local\Temp\WPF\sx5wpcdu.kel is geweigerd.0 -
Also try looking at https://support.logos.com/hc/en-us/articles/360008551751-Error-Writing-to-File and see if that helps.
Option 2 there is to temporarily run as Administrator - as Pieter suggested - but it is important to try and address the underlying file protection issues (Option 1)
Graham
0 -
I provide the following for those that want to fix this problem and doesn't mind to use some tech solutions.
Here is a registry file that will put a "Take Ownership" option on your popup-menu for windows explorer. This file just write an entry into your registry to make it possible to take ownership as administrator from the popup-menu in windows explorer.
- Just run the InstallTakeOwnership.reg file. If you want to remove it from the registry you can run RemoveTakeOwnership.reg file. But you can leave it there for future use.
Can it be trusted
I always use this registry entry to fix file access problems for a lot of other problems when reinstalling windows. Be advised, if you want to change your registry on your own you need to know what you are doing. This quick solution I provide can be trusted, but I need to put a disclaimer out by saying that you use it on your own risk. I created these two files in 2007, so it will be compatible with all windows versions since 2007. I think since then I used Vista, Win 7, Win 8 and Win 10.
For clarity on what the files does for those that are suspicious.
The Content of the InstallTakeOwnership.reg file is:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\runas]
@="Take Ownership"
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\*\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
[HKEY_CLASSES_ROOT\Directory\shell\runas]
@="Take Ownership"
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"The Content of the RemoveTakeOwnership.reg file is:
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\*\shell\runas]
[-HKEY_CLASSES_ROOT\Directory\shell\runas]Sample Instructions
- First extract the zip file.
- Then right-click on the InstallTakeOwnership.reg in the extracted folder an click merge.
- Accept the prompts that follow
- Go to the Folder you want to Take Ownership
- Right-Click on the folder
- Click Take Ownership and accept the prompts on the screen
If you do not Remove the Take Ownership from the registry using the RemoveTakeOwnership.reg file, the option will always be available on your menu for future use.
0