22 lines
295 B
Markdown
22 lines
295 B
Markdown
---
|
|
created: 2024-06-12T09:29
|
|
updated: 2025-04-10T18:13
|
|
---
|
|
## Splatting mit Hashtabellen
|
|
|
|
```
|
|
Copy-Item -Path "test.txt" -Destination "test2.txt" -WhatIf
|
|
```
|
|
$HashArguments = @{
|
|
Path = "test.txt"
|
|
Destination = "test2.txt"
|
|
WhatIf = $true }
|
|
|
|
Copy-Item @HashArguments
|
|
- ``
|
|
|
|
|
|
|
|
|
|
|