Hello,
I have experienced quiet a few crashes lately most of them (not thinking of dodgy plugins) are due to me forgetting to wipe the temp directory. often when I catch the windows crash and view the details the problem file, it has a “tmp” in it, as I just saw 10 minutes ago.
When I delete everything in the temp directory the song loads up finds after the next reboot.
Is adding an option to cantabile to delete system temp folder contents on shut down a worthy idea?
perhaps an option in tools/option/startup-shutdown?
I would just run Cantabile from a .bat file (something i do anyway for command line arguments), and just add the command to delete the temp folder contents before starting Cantabile.
if any one is interested this is the batch file i figured out.
I put it in the cantabile folder and made desktop icon for it
and put it in the startup folder
@echo off
REM Delete contents of C:\TEMP
del C:\TEMP*.* /Q /F /S
REM Delete contents of C:\Windows\Temp, ignoring errors for files in use
del C:\Windows\Temp*.* /Q /A- /S
REM Delete contents of F:\Temp, ignoring errors for files in use
del F:\Temp*.* /Q /A- /S
echo.
echo Temporary folders cleared and application started.
REM Start your application
start “” “C:\Program Files\Topten Software\Cantabile 4.0\Cantabile.exe”
timeout /t 5 && exit
Turn the PC on, go make a coffee, come back and folders emptied and cantabile ready and waiting.
This is were this came from, firing up my old win 98 PC and typing del /? and reacquainting my self
with command prompt commands/switches. sitting in front in front of a GUI for all these years, i forgot all about it.
I thought I had this sorted it appears not.
No matter what I do cantabile is unpredictable with everything I have done
and opening any file now results is a crash that cantabile can’t catch.
Random times during a song load as well.
The only thing I was able to catch was this windows crash when, I clicked more details, it showed
the text below.
This is not restricted to any particular song file this time, any file I open crashes.
then loading the song a second time over, the same song loads with out a hitch.
Looks like you have another Cantabile session running in background. Or, at least a open process. Try to check this with the Task Manager.
It’s happened to me a few times.
After a several weeks of use since this problem happened, it seems updating to net6 fixed a few issues even though the plugins were much older than net6.
My updated batch file for starting Cantabile has worked quite well since, see below.
I have given it plenty time for windows to do it’s thing, while I am turning everything on, Cantabile is ready an waiting.
While here, does any one use Sonivox plugins? Sonivox sent me an updated AIRReverbx64.DLL file to replace the older one and I can not find this old file anywhere on my system. Perhaps this was a cause for a crash, the DLL is missing the plugins were looking for it and couldn’t find, it so crash and lock up the PC. Does anyone have any ideas where this files goes, all five vsts use the same file it seems.
@echo off
echo Greetings Dr. Falkan!
echo Would you like to play a nice session of Cantabile?
timeout /t 5
cls
echo Get Ready!
timeout /t 5
cls
REM Delete contents of C:\TEMP
del C:\TEMP*.* /Q /F /S
REM Delete contents of C:\Windows\Temp, ignoring errors for files in use
del C:\Windows\Temp*.* /Q /A- /S
REM Delete contents of C:\Users\Admin\AppData\Local\Temp, ignoring errors for files in use
del C:\Users\Admin\AppData\Local\Temp*.* /Q /F /S
REM Delete contents of F:\Temp, ignoring errors for files in use
del F:\Temp*.* /Q /F /S
echo.
echo Temporary folders cleared and Cantabile started.
timeout /t 3
REM Starting Cantabile
start “” “C:\Program Files\Topten Software\Cantabile 4.0\Cantabile.exe”