This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WhatsApp Sync Fix Script Suite | |
# Purpose: Fix WhatsApp syncing issues without losing messages | |
# Compatible with: WhatsApp from Microsoft Store on Windows 10 | |
<# | |
.SYNOPSIS | |
A comprehensive script suite to fix WhatsApp synchronization issues on Windows 10. | |
.DESCRIPTION | |
This script performs several actions to fix WhatsApp syncing problems: | |
- Terminates WhatsApp processes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run as Administrator | |
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
Write-Warning "Please run this script as Administrator" | |
break | |
} | |
Write-Host "Fixing WSL2 and Docker Desktop installation..." -ForegroundColor Green | |
# Enable required Windows features | |
Write-Host "Step 1: Enabling required Windows features..." -ForegroundColor Cyan |