PowerShell/Scripts/new-script.ps1

27 lines
596 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-30 12:21:01 +02:00
.SYNOPSIS
new-script.ps1 [<filename>]
.DESCRIPTION
2021-09-24 17:19:49 +02:00
Creates a new PowerShell script
2021-08-30 12:21:01 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./new-script myscript.ps1
2021-08-30 12:21:01 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$filename = "")
try {
if ($filename -eq "" ) { $shortcut = read-host "Enter the new filename" }
copy-item "$PSScriptRoot/../data/template.ps1" "$filename"
"✔️ created new PowerShell script $filename"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-08-30 12:21:01 +02:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-08-30 12:21:01 +02:00
exit 1
}