A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize request, please see:
Would like the LTSpice simulator added to help maintain updates.
Which Product is this Request for (New Application Request Only) | Patch My PC |
Hi, we also have a requirement for LT SPICE.
We currently install using a PS Script
$process = "msiexec.exe"
$args = "/i ""$PSScriptRoot\LTspice64.msi"" ALLUSERS=1 AI_INSTALLPERUSER=3 /passive /norestart"
start-process $process -ArgumentList $args -Wait
# Remove LT SPICE 24.0.12 Check for updates- located in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\LTspice\Check for updates.lnk"
Remove-Item 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\LTspice\Check for updates.lnk' -Force -ErrorAction SilentlyContinue
# Remove Uninstall LTspice 24.0.12 - located in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\LTspice\Uninstall LTspice 24.0.9.0.lnk"
Remove-Item 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\LTspice\Uninstall LTspice 24.0.12.0.lnk' -Force -ErrorAction SilentlyContinue
# Remove LTSPICE Desktop Shortcut - located in "C:\Users\Public\Desktop\LTspice.lnk"
Remove-Item "C:\Users\Public\Desktop\LTspice.lnk"
The uninstaller example is as follows
Start-Process $uninstallFile $args -Wait
#calling registry uninstall strings
$process='msiexec.exe'
$arg = '/x {486041B4-482F-4577-BAD5-9EF2FC1DE2F4} /quiet /norestart'
start-process $process -ArgumentList $arg -wait
MSI available from the source (Analog Devices) - https://www.analog.com/en/resources/design-tools-and-calculators/ltspice-simulator.html