16 lines
233 B
Markdown
16 lines
233 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
|
|
- ``
|
|
|
|
|
|
|