Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ branch:  ClickyColoury


Artifact [f59eeaa2f2]

Artifact f59eeaa2f2e9813d5d4a6a7dedaec751f4e792e2:

  • File tools/extras/powershell_info.ps1 — part of check-in [1e6e96ed49] at 2017-09-23 07:26:17 on branch trunk — Add -f Yellow (user: mario size: 557)

# api: multitool
# version: 0.0
# title: PowerShell info
# description: runtime details
# type: inline
# category: misc
# hidden: 1
# icon: powershell
# config: -
#
# Some PSHost details

Write-Host -f Yellow "❏ Host"
($Host |FL | out-string).trim() |write-host

Write-Host -f Yellow "❏ VerTbl"
($PSVersionTable |Ft | out-string).trim() |write-host

Write-Host -f Yellow "❏ [Accels]"
([psobject].Assembly.GetType("System.Management.Automation.TypeAccelerators")::get | fT -auto -wrap | out-string -width 60).trim() | write-host