6 lines
93 B
PowerShell
6 lines
93 B
PowerShell
|
[CmdletBinding(SupportsShouldProcess)]param(
|
||
|
[string]$Name
|
||
|
)
|
||
|
|
||
|
[szPackage]::Create($Name)
|