Jump to content

Silly but possibly useful batch file to start other things that might be needed with Cakewalk.....


Recommended Posts

Silly but possibly useful batch file to start other things that might be needed with Cakewalk.....

This should be edited for your own setup and install directories. This seems useful to me so far, so though I would post. Mine starts REAL (Reduce Audio Latency), the sound control panel, and then Cakewalk. I also added a registry query for the Cakewalk recent files list which shows up in the initial command line. Just a way to one click everything that might be needed.

 

:: Resize the console window.
@echo off
mode 120,120
::
:: Simple batch file to launch Cakewalk and other programs that may be needed.
::
::
@echo off
timeout 1 > nul
::
:: Launch a program.
::
@echo Starting Reduce Audio Latency
start C:\Windows\System32\REAL.exe
timeout 3 > nul
::
:: Launch a program.
::
@echo Starting Windows Sound Properties
start C:\Windows\System32\mmsys.cpl
timeout 3 > nul
::
:: Launch a program.
::
@echo Starting Cakewalk
start A:\Cakewalk\"Cakewalk Core"\Cakewalk.exe
timeout 1 > nul
::
:: Show registry recent file list for Cakewalk.
::
reg query "HKEY_CURRENT_USER\Software\Cakewalk Music Software\Cakewalk\Core\Recent File List" /s
::
timeout 1 > nul
::
:: Wait for user confirm to close console.
::
@echo Batch file is now complete.
@echo Press any key to close this console.
timeout 1 > nul
pause > nul
::

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...