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-12-14 16:42:03 +01:00
|
|
|
- ``
|
2024-11-04 15:01:24 +01:00
|
|
|
|
2024-09-14 13:48:12 +02:00
|
|
|
|
2024-12-14 16:42:03 +01:00
|
|
|
Auch hier sollte ich schreiben Können
|
|
|
|
Und ja es geht
|
|
|
|
Nun keine sonderzeichen
|