added tested script

This commit is contained in:
2026-03-27 00:30:51 +01:00
commit ef2c2743ec
3 changed files with 176 additions and 0 deletions

6
test.ps1 Normal file
View File

@@ -0,0 +1,6 @@
$Datum = "26.03.2026"
$parsedDate = [datetime]::ParseExact($Datum, "dd.MM.yyyy", $null)
$OutDate = $parsedDate.ToString("yyyy-MM-dd")
Write-Host $OutDate