MyFirstBrain/Eingang/Eingang.md
Ralfk 4dbc317f86 iPad 11: 2024-12-14 16:43:42
Affected files:
Eingang/Eingang.md
2024-12-14 16:43:44 +01:00

233 B

Splatting mit Hashtabellen

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

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

Copy-Item @HashArguments

  • ``