Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Deployment
Run Fleet the way that fits your team.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Deployment
Run Fleet the way that fits your team.
Extend Fleet
Integrate your favorite tools with Fleet.
Windows | 4.48.95
Slack is a team communication and collaboration software for modern workplaces.
To install Slack on your work computer:
Don’t see Slack or the Fleet Desktop icon? Send a link to this page to your IT team.
Run the following script in Powershell to uninstall Slack:
$product_code = "{375222C9-D431-4FE1-8E12-643EBFE0754C}"
$timeoutSeconds = 300 # 5 minute timeout
# Fleet uninstalls app using product code that's extracted on upload
$process = Start-Process msiexec -ArgumentList @("/quiet", "/x", $product_code, "/norestart") -PassThru
# Wait for process with timeout
$completed = $process.WaitForExit($timeoutSeconds * 1000)
if (-not $completed) {
Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue
Exit 1603 # ERROR_UNINSTALL_FAILURE
}
# Check exit code and output result
if ($process.ExitCode -eq 0) {
Write-Output "Exit 0"
Exit 0
} else {
Write-Output "Exit $($process.ExitCode)"
Exit $process.ExitCode
}
Run this query in Fleet to find old versions of Slack across all your computers:
SELECT 1 FROM programs WHERE name = 'Slack' AND version <= '4.48.95';