Skip to content

PowerShell - Sending output to an interactive table in a browser

Notifications You must be signed in to change notification settings

ITS-Unibas/OutTabulatorView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OutTabulatorView

Description

Sending output to an interactive table in a browser

Installing

The easiest way to get OutTabulatorView is using the PSRepository UNIBAS.

PS> Register-PSRepository -Name 'UNIBAS' -SourceLocation 'http://its-psrepository.its.unibas.ch/nuget/UNIBAS/' -InstallationPolicy Trusted -PackageManagementProvider NuGet

Installing the module

You can install it using:

PS> Install-Module -Name OutTabulatorView -Repository UNIBAS -Scope CurrentUser

Updating the module

Once installed from the PSRepository, you can update it using:

PS> Update-Module -Name OutTabulatorView

Removing the module

You can remove it using:

PS> Uninstall-Module -Name OutTabulatorView

Examples

$Data = Get-Process | Select-Object Company, Name, Handles

$ColumnOptions = $(
    New-ColumnOption Company -HeaderFilter select
    New-ColumnOption Name -HeaderFilter input
    New-ColumnOption Handles -HeaderFilter input
)

$Data | Out-TabulatorView -ColumnOptions $ColumnOptions -Layout fitColumns -HeaderFilter
$Data = Get-Process | Select-Object Company, Name, Handles

$ColumnOptions = $(
    New-ColumnOption Company -HeaderFilter select
    New-ColumnOption Name -HeaderFilter input
    New-ColumnOption Handles -HeaderFilter input
)

Out-TabulatorView -Data $Data -ColumnOptions $ColumnOptions -Layout fitData -Path 'C:\Temp\TabulatorView' -Title 'My Processes' -Theme Site

Release History

A detailed release history is contained in the Change Log.

About

PowerShell - Sending output to an interactive table in a browser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PowerShell 100.0%