log-dir wird erstellt wenn nicht vorhanden
This commit is contained in:
parent
0313ac610d
commit
53a67af988
@ -5,20 +5,25 @@
|
||||
# Autor: Patrick Asmus
|
||||
# Web: https://www.media-techport.de
|
||||
# Git-Reposit.: https://git.media-techport.de/scriptos/windows-updater.git
|
||||
# Version: 1.0
|
||||
# Datum: 29.11.2023
|
||||
# Modifikation: Erste Veröffentlichung
|
||||
# Version: 1.1
|
||||
# Datum: 30.11.2023
|
||||
# Modifikation: log-dir wird erstellt wenn nicht vorhanden
|
||||
#####################################################
|
||||
|
||||
# Variablen
|
||||
$LogPfad = "C:\logs\windows-updater.log"
|
||||
$ModulVerzeichnis = Join-Path -Path $PSScriptRoot -ChildPath "Modules"
|
||||
$env:PSModulePath += ";$ModulVerzeichnis"
|
||||
|
||||
# Funktion zur Formatierung des Datums im deutschen Stil
|
||||
function Format-DeutschesDatum ([datetime] $date) {
|
||||
return $date.ToString("dd.MM.yyyy HH:mm:ss")
|
||||
}
|
||||
|
||||
# Variablen
|
||||
$LogPfad = "C:\logs\windows-updater.log"
|
||||
$ModulVerzeichnis = Join-Path -Path $PSScriptRoot -ChildPath "Modules"
|
||||
$env:PSModulePath += ";$ModulVerzeichnis"
|
||||
# Überprüfe, ob der Log-Ordner existiert, andernfalls erstelle ihn
|
||||
if (-not (Test-Path -Path $LogPfad)) {
|
||||
New-Item -ItemType Directory -Path (Split-Path $LogPfad) -Force
|
||||
}
|
||||
|
||||
# Zeitstempel für das Logfile
|
||||
$LogZeitstempel = Format-DeutschesDatum (Get-Date)
|
||||
|
Loading…
Reference in New Issue
Block a user