如何在 cmd 参数中转义单引号?

如何在 cmd 参数中转义单引号?

我想使用 netsh 在 cmd 中显示网络配置文件,其中netsh wlan show profile name="JohnDoe's iPhone"。如您所见,此 WiFi 名称中有一个撇号。该命令响应Profile "JohnDoe's iPhone" is not found on the system.。所有没有撇号的配置文件都完美显示。我相信问题是由撇号引起的。

当输入时netsh wlan show profile,它会提供所有配置文件的完整列表,并且表格条目是

All User Profile     : JohnDoe's iPhone

有什么办法可以解决这个问题吗?谢谢!

答案1

我今天遇到了这个问题。看来 Apple 在 SSID 中使用了 unicode 撇号 U+2019。用 替换'解决了这个问题。

尝试netsh wlan show profile name="JohnDoe’s iPhone"

相关内容