Last active
February 6, 2022 16:46
-
-
Save schittli/c1ce4006fbf5d54eb9cebadfcac562a2 to your computer and use it in GitHub Desktop.
LibGist: Update-LibGist-Files.ps1 #PowerShell #LibGist
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
# Aktualisiert alle im aktuellen Dir gefundenen LibGist Files | |
# oder im angegebenen Zielverzeichnis | |
# | |
# Wenn im Zielverzeichnis keine LibGist Files vorhanden sind | |
# dann werden alle heruntergeladen | |
# | |
# | |
# Das Script-Dir aktualisieren | |
# c:\Scripts\PowerShell\-Gist\Update-LibGist-Files.ps1 -UpdateScriptDir | |
# | |
# Das Workingdir aktualisieren | |
# c:\Scripts\PowerShell\-Gist\Update-LibGist-Files.ps1 -UpdateWorkingDir | |
# | |
# Das Zielverzeichnis aktualisieren | |
# c:\Scripts\PowerShell\-Gist\Update-LibGist-Files.ps1 -ZielDir 'c:\Scripts\PowerShell\-Gist\220206 140922-test\' | |
# | |
# | |
# 001, 220127, tom@jig.ch | |
# | |
[CmdletBinding()] | |
Param ( | |
[Parameter(Mandatory, ParameterSetName='ZielDir')] | |
[String]$ZielDir, | |
[Parameter(Mandatory, ParameterSetName='UpdateScriptDir')] | |
[Switch]$UpdateScriptDir, | |
[Parameter(Mandatory, ParameterSetName='UpdateWorkingDir')] | |
[Switch]$UpdateWorkingDir | |
) | |
### Config | |
$ScriptDir = [IO.Path]::GetDirectoryName($MyInvocation.MyCommand.Path) | |
$WorkingDir = (Get-Location).Path | |
If ($UpdateScriptDir) { | |
$ZielDir = $ScriptDir | |
} ElseIf ($UpdateWorkingDir) { | |
$ZielDir = $WorkingDir | |
} Else { | |
If ([String]::IsNullOrEmpty($ZielDir)) { | |
$ZielDir = $ScriptDir | |
Write-Error '-ScriptDir darf nicht leer sein' | |
} Else { | |
$null = New-Item -ItemType Directory -Path $ZielDir -Force -ErrorAction SilentlyContinue | |
} | |
} | |
### Prepare | |
# Scriptname für Use-Gists berechnen | |
$LibGistUseGists_ps1 = 'LibGist-Use-Gists.ps1' | |
$LibGistUseGists_ps1 = Join-Path $ScriptDir $LibGistUseGists_ps1 | |
# Use-Gists einbinden | |
. $LibGistUseGists_ps1 | |
## Main | |
# Alle lokalen LibGist Files aktualisieren | |
$ResUpdate = LibGist-Update-GistFiles -Now -ZielDir $ZielDir -Verbose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment