Posts

Mount a Folder from a Remote Windows PC over the Internet Using rclone and WinFsp

This guide explains how to securely share a folder from one Windows PC over the Internet and mount it as a normal drive letter on another Windows PC. 🖥️➡️🌍➡️💻 🧰 What You Need Computer Required Software Home PC / Server rclone Remote PC / Client rclone + WinFsp 🗺️ How the Connection Works Home PC / server └── Local folder: E:\Shared\User1 └── rclone serve sftp on internal port 2022 └── Router forwards external port 48222 └── sftp.example.com:48222 └── Remote PC / client └── rclone SFTP remote: my_cloud └── rclone mount + WinFsp └── Drive S: 🔐 Each rclone serve sftp process exposes only the folder or remote supplied to that process. The SFTP user cannot browse above that root. 📚 Contents Home PC — Server Remote PC — Client Enable SFTP Host-Key Validation T...

Recreate Windows installer ISO from USB created by Rufus

Image
Use ImgBurn . Select Create image file from files/folders . Add the USB drive. Open the Advanced → Bootable Disc tab and tick Make Image Bootable . Specify the correct boot image file: BIOS: boot\etfsboot.com UEFI: efi\microsoft\boot\efisys.bin Click Build to create the ISO.

OneDrive client alternative

Synchronize OneDrive with rclone Install and configure rclone . You can follow my previous guide if you haven't already. To make your local folder an exact mirror of your OneDrive folder (download only), use: <path_to_rclone>\rclone.exe sync "<rclone_name>:<remote_folder>" "<local_folder>" -P -v Example: C:\rclone\rclone.exe sync "my_onedrive:My Documents" "C:\Users\default\Documents" -P -v What this command does sync makes the destination (local folder) exactly match the source (OneDrive) . Downloads new files from OneDrive. Updates files that have changed on OneDrive. Deletes local files that were deleted from OneDrive. Nothing is uploaded to OneDrive. To create a one-way mirror from your local folder to OneDrive , reverse the source and destination: <path_to_rclone>\rclone.exe sync "<local_folder>...

Fix OneDrive issue

How to Fix OneDrive Error 0x8004def4 Symptoms Error code 0x8004def4 appears. OneDrive asks you to restart OneDrive and if the problem presist, to restart Windows. Start with a reset. If the problem persists, perform a clean reinstall. Method 1 - Reset OneDrive Open Run ( Win + R ) or Command Prompt and run: %localappdata%\Microsoft\OneDrive\OneDrive.exe /reset Note If resetting does not resolve the issue, continue with the clean reinstall below. Method 2 - Clean Reinstall OneDrive Step 1 - Uninstall OneDrive Open Command Prompt as Administrator . Uninstall OneDrive: %SystemRoot%\System32\OneDriveSetup.exe /uninstall Verify that OneDrive has been removed: dir "%localappdata%\Microsoft\OneDrive" Expected result: OneDrive.exe should no longer exist. If OneDrive.exe is gone but some files remain, terminate any remaining OneDrive processes: taskkill /F /IM OneDrive.exe taskkill /F /IM OneDrive.App.exe taskkill /F /IM FileC...

Install Windows Subsystem For Android

Installing WSA Download MustardChef WSA Builds . Extract the files to C:\Android . Run PowerShell as Administrator . Run the following commands: cd C:\Android Set-ExecutionPolicy Bypass -Scope Process -Force .\Install.ps1 Uninstalling WSA Run PowerShell as Administrator . Run the following commands: wsl --shutdown Get-AppxPackage *WindowsSubsystemForAndroid* | Remove-AppxPackage Remove-Item C:\Android -Recurse -Force WSA Sideloader WSA Sideloader is a simple tool that allows you to easily install APK files on Windows Subsystem for Android (WSA). It also supports installing XAPK , APKM , and APKS files.

Install MySQL Workbench as portable app

Run in CMD or PowerShell: msiexec /a mysql-workbench-community-8.0.xx-winx64.msi /qb TARGETDIR=C:\wbtemp Replace the filename with your actual MSI name. The wbtemp folder will be created automatically. This does NOT install the application. It only extracts the files. Find MySQLWorkbench.exe inside the extracted files and copy the entire folder to a new location, for example: C:\PortableWorkbench Then run: MySQLWorkbench.exe This method should work for most applications distributed as MSI installers.

Compare Local and Remote Branches with external tools

✅ Use VS Code as diff tool (clean setup) Run this once in your terminal (WSL or normal): git config --global diff.tool vscode git config --global difftool.vscode.cmd "code --wait --diff $LOCAL $REMOTE" git config --global difftool.prompt false 🚀 How to use it git difftool origin/UAT...HEAD 👉 Result: Opens each file in side-by-side diff view Clean UI (like VS Code) 🧠 Tip (very useful) If you want just one file : git difftool origin/UAT -- path/to/file.php ✅ Set up WinMerge as diff tool (Windows) Now let’s wire up WinMerge . 🔧 1. Install WinMerge Download & install normally (if not already). Make sure path looks like: C:\Program Files\WinMerge\WinMergeU.exe or C:\WinMerge\WinMergeU.exe 🔧 2. Configure Git Run this in Windows Git Bash (important, not WSL): git config --global diff.tool winmerge git config --global difftool.winmerge.cmd '"/mnt/c/WinMerge/WinMergeU.exe" -e -u -dl Local -dr Remote "...