9 lines
207 B
PowerShell
9 lines
207 B
PowerShell
if (-not $PROFILE) {
|
|
throw
|
|
}
|
|
|
|
function Assert-ProfileLoaded {
|
|
return $true
|
|
}
|
|
|
|
Register-EngineEvent -SourceIdentifier PowerShell.OnIdle -MaxTriggerCount 1 -Action { $global:handledInProfile = $true }
|