Start powershell en tant qu'administrateur
Vous devez know 1) the path to target of the link 2) path to location where you want the link 3) the name you want to use to refer to the link.
PS C:\> new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>
Example: Si vous êtes in c:\drivers\AMD and you want to link in f:\driver\olddrivers, then you would go
PS C:\> new-item -itemtype symboliclink -path . -name OldDrivers -value f:\driver\olddrivers
And wind up with a symlink path of c:\driver\AMD\OldDrivers