MyFirstBrain/Eingang/Eingang.md
2025-03-31 09:39:19 +02:00

295 B

created updated
2024-06-12T09:29 2025-03-31T09:39

Splatting mit Hashtabellen

Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf

$HashArguments = @{ Path = "test.txt" Destination = "test2.txt" WhatIf = $true }

Copy-Item @HashArguments

  • ``