#region - Windows PowerShell install script - (UserScript)
Opt('TrayIconDebug', 1)
Break(False)

; Installer.
$executable = 'Windows PowerShell 1.0.exe'
If FileExists(@ScriptDir & '\' & $executable) Then
    RunWait('"' & @ScriptDir & '\' & $executable & '" /quiet /norestart /overwriteoem /nobackup')
Else
    Exit 1
EndIf

Exit
#endregion