mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
27 lines
577 B
PowerShell
Executable File
27 lines
577 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
new-script.ps1 [<filename>]
|
|
.DESCRIPTION
|
|
Creates a new PowerShell script.
|
|
.EXAMPLE
|
|
PS> .\new-script.ps1 myscript.ps1
|
|
.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"
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|