这在CMD中非常有用:
C:\> powershell.exe write-host -Foreground Red“hello”
但是我在运行此命令时遇到问题:
C:\> powershell.exe [System.Net.Dns] :: GetHostEntry(“192.168.1.100”)
我已经尝试添加-command选项但仍然出错。 提前谢谢。
答案 0 :(得分:1)
尝试使用单引号中的地址
powershell.exe [System.Net.Dns]::GetHostEntry('192.168.1.100')