Forum Discussion
How to full uninstall valorant on pc without riot client
Using Windows Built-in Tools like PowerShell is an effective and completely free way to help uninstall Valorant on PC. Here's how you can do it:
How to uninstall Valorant on PC using PowerShell
1. Terminate Valorant and Riot Client Processes
Before uninstalling, ensure all related processes are stopped to prevent errors.
Open PowerShell as Administrator:
Right-click on the Start menu and select Windows PowerShell (Admin).
Run the following commands to terminate processes:
taskkill /F /IM Valorant.exe
taskkill /F /IM RiotClient.exe
taskkill /F /IM RiotClientServices.exe
taskkill /F /IM RiotClientUx.exe
This ensures Valorant and Riot Client processes are fully closed.
2. Uninstall Valorant via PowerShell
To uninstall Valorant, you can use PowerShell to remove the application if it was installed via Windows Installer.
First, list installed programs with:
Get-WmiObject -Class Win32_Product | Select-Object Name
Find Valorant in the list. To uninstall it, run:
$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like "*Valorant*" }
$app.Uninstall()
This command will initiate the uninstall process.
3. Remove Residual Files Manually
After uninstallation, delete leftover files:
Remove-Item -Path "C:\Program Files\Valorant" -Recurse -Force
Remove-Item -Path "$env:LOCALAPPDATA\Riot Games" -Recurse -Force
When it comes to how to uninstall valorant on PC. You can also clear registry entries manually if needed, but be cautious.