Skip to main content

We are getting ready to deploy Bambu Studio to some of our computers. I am testing the deployment on 2 machines. The software installed on one machine but the other just report Failed to install software. Is there a log file on the machine I can look at to find out what the issue is?

# Define variables
$InstallerName = "Bambu_Studio_win_public-v02.02.02. [removed by moderator] .exe"
$ExpectedAppPath = "C:\Program Files\Bambu Studio\bambu-studio.exe"

# Execute installer silently
try {
Start-Process -FilePath $InstallerName -ArgumentList "/S" -Wait -NoNewWindow
}
catch {
Write-Error "Installation failed: $_"
exit 1
}

# Validate installation
Start-Sleep -Seconds 5
if (Test-Path -Path $ExpectedAppPath) {
Write-Output "Installation completed successfully."
} else {
Write-Error "Installation verification failed. Bambu Studio not found at expected location."
exit 1
}

Be the first to reply!