MyFirstBrain/Eingang/Eingang.md
2024-11-23 10:48:08 +01:00

18 lines
234 B
Markdown

## Splatting mit Hashtabellen
```
Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf
```
$HashArguments = @{
Path = "test.txt"
Destination = "test2.txt"
WhatIf = $true }
Copy-Item @HashArguments
```