Pipelines
Use the following in your scripts to get access to the arguments passed to the processor.
$pipelineArgs = Get-Variable -Name pipelineArgs -ValueOnly
Configure any Enable rules to ensure your script only runs when necessary.
Note: Examples included in the following modules
- Enforce user password expiration
$pipelineArgs.Username
$pipelineArgs.Password
$pipelineArgs.Success
$pipelineArgs.StartUrl
Note: Examples included in the following modules
- Automatically show quick info section
$pipelineArgs.Username
$pipelineArgs.StartUrl
Note: Examples included in the following modules
- Unlock user items on logout
Last modified 1yr ago