tpl

0.1.0



#POC
function !c {
[CmdletBinding()]
param (
[Parameter (Mandatory = $False, Position=0, ValueFromPipeline = $True)]
[string]$c
)

   process {
       switch ($c) {
           1  { one   }
           2  { two   }
           3  { three }
           4  { four  }
  default { echo "Proof of concept" }
       }
   }
}

function one   {echo


#POC
function !c {
[CmdletBinding()]
param (
[Parameter (Mandatory = $False, Position=0, ValueFromPipeline = $True)]
[string]$c
)

   process {
       switch ($c) {
           1  { one   }
           2  { two   }
           3  { three }
           4  { four  }
  default { echo "Proof of concept" }
       }
   }
}

function one   {echo "command 1"}
function two   {echo "command 2"}
function three {echo "command 3"}
function four  {echo "command 4"}
Show more

Installation Options

Copy and Paste the following command to install this package using PowerShellGet More Info

Install-Module -Name tpl

Copy and Paste the following command to install this package using Microsoft.PowerShell.PSResourceGet More Info

Install-PSResource -Name tpl

You can deploy this package directly to Azure Automation. Note that deploying packages with dependencies will deploy all the dependencies to Azure Automation. Learn More

Manually download the .nupkg file to your system's default download location. Note that the file won't be unpacked, and won't include any dependencies. Learn More

Owners

Copyright

(c) Jakoby. All rights reserved.

Package Details

Author(s)

  • Jakoby

Functions

write-words

Dependencies

This module has no dependencies.

FileList

Version History

Version Downloads Last updated
0.1.0 (current version) 18 8/7/2023
0.0.9 18 12/2/2022
0.0.8 6 12/2/2022
0.0.7 6 12/2/2022
0.0.6 6 12/2/2022
0.0.5 8 12/1/2022
0.0.4 6 12/1/2022
0.0.3 6 12/1/2022
0.0.2 6 12/1/2022
0.0.1 9 11/21/2022
Show more