Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ branch:  ClickyColoury


Artifact [6cd62acdc2]

Artifact 6cd62acdc2bbcd80e5a0ae563b9c69ff552fb0fd:

  • File tools/info/service.ps1 — part of check-in [06df8ad9bd] at 2017-09-22 23:34:42 on branch trunk — Derived from current base version 0.8.0; some sample and generic scripts added. (user: mario size: 360)

# api: multitool
# version: 0.2
# title: Services
# description: list services on remote machine
# type: inline
# category: info
# hidden: 0
# key: i8|service|services
# config: {}
# 
# list services on remote machine


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

Get-Service -computer $machine | Select-Object status,name,description | FT