PowerShell: Create File Symbolic Link, Hard Link, Junction
Create a Symbolic Link
New-Item -ItemType SymbolicLink -Path "name" -Value "destinationPath"
Create a Hardlink
New-Item -ItemType HardLink -Path "name" -Value "destinationPath"
Create a Junction
New-Item -ItemType Junction -Path "name" -Value "destinationPath"
PowerShell. Working on Files
- PowerShell: Copy File
- PowerShell: Rename File
- PowerShell: Move File
- PowerShell: Delete File
- PowerShell: Create New File
- PowerShell: Create File Symbolic Link, Hard Link, Junction
- PowerShell: Get File Content
- PowerShell: Join Files
- PowerShell: Compare Files (Show Difference)
- PowerShell: Open File by Default App
- PowerShell: File Date Time