Thanks, that's working now! (needs to be run once, as Administrator). To help those who are getting started, on Windows you can also control WaveLab from PowerShell:PG wrote: ↑Thu Nov 02, 2017 9:15 amIf you need to register again, you can run this small .bat file:
Code: Select all
cd /d "C:\Program Files\Steinberg\WaveLab Pro 9.5" "C:\Program Files\Steinberg\WaveLab Pro 9.5\WaveLabPro9_5.exe" /regserver
Code: Select all
# Hello-64.ps1
$app = New-Object -ComObject WaveLabPro9_5.Application
while (!$app.IsReady())
{
Start-Sleep -Milliseconds 100
}
$app.Hello()
$app.Quit()