mirror of
https://github.com/chylex/Hardcore-Ender-Expansion-2.git
synced 2024-11-23 16:42:47 +01:00
6 lines
262 B
PowerShell
6 lines
262 B
PowerShell
Param([Parameter(Mandatory = $True, Position = 1)][string] $filePath)
|
|
Add-Type -AssemblyName System.Windows.Forms
|
|
$files = new-object System.Collections.Specialized.StringCollection
|
|
$files.Add($filePath)
|
|
[System.Windows.Forms.Clipboard]::SetFileDropList($files)
|