How to find the project that contains a sample (Ableton Live)

Discussion in 'Live' started by Demloc, Apr 28, 2026 at 11:03 AM.

  1. Demloc

    Demloc Rock Star

    Joined:
    Mar 10, 2020
    Messages:
    437
    Likes Received:
    404
    Today I learned that if you open a powershell/Terminal and paste this


    $sample = "YOUR SAMPLE.EXTENSION"
    $ruta = "FULL DIRECTION OF PROJECTS FOLDER "

    Get-ChildItem -Path $ruta -Filter *.als -Recurse | ForEach-Object {
    $als = $_.FullName
    try {
    $fs = [System.IO.File]::OpenRead($als)
    $gz = New-Object System.IO.Compression.GzipStream($fs, [System.IO.Compression.CompressionMode]::Decompress)
    $sr = New-Object System.IO.StreamReader($gz)
    $xml = $sr.ReadToEnd()
    $sr.Close(); $gz.Close(); $fs.Close()
    if ($xml -match [regex]::Escape($sample)) { Write-Host $als }
    } catch { }
    }


    It will find you all the .als projects that uses that sample.
    Very useful if you are like a chaotic person like me and you have just a fucking folder for hundreds of projects all sharing the same samples/recorded/processed/cropped XD.


    Cheers!
     
  2.  
Loading...
Similar Threads - find project contains Forum Date
Moved VST Plugins Folder and Moved it back Now Projects cant find any of my VSTS! Live Apr 9, 2026
Find which library was used in a missing kontakt project? Samplers, Synthesizers Sep 21, 2023
How can I find kontakt library in an old project? Kontakt May 3, 2019
[solved] Can't find the VST Software Thursday at 10:08 PM
Where to find raw oscillator files? Samplers, Synthesizers Apr 20, 2026
Loading...