Python实现一键打开/关闭防火墙

网友投稿 338 2022-08-24


Python实现一键打开/关闭防火墙

利用python一键打开或关闭防火墙

#!/usr/bin/python# -*- coding: GBK -*-"""@author: Roc-xb"""import os# 启用防火墙def open_firewall(): os.system("netsh advfirewall set currentprofile state on") os.system("netsh advfirewall set domainprofile state on") os.system("netsh advfirewall set privateprofile state on") print("防火墙已开启")# 关闭防火墙def close_firewall(): os.system("netsh advfirewall set currentprofile state off") os.system("netsh advfirewall set domainprofile state off") os.system("netsh advfirewall set privateprofile state off") print("防火墙已关闭")


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:python datetime和字符串如何相互转化?(python能做什么)
下一篇:线上dubbo线程池耗尽CyclicBarrier线程屏障异常解决记录
相关文章

 发表评论

暂时没有评论,来抢沙发吧~