Skip to content

Commit 35202de

Browse files
committed
Fixed Encoding
1 parent d0b1b3d commit 35202de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

WebServer_Logic.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ $script:listener = $null
1010
$counter = 0
1111

1212
If (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
13-
write-host "Du benötigst Adminrechte um dies auszuführen!"
13+
write-host "Du benötigst Adminrechte um dies auszuführen!"
1414
return
1515
}
1616

@@ -62,7 +62,7 @@ function Send-DirectoryInfo( $dir, $path) {
6262
if( $path ) { $path = "/" + $path }
6363
send-html $(
6464
"Directory: $dir<br><br>"
65-
"Mode Letzte Änderung Größe Name<br>"
65+
"Mode Letzte Änderung Größe Name<br>"
6666
"------ ------------------- -------------- ------------------------<br>"
6767
if( $dir -ne $base ) { "d----- $(''.PadLeft(46))<a href='$path/..'>..</a><br>" }
6868
dir $dir |% {

0 commit comments

Comments
 (0)