Skip to main content

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:

  1. Identifies and stops running processes
  2. Deletes application files from ~/.local/share/.vineforce/public/
  3. Removes user data including tokens from ~/.local/share/.vineforce/
  4. Provides confirmation of successful removal

No manual file management is required after the script starts.


Prerequisites for Linux uninstall

RequirementDetails
Operating SystemLinux with PowerShell Core installed
PowerShell Corepwsh 7.0+ — must be installed before running the script
Existing InstallationVineforce Teams Lite must be installed via the PowerShell script
PrivilegesStandard user — no root required
warning

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.

  1. Navigate to the folder where the script is saved:

    cd ~
  2. Give the script execute permission:

    chmod +x cleanup-vineforce-lite-linux.ps1
  3. 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:

  1. Deletes the extracted application folder:

    ~/.local/share/.vineforce/public/
  2. 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:

  1. Deletes the entire .vineforce folder:

    ~/.local/share/.vineforce/
  2. 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

ProblemSolution
pwsh: command not foundPowerShell Core is not installed. Install it using your distribution's package manager.
Script permission deniedRun chmod +x cleanup-vineforce-lite-linux.ps1 before executing.
Process won't stopTry manually killing the process with kill -9 [PID] then re-run the script.
Files not deletedCheck file permissions. You may need to run with elevated privileges: sudo pwsh ./cleanup-vineforce-lite-linux.ps1
Script fails mid-executionRun 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

tip
  • 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.