michelgentile revised this gist 1 month ago. Go to revision
1 file changed, 1 insertion, 1 deletion
symbolic-link.sh
| @@ -1 +1 @@ | |||
| 1 | - | pwsh -command "New-Item -ItemType SymbolicLink -Path 'c:\this\is\a\symbolic\link' -Target 'c:\i\am\the\classic\folder'" | |
| 1 | + | pwsh -command "New-Item -ItemType SymbolicLink -Target 'c:\i\am\the\classic\folder' -Path 'c:\this\is\a\symbolic\link'" | |
michelgentile revised this gist 5 months ago. Go to revision
1 file changed, 1 insertion, 1 deletion
symbolic-link.sh
| @@ -1 +1 @@ | |||
| 1 | - | powershell -command "New-Item -ItemType SymbolicLink -Path 'c:\this\is\a\symbolic\link' -Target 'c:\i\am\the\classic\folder'" | |
| 1 | + | pwsh -command "New-Item -ItemType SymbolicLink -Path 'c:\this\is\a\symbolic\link' -Target 'c:\i\am\the\classic\folder'" | |
michelgentile revised this gist 5 months ago. Go to revision
1 file changed, 1 insertion, 1 deletion
symbolic-link.sh
| @@ -1 +1 @@ | |||
| 1 | - | New-Item -ItemType SymbolicLink -Path "c:\this\is\a\symbolic\link" -Target "c:\i\am\the\classic\folder" | |
| 1 | + | powershell -command "New-Item -ItemType SymbolicLink -Path 'c:\this\is\a\symbolic\link' -Target 'c:\i\am\the\classic\folder'" | |
michelgentile revised this gist 5 months ago. Go to revision
1 file changed, 1 insertion
symbolic-link.sh(file created)
| @@ -0,0 +1 @@ | |||
| 1 | + | New-Item -ItemType SymbolicLink -Path "c:\this\is\a\symbolic\link" -Target "c:\i\am\the\classic\folder" | |