8 lines
238 B
PowerShell
8 lines
238 B
PowerShell
$Pfad = "R:\m.kraft\Excel Werte ändern\Test-Skripte\EinstellungenSkriptKonvertierung2.txt"
|
|
|
|
$DateiInhalt = Get-Content $Pfad
|
|
$Zeile1 = $DateiInhalt[0]
|
|
|
|
Clear-Content -Path $Pfad
|
|
Add-Content -Path $Pfad $Zeile1
|
|
Add-Content -Path $Pfad "x" |