2025-03-28 09:35:40 +01:00
|
|
|
---
|
|
|
|
created: 2024-06-12T09:29
|
2025-03-28 22:35:44 +01:00
|
|
|
updated: 2025-03-28T22:34
|
2025-03-28 09:35:40 +01:00
|
|
|
---
|
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:43:44 +01:00
|
|
|
|
2025-03-28 09:35:40 +01:00
|
|
|
|
|
|
|
|