Requires within-Command Prompt execution:
PS C:\> cmd /c "mklink [-j] <linky new file> <linky old file>"
You can either escape quotes with a backtick (`
):
PS C:\> cmd /c "mklink -j `"C:\Users\andrew\My Documents\.conf`" C:\Users\andrew\src\dotfiles\.conf"
Or even open a direct Command Prompt session:
C:\> mklink [-j] <linky new file> <linky old file>