-1
在生成的html文件中,ping結果的輸出被破壞。我想從$ ping中顯示結果。powershell html輸出中的文本Clobber
$ ping = Ping 192.168.1.1
Convertto-html -body $ ping |出文件ping.html
在生成的html文件中,ping結果的輸出被破壞。我想從$ ping中顯示結果。powershell html輸出中的文本Clobber
$ ping = Ping 192.168.1.1
Convertto-html -body $ ping |出文件ping.html
這是一個小黑客十歲上下,但試試這個:
$ping = (ping 192.168.1.1) -replace "<", "<"
(ConvertTo-Html -Body $ping) -replace "<body>", "<body>`n<pre>" `
-replace "<table>", "</pre>`n<table>" | Out-File "ping.html"
我不能重現此。你能展示實際與預期的產出嗎? – neontapir