Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Artifact [9d7642d537]

Artifact 9d7642d537a598dc368a29211724a8bddcfa39a7:

  • File tools/wmi/operatingsys.ps1 — part of check-in [6f53bccd86] at 2018-05-16 18:05:56 on branch trunk — WMI Win32_OS (user: mario size: 346)

# api: multitool
# status: beta
# version: 0.1
# title: OperatingSystem
# description: Get Windows details
# type: inline
# category: wmi
# hidden: 0
# key: w10|win|winver
# config: {}
# 
# -> GWMI Win32_OperatingSystem


Param($machine = (Read-Host "Machine"))

Get-WmiObject Win32_OperatingSystem -computer $machine |FL *