Skip to content

Instantly share code, notes, and snippets.

View minanagehsalalma's full-sized avatar
🍒
Meow ?

mina nageh salama minanagehsalalma

🍒
Meow ?
  • no i won't tell you
View GitHub Profile
@minanagehsalalma
minanagehsalalma / WhatsAppSyncFix.ps1
Created April 11, 2025 01:16
WhatsApp Syncing Chats 1% Stuck fix with no data loss nor resetting (a full troubleshooting suite)
# 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
@minanagehsalalma
minanagehsalalma / DockerFix.ps1
Created April 6, 2025 23:11
Fix Docker Engine stopped WSL error powershell script
# 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