Millsy79 Posted March 27, 2024 Posted March 27, 2024 Hi I'm trying to avoid having to manually install pack for Ableton I have been using the following script # Specify the path to the Ableton program folder $AbletonProgramPath = "C:\ProgramData\Ableton\Live 10 Suite\Program\Ableton Live 10 Suite.exe" # Check if the folder exists if (Test-Path -Path $AbletonProgramPath -PathType Container) { # Folder exists, so run the .alp file $AlpFilePath = "\\Servername\Abbleton$\Packs\OrchestralBrass_r46420_v9.0.alp" Start-Process -FilePath $AlpFilePath Write-Host "Running OrchestralBrass_r46420_v9.0.alp from network location." } else { Write-Host "Ableton program folder does not exist." } This script work fine if I run it directly from a device I want the pack installed, so I uploaded the script to Intune and applied it to a test group with a PC that has Ableton installed but its deleting the folder structure within C:\Programdata\Ableton\Live 10 Suite.
IKWeb Posted March 27, 2024 Posted March 27, 2024 Hey You could add the script into Intune - Devices > Scripts and Remediations. Then add it to - Platform Scripts. But if it was me - I would package the packs into an intunewim and deploy it to the devices that need it.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now