We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
由于得到的字符串是中文的,所以需要换一种方式去解析
elif sys.platform == "win32": password = run_command(f"netsh wlan show profile name=\"{ssid}\" key=clear") password_line = password.split("\r\n")[32] password = password_line[(password_line.find(":") if password_line.find(":") != -1 else password_line.find(":"))+ 1:].rstrip().lstrip()
另外由于PowerShell输出流编码为GBK,所以不同平台的解码也需要考虑
The text was updated successfully, but these errors were encountered:
能展示一下你怎么运行的吗,我打开setup之后,运行就出问题了。 完全没明白怎么回事
Sorry, something went wrong.
主函数在如图的入口 setup是安装入口
No branches or pull requests
由于得到的字符串是中文的,所以需要换一种方式去解析
另外由于PowerShell输出流编码为GBK,所以不同平台的解码也需要考虑
The text was updated successfully, but these errors were encountered: