PowerShell/Scripts/new-script.ps1

30 lines
771 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-30 12:21:01 +02:00
.SYNOPSIS
2021-10-04 21:29:23 +02:00
Creates a new PowerShell script file
2021-08-30 12:21:01 +02:00
.DESCRIPTION
2021-10-04 13:31:02 +02:00
Creates a new PowerShell script file (by using template file ../Data/template.ps1).
2021-10-16 16:50:10 +02:00
.PARAMETER filename
Specifies the path to the resulting file
2021-08-30 12:21:01 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./new-script myscript.ps1
2021-10-04 13:31:02 +02:00
created new PowerShell 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" }
2021-10-04 13:31:02 +02:00
copy-item "$PSScriptRoot/../Data/template.ps1" "$filename"
2021-08-30 12:21:01 +02:00
2021-10-04 13:31:02 +02:00
"✔️ 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
}