: New-Item -ItemType SymbolicLink -Path "C:\LinkPath" -Target "C:\TargetPath"
The underlying file system, , is what makes this possible. NTFS supports "Reparse Points"—a mechanism that tells the OS "stop looking here, go look there." When you use a Symlink, you are manipulating the Master File Table (MFT) to reference a reparse point. create symbolic link windows 11
mklink /D "C:\Games\SaveData" "D:\CloudBackup\SaveData" . 2. Create a Symbolic Link via PowerShell Windows Terminal and PowerShell use the New-Item cmdlet. Using Command Prompt to Create a Symbolic Link on Windows create symbolic link windows 11
Example:
New-Item -Path "LinkPath" -ItemType SymbolicLink -Target "TargetPath" create symbolic link windows 11