当前位置:   article > 正文

windows UWP 应用使用系统代理_ss-win uwp

ss-win uwp
  1. import os
  2. import winreg as wr
  3. # 参考文档:https://www.cnblogs.com/tangfeibiao/p/3405748.html
  4. BASE_PATH = r"Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Mappings"
  5. # 获得所有程序的 SID
  6. def get_apps_sid():
  7. sid_list = []
  8. with wr.OpenKeyEx(wr.HKEY_CURRENT_USER, BASE_PATH) as key:
  9. max_index = wr.QueryInfoKey(key)[0]
  10. print(key)
  11. for i in range(max_index):
  12. sid_list.append(wr.EnumKey(key, i))
  13. return sid_list
  14. # 开启UWP应用使用代理
  15. def enable_all_uwp_net():
  16. sid_list = get_apps_sid()
  17. for sid in sid_list:
  18. os.system('CheckNetIsolation.exe loopbackexempt -a -p=' + sid)
  19. # 关闭UWP应用使用代理
  20. def disable_all_uwp_net():
  21. sid_list = get_apps_sid()
  22. for sid in sid_list:
  23. os.system('CheckNetIsolation.exe loopbackexempt -d -p=' + sid)
  24. enable_all_uwp_net()

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/139167
推荐阅读
相关标签
  

闽ICP备14008679号