diff --git a/app/assets/remote_scripts/windows.ps1 b/app/assets/remote_scripts/windows.ps1 index 9647d2e5..f548caea 100644 --- a/app/assets/remote_scripts/windows.ps1 +++ b/app/assets/remote_scripts/windows.ps1 @@ -62,6 +62,7 @@ function get_escaped_file_content ($file){ $content = $content.replace('\', '\\') $content = $content -replace "`r`n", '\n' $content = $content -replace "`n", '\n' + $content = $content -replace "`t", '\t' $content = $content.replace('"', '\"') return $content }