惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
博客园 - 【当耐特】
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Windows AppData Junction Migrator: Free Up Your C Drive W...
Pratham · 2026-05-08 · via DEV Community

Modern developer tools are storage monsters.

If you use tools like:

  • Cursor
  • VS Code
  • Docker
  • Node.js
  • AI/ML frameworks
  • Electron apps
  • Local LLM tools
  • Low storage SSD system
  • OR Any general apps

…you’ve probably noticed your C: drive slowly dying.

Even when apps are installed on another SSD, Windows still stores huge amounts of cache and configuration data inside:

C:\Users\<user>\AppData

Enter fullscreen mode Exit fullscreen mode

Over time this becomes a problem:

  • SSD fills up
  • Windows updates fail
  • Performance degrades
  • AI model caches explode
  • Docker eats tens of GB
  • Electron apps duplicate Chromium storage everywhere

I got tired of manually moving folders and creating symlinks.

So I built a safer automated PowerShell migration utility.


What This Tool Does

The utility safely moves heavy AppData folders from C: to another drive and replaces them with NTFS junctions.

Applications continue working normally.

Windows still thinks the folders exist on C:.

But the actual data lives elsewhere.


Example

Before:

C:\Users\prath\AppData\Local\Cursor

Enter fullscreen mode Exit fullscreen mode

After:

C:\Users\prath\AppData\Local\Cursor
 -> D:\APPDATA_REDIRECT\Cursor\Local\Cursor

Enter fullscreen mode Exit fullscreen mode

To the app:

  • nothing changed

To your SSD:

  • huge storage recovered

Why NTFS Junctions?

NTFS junctions are filesystem-level redirects built into Windows.

They are:

  • fast
  • transparent
  • stable
  • compatible with most Windows applications

Unlike shortcuts, applications treat junctions as real folders.

This makes them perfect for:

  • caches
  • package managers
  • AI model storage
  • extension folders
  • Electron app data
  • Docker layers

Features

Safe Migration Workflow

The script:

  1. scans folders
  2. verifies paths
  3. creates migration snapshots
  4. transfers data
  5. creates junctions
  6. validates success
  7. rolls back automatically on failure

Detects Existing Migrations

Already migrated folders are detected automatically:

[ALREADY MIGRATED]

[-] [Roaming]
    C:\Users\prath\AppData\Roaming\Cursor
    -> D:\APPDATA_REDIRECT\Cursor\Roaming\Cursor

Enter fullscreen mode Exit fullscreen mode

No duplicate work.

No accidental corruption.


Interactive Folder Selection

You choose exactly what gets migrated:

[1] [Local]
    C:\Users\prath\AppData\Local\Cursor

[2] [Roaming]
    C:\Users\prath\AppData\Roaming\Cursor

Enter fullscreen mode Exit fullscreen mode

Supports:

  • single selection
  • multiple selection
  • migrate all

Uses robocopy

Instead of basic file copy operations, the tool uses:

robocopy /E /MOVE

Enter fullscreen mode Exit fullscreen mode

Why this matters:

  • resilient transfers
  • retries
  • metadata preservation
  • large-folder reliability
  • safer than naive copy/delete

Automatic Rollback System

If anything fails:

  • junction creation
  • move operation
  • verification

…the script automatically restores the original folder.

This is critical when dealing with live application data.


Best Use Cases

This is especially useful for developers and AI engineers.

Cursor / VS Code

Extensions and AI indexes become massive over time.

Move:

AppData\Roaming\Cursor
AppData\Local\Cursor

Enter fullscreen mode Exit fullscreen mode


Docker

Docker Desktop can consume absurd amounts of SSD space.

Move:

AppData\Local\Docker

Enter fullscreen mode Exit fullscreen mode


Node.js

Package managers and caches grow endlessly.

Useful targets:

npm-cache
pnpm-store
yarn cache

Enter fullscreen mode Exit fullscreen mode


AI & ML Tools

Perfect for:

  • model downloads
  • embeddings
  • vector indexes
  • Hugging Face cache
  • Ollama storage
  • CUDA caches

How the Script Works

The workflow is designed to be defensive and recoverable.

Step 1 — Scan

The script searches:

AppData\Local
AppData\Roaming
AppData\LocalLow

Enter fullscreen mode Exit fullscreen mode

and even:

C:\Users\<user>\.<app>

Enter fullscreen mode Exit fullscreen mode


Step 2 — Snapshot

Before migration it records:

  • file count
  • destination
  • size
  • state

This enables recovery logic later.


Step 3 — Move Files

Using:

robocopy /MOVE

Enter fullscreen mode Exit fullscreen mode

The original directory is removed only after successful transfer.


Step 4 — Create Junction

PowerShell creates:

New-Item -ItemType Junction

Enter fullscreen mode Exit fullscreen mode

Applications continue working normally.


Step 5 — Verification

The script checks:

  • junction exists
  • target exists
  • transfer succeeded

If validation fails:

  • rollback begins automatically

Example Migration Output

==================================================
STARTING MIGRATION
==================================================

Migrating:
    C:\Users\prath\AppData\Local\Cursor

[+] Files moved successfully

[+] Junction created
    C:\Users\prath\AppData\Local\Cursor
     ->
    D:\APPDATA_REDIRECT\Cursor\Local\Cursor

Enter fullscreen mode Exit fullscreen mode


Safety Notes

Do NOT migrate:

  • Windows system folders
  • Microsoft core directories
  • active system temp folders
  • random unknown services

Always:

  • close applications first
  • stop Docker if migrating Docker
  • stop AI servers before migration
  • run PowerShell as Administrator

The script already blocks some dangerous paths automatically.


Requirements

  • Windows
  • NTFS filesystem
  • PowerShell
  • Administrator privileges

Usage

Run PowerShell as Administrator:

powershell -ExecutionPolicy Bypass -File migration.ps1

Enter fullscreen mode Exit fullscreen mode


Real-World Impact

On my system this recovered:

  • tens of GB from Cursor
  • massive Docker cache usage
  • AI model storage clutter
  • Electron app duplication

Without breaking a single app.

This approach is especially useful on:

  • laptops with small SSDs
  • dev machines
  • AI workstations
  • dual-drive setups
  • systems using local LLMs

Final Thoughts

Windows AppData management becomes painful once you start working with modern development and AI tooling.

The problem isn’t installation size anymore.

It’s hidden storage growth.

NTFS junctions are one of the cleanest solutions available on Windows, and automating the process safely makes a huge difference.

If you’re constantly fighting low SSD space while doing development, AI, or Docker work — this approach can save your setup.


GitHub Gist Structure

migration.ps1
README.md

Enter fullscreen mode Exit fullscreen mode

Windows AppData Junction Migrator Gist 🔗

License

MIT License