Replies: 1 comment
-
P.S. it only happened on iOS17.0(<17.4), it works well on iOS17.4。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I write a script like this:
def start_():
if sys.platform == 'win32':
import pywintunx_pmd3
pywintunx_pmd3.install_wetest_driver()
if name == "main":
start_()
there is a phone(iOS17.0), already connect to the Windows PC,when I run the script, it will make pywintun tunnel immediately.
but after use pyinstaller to make the script to a exe program, after launch, it does not work until I reconnect the phone.
I try to find the reason, so I add many print in the codes, it seems tunneld.py func-handle_new_potential_usb_cdc_ncm_interface_task,
when answers = await browse(REMOTED_SERVICE_NAMES, [ip]), there is no answers because "No addresses found for: {ip}".
But I still donot understand, why it works berfore pyinstaller, and does not work after pyinstaller.
Is there any solution? look forward to your reply. thanks : )
Beta Was this translation helpful? Give feedback.
All reactions