7 lines
173 B
PowerShell
7 lines
173 B
PowerShell
|
[CmdletBinding(SupportsShouldProcess)]param(
|
||
|
[Parameter(Mandatory = $true,Position = 0, ValueFromRemainingArguments = $true)]
|
||
|
$expr
|
||
|
)
|
||
|
|
||
|
. Invoke-ExpressionEx -sudo $expr
|