Added go-scripts.ps1

This commit is contained in:
Markus Fleschutz
2021-02-26 14:54:30 +01:00
parent 33f5b5b408
commit afc051be0c
3 changed files with 17 additions and 0 deletions

15
Scripts/go-scripts.ps1 Executable file
View File

@ -0,0 +1,15 @@
#!/bin/powershell
<#
.SYNTAX ./go-scripts.ps1
.DESCRIPTION go to the PowerShell Scripts folder
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
try {
set-location $PSScriptRoot
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}