Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Tips & Tricks Effects Plugins Missing in Adobe Audition? [Tip - Solution]

juanamm

Uploader
Uploader
Power User
✅ Verified Member
Member
Downloaded
5.7 GB
Uploaded
448.6 GB
Ratio
78.11
Seedbonus
134,973
Upload Count
217 (223)
Member for 5 years
Have you reinstalled Adobe Audition, or did you have it full and when the Medicines is deactivated have all your plugin effects disappeared with their corresponding settings?
It is frustrating right?
Having to do all the work again ....

I have found a very simple solution to support all your Adobe Audition plugin effects.

I have simply created a BAT file, in which I added a few lines at the beginning to copy my backup before opening Adobe Audition.
All you have to do is edit the file paths and voila!
Of course ... every time you make a modification to your effects plugins you would have to save them manually, since the backup overwrites all your effects!

1) You create a file with a .bat extension, if you are going to use a text editor, such as the notepad, you have to change the extension from .txt to .bat, taking care that it doesn't look like this: filename.txt.bat.
Filename.bat should remain
2) Copy the following content and EDIT the routes to your program files and place of your backups.

Code:
@if (@CodeSection == @Batch) @then
@echo off

:-------------------------------------
:: BatchGotAdmin (DO NOT MODIFY admin/root privileges)
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    :echo Requesting administrative privileges...
    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
    pushd "%CD%"
    CD /D "%~dp0"

:--------------------------------------
::::MODIFY FROM HERE!::::
:--------------------------------------

:::: HERE goes path to the BACKUP file ::::
Set "Backup=F:\Backup Adobe Audition CC2019\*.*"


:::: HERE goes path to the ORIGINAL file::::
Set "Original=C:\Users\admin\AppData\Roaming\Adobe\Audition"

XCOPY "%Backup%" "%Original%" /Y/D/E/C/I/R

:::: HERE goes path to the EXECUTABLE Adobe Audition file::::
START "" "C:\Program Files\Adobe\Adobe Audition CC 2019\Adobe Audition CC.exe"
@end

3) Then, you can edit the shortcut of your Adobe Audition by directing it to the .bat file you created.
4) To make the shortcut beautiful, change the icon to Adobe Audition, which you will find in the installation folder of the program.

NOTE:
I have added administrator permissions to the .BAT file.
It is advised not to modify that part, but if you know what you are doing you are free to modify it. :p
If you are not sure what you are going to modify, I advise you to do it from this part:
: --------------------------------------
:::: MODIFY FROM HERE! ::::
: --------------------------------------
 
Top