Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.1 KB

File metadata and controls

25 lines (18 loc) · 1.1 KB

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.