Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ branch:  ClickyColoury


Check-in [a32c0c2d92]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add remote log query script
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a32c0c2d924a0548d9fab2d035c5ff8dae329459
User & Date: mario 2017-09-23 02:40:24
Context
2017-09-23
02:40
Swap directories check-in: aabc73de02 user: mario tags: trunk
02:40
Add remote log query script check-in: a32c0c2d92 user: mario tags: trunk
00:58
Disable $cfg dump on startup. check-in: 1f7ecbc194 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added data/combobox.logname.txt.













>
>
>
>
>
>
1
2
3
4
5
6
Application
System
Security
Windows PowerShell
Setup
Microsoft-Windows-WindowsUpdateClient/Operational

Added tools/powershell/log_application.ps1.













































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# api: multitool
# version: 0.1
# title: EventLog Application
# description: Get-EventLog
# type: inline
# category: powershell
# icon: events
# param: machine,logname
# key: i22|eventlog
# hidden: 0
# 
# Get-EventLog -computer $machine
#  ❏ prints -Newest 20 entres
#  ❏ use [LogName] combobox to switch to Security or System logs

Param(
    $machine = (Read-Host "Computer"),
    $logname = (Read-Host "LogName")
)

Get-EventLog -Computer $machine -Newest 20 -LogName $logname | FT Index,Time,Message -Auto -Wrap