Posts by Calebe Rodrigues Eller • 1 point
1 post
-
0
votes3
answers5733
viewsQ: How to save the output result of a Python script to a txt file?
Script showing saved wifi passwords: import subprocess data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8', errors="backslashreplace").split('\n') profiles =…