This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( [switch]$parent, [switch]$child, [switch]$help, [string]$template ); | |
function displayHelp() | |
{ | |
echo "Input is piped in from the command line.`nThis script will process some stuff"; | |
echo "Parameters:`n"; | |
echo "`t-child`tProcess the child nodes"; | |
echo "`t-parent`tProcess the parent nodes"; | |
echo "`nExample:"; | |
echo "`t1,2,3|.\InputTest.ps1 -child -parent"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Author: Tad DeVries | |
# Email: [email protected] | |
# FileName: AddCert.ps1 | |
# | |
# Description: Allow a simple method to sign code. | |
# | |
# Copyright (C) 2010 Tad DeVries | |
# | |
# This program is free software; you can redistribute it and/or |
NewerOlder