New-Item -Path "LinkPath" -ItemType SymbolicLink -Target "TargetPath" Example:
Here’s a helpful, concise guide to creating symbolic links in Windows 11. A symbolic link (or symlink) is a special file/folder that points to another file or folder – like a shortcut, but applications see it as the real thing. Methods to Create Symbolic Links 1. Using Command Prompt (as Administrator) Open CMD as Admin: Press Win + X → "Terminal (Admin)" or search "cmd" → Run as administrator.
mklink /H "C:\link.txt" "D:\real.txt" Open PowerShell as Admin → Use this syntax:
mklink [options] "LinkPath" "TargetPath"
Create a symbolic link for a file:
mklink /D "C:\Users\YourName\Documents\LinkedFolder" "D:\RealFolder" Create a (file only, not folder):
mklink "C:\Users\YourName\Desktop\file-link.txt" "D:\RealFolder\file.txt" Create a symbolic link for a folder (directory):
New-Item -Path "LinkPath" -ItemType SymbolicLink -Target "TargetPath" Example:
Here’s a helpful, concise guide to creating symbolic links in Windows 11. A symbolic link (or symlink) is a special file/folder that points to another file or folder – like a shortcut, but applications see it as the real thing. Methods to Create Symbolic Links 1. Using Command Prompt (as Administrator) Open CMD as Admin: Press Win + X → "Terminal (Admin)" or search "cmd" → Run as administrator. create symbolic link windows 11
mklink /H "C:\link.txt" "D:\real.txt" Open PowerShell as Admin → Use this syntax: Using Command Prompt (as Administrator) Open CMD as
mklink [options] "LinkPath" "TargetPath" create symbolic link windows 11
Create a symbolic link for a file:
mklink /D "C:\Users\YourName\Documents\LinkedFolder" "D:\RealFolder" Create a (file only, not folder):
mklink "C:\Users\YourName\Desktop\file-link.txt" "D:\RealFolder\file.txt" Create a symbolic link for a folder (directory):