Symlink Windows | Create
mklink [options] "path\to\symlink" "path\to\target"
| Option | Purpose | |--------|---------| | /D | Create a symbolic link to a (folder). | | (none) | Create a symbolic link to a file . | | /H | Create a hard link (not a symlink, rarely used for files). | | /J | Create a directory junction (older type, similar to /D ). | create symlink windows
```powershell New-Item -ItemType SymbolicLink -Path linkname -Target dirname -Force Replace `dirname` with the name of the directory you want to link to, and `linkname` with the name of the symlink. create symlink windows