/TAK

Tom's Admin Kit - a collection of functions and snippets

Primary LanguagePowerShellMIT LicenseMIT

Build status PowerShell Gallery

TAK

Tom's Admin Kit - a collection of functions and snippets

CI

I'm using appveyor.com to automatically run tests and, upon success, deploy the module to the PowerShell Gallery.

Install

This module can be installed from the PowerShell Gallery, using: Install-Module -Name TAK

Populate FunctionsToExport

The following snippet could be used to update the modules manifest file.

Import-Module .\Git\TAK\TAK\tak.psm1
Import-Module .\Git\TAK\TAK\tak.exchange.psm1
$fn = Get-Command -Module tak | Where-Object CommandType -eq function | Where-Object HelpUri | Select-Object -ExpandProperty name
$fn += Get-Command -Module tak.exchange | Where-Object CommandType -eq function | Where-Object HelpUri | Select-Object -ExpandProperty name
"@("+($fn -join ",")+")"

TAK is released under MIT license.