Uninstall Vineforce Teams Lite | PowerShell on Linux
Uninstall Vineforce Teams Lite on Linux (PowerShell)
Linux | Complete Removal
This guide covers the automated PowerShell cleanup of Vineforce Teams Lite on Linux. The script handles everything: stops running processes, removes application files, and deletes all user data including authentication tokens.
One script handles complete removal:
- Identifies and stops running processes
- Deletes application files from
~/.local/share/.vineforce/public/ - Removes user data including tokens from
~/.local/share/.vineforce/ - Provides confirmation of successful removal
No manual file management is required after the script starts.
Prerequisites for Linux uninstall
| Requirement | Details |
|---|---|
| Operating System | Linux with PowerShell Core installed |
| PowerShell Core | pwsh 7.0+ — must be installed before running the script |
| Existing Installation | Vineforce Teams Lite must be installed via the PowerShell script |
| Privileges | Standard user — no root required |
Important This script will completely remove Vineforce Teams Lite and all associated data. If you want to keep any data, back it up before running this script.
Step 1: Download the Cleanup Script
Download cleanup-vineforce-lite-linux.ps1
Save the script to your Linux machine. For example:
# Save to your home directory
~/cleanup-vineforce-lite-linux.ps1
# Or to a dedicated folder
~/installers/cleanup-vineforce-lite-linux.ps1
Step 2: Run the Script with PowerShell Core
Open a terminal and run the script using pwsh.
-
Navigate to the folder where the script is saved:
cd ~ -
Give the script execute permission:
chmod +x cleanup-vineforce-lite-linux.ps1 -
Run the script:
pwsh ./cleanup-vineforce-lite-linux.ps1
The script will now run automatically — no further input is needed.
What the Script Does (Automatic Steps 3–5)
Once started, the script runs fully automatically. Here is exactly what happens:
Step 3: Stop Running Processes (Automatic)
The script first checks for any running Vineforce Teams Lite processes.
- If processes are found → stops them forcefully
- If no processes are found → continues to file deletion
⏹ Stopping running Vineforce Teams Lite processes...
✅ Stopped process ID 12345
Step 4: Delete Application Files (Automatic)
After stopping processes, the script:
-
Deletes the extracted application folder:
~/.local/share/.vineforce/public/ -
Removes all application binaries and supporting files
Deleted application folder: /home/user/.local/share/.vineforce/public
Step 5: Delete User Data (Automatic)
Finally, the script:
-
Deletes the entire
.vineforcefolder:~/.local/share/.vineforce/ -
Removes all user data including:
- Authentication tokens
- Configuration files
- Local cache data
- Activity logs
Deleted user data folder: /home/user/.local/share/.vineforce
✅ Vineforce Teams Lite cleanup complete.
Step 6: Verify Complete Removal
After the script completes, confirm the application has been fully removed.
Check for Running Processes
Open a new terminal and run:
ps aux | grep -i "Vineforce"
No processes should appear in the output (except for the grep process itself).
Check for Remaining Files
Confirm the folders have been deleted:
ls -la ~/.local/share/ | grep vineforce
This should return no results if cleanup was successful.
Check Application Folder
Try to access the application folder:
ls ~/.local/share/.vineforce/
You should see "No such file or directory" if cleanup was successful.
Troubleshooting
| Problem | Solution |
|---|---|
pwsh: command not found | PowerShell Core is not installed. Install it using your distribution's package manager. |
| Script permission denied | Run chmod +x cleanup-vineforce-lite-linux.ps1 before executing. |
| Process won't stop | Try manually killing the process with kill -9 [PID] then re-run the script. |
| Files not deleted | Check file permissions. You may need to run with elevated privileges: sudo pwsh ./cleanup-vineforce-lite-linux.ps1 |
| Script fails mid-execution | Run the script again. It's safe to run multiple times as it checks for file existence before attempting deletion. |
Manual Removal (Alternative Method)
If the script fails or you prefer to remove files manually:
1. Stop Running Processes
pkill -f "Vineforce Teams Lite"
2. Delete Application Files
rm -rf ~/.local/share/.vineforce/public/
3. Delete User Data
rm -rf ~/.local/share/.vineforce/
4. Verify Removal
ps aux | grep -i "Vineforce"
ls -la ~/.local/share/ | grep vineforce
Best Practices
- Stop the application first before running the cleanup script for a graceful shutdown
- Back up important data before running the cleanup if you need to preserve any information
- Run the script as the same user who installed the application to ensure proper file access
- Check for running processes after cleanup to confirm complete removal
- Reboot if necessary to ensure all processes are terminated and files are unlocked
What's Next?
After successfully uninstalling Vineforce Teams Lite, you can:
- Reinstall the application using the Linux installation guide
- Install on a different machine using the same process
- Contact support if you experienced any issues during uninstallation
Returning to install Vineforce Teams Lite? See our Linux installation guide.