I accidently replaced vst folder. they are all gone pls help me.

Discussion in 'Mac / Hackintosh' started by khkhk6562, Feb 6, 2023.

  1. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    i just made a horrible mistake.

    all of my conponents, vst, vst3 files are gone, i managed to recover them by using Disk Drill.

    But all of my vst files are converted into folders. components files are fine. only vst, vst3 files.

    Is there any way to convert them into vst file? plz help me...
     
  2.  
  3. stephenellis2000

    stephenellis2000 Member

    Joined:
    Mar 7, 2014
    Messages:
    18
    Likes Received:
    8
    Location:
    Stoke on trent (U.K.)
    Have tried renaming the folders with ".dll" at the end of the name ? its a long shot but it may switch the file back .
     
  4. mk_96

    mk_96 Audiosexual

    Joined:
    Dec 31, 2020
    Messages:
    1,095
    Likes Received:
    764
    Location:
    Your heart
    How do you even accomplish something like that? Seriously, maybe tracing back your steps could help.
     
  5. stephenellis2000

    stephenellis2000 Member

    Joined:
    Mar 7, 2014
    Messages:
    18
    Likes Received:
    8
    Location:
    Stoke on trent (U.K.)
    Or System Restore if you have it enabled ? ..
     
  6. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    I changed, System ask me would you change it's format to dll and i said yes. But i's still folder.
     
  7. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    i just restored them:thumbsdown: That's itㅜㅜ
     
  8. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    imac seems don't have that option.
     
  9. clone

    clone Audiosexual

    Joined:
    Feb 5, 2021
    Messages:
    7,328
    Likes Received:
    3,225
    Time Machine. But if you do not backup regularly, it's going to go back further than you probably want.

    I wish their was a way to auto-delete VST format plugins that get accidentally installed. Logic does not make use of them.
     
  10. tzzsmk

    tzzsmk Audiosexual

    Joined:
    Sep 13, 2016
    Messages:
    3,622
    Likes Received:
    2,223
    Location:
    Heart of Europe
    use VST3 instead :rofl:
     
  11. clone

    clone Audiosexual

    Joined:
    Feb 5, 2021
    Messages:
    7,328
    Likes Received:
    3,225
    when you get them back:

    #!/bin/bash

    cd /Library/Audio/Plug-Ins/

    find . -name "*.bundle" -execdir sudo xattr -cr \;
    find . -name "*.VST" -execdir sudo xattr -cr \;
    find . -name "*.vst3" -execdir sudo xattr -cr \;
    find . -name "*.component" -execdir sudo xattr -cr \;
    find . -name "*.dpm" -execdir sudo xattr -cr \;

    find . -name "*.bundle" -execdir sudo codesign -f -s - {} \;
    find . -name "*.VST" -execdir sudo codesign -f -s - {} \;
    find . -name "*.vst3" -execdir sudo codesign -f -s - {} \;
    find . -name "*.component" -execdir sudo codesign -f -s - {} \;
    find . -name "*.dpm" -execdir sudo codesign -f -s - {} \;
     
  12. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    Thx. i found backup files.
     
  13. khkhk6562

    khkhk6562 Newbie

    Joined:
    Jan 9, 2023
    Messages:
    6
    Likes Received:
    1
    what is this for? i didn' try it yet because i found old back up files. is this bring back old files?
     
  14. clone

    clone Audiosexual

    Joined:
    Feb 5, 2021
    Messages:
    7,328
    Likes Received:
    3,225
    it is to re-Codesign everything all at once. After you install all your stuff again, it will make things faster because you will only need to enter your password in Terminal one time; as opposed to once for every plugin/bundle that you install.

    Just copy and paste it into Terminal after you fix this issue. It will scan the entire local HD for plugins and codesign whatever it finds, so that they will work again. Anytime you move a bunch of stuff around, you may/will break existing signatures.
     
Loading...
Loading...