Files
management-scripts/Remove-LabTech.ps1
T

5 lines
169 B
PowerShell
Raw Normal View History

2019-11-11 19:22:39 -05:00
$LTGUIDList = @(
"{3f460d4c-d217-46b4-80b6-b5ed50bd7cf5}")
2020-08-14 14:19:37 -04:00
ForEach ($guid in $LTGUIDList) {
2019-11-11 19:22:39 -05:00
Start-Process "msiexec.exe" -ArgumentList "/x ${guid} /qn" -Wait
}