-
-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Labels
area-commandsInvolves functions and cmdlets.Involves functions and cmdlets.🌈 improvementExtra sugar and spice.Extra sugar and spice.
Milestone
Description
Use case: Pass data to script for execution.
$props = @{
Path = "License Expiration\Tasks\License Expiration Notification"
Arguments = $to,$from,$subject,$body
}
Invoke-Script @propsContent of the script:
param(
[string[]]$To,
[string]$From,
[string]$Subject,
[string]$Body
)
Send-MailMessage @PSBoundParametersMetadata
Metadata
Assignees
Labels
area-commandsInvolves functions and cmdlets.Involves functions and cmdlets.🌈 improvementExtra sugar and spice.Extra sugar and spice.