2024-08-05 15:21:40 +02:00
|
|
|
## Splatting mit Hashtabellen
|
|
|
|
|
|
|
|
```
|
|
|
|
Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf
|
|
|
|
```
|
|
|
|
$HashArguments = @{
|
|
|
|
Path = "test.txt"
|
|
|
|
Destination = "test2.txt"
|
|
|
|
WhatIf = $true }
|
|
|
|
|
|
|
|
Copy-Item @HashArguments
|
2024-08-07 15:22:34 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-11-04 15:01:24 +01:00
|
|
|
|
2024-09-14 13:48:12 +02:00
|
|
|
|