多平台统一管理软件接口,如何实现多平台统一管理软件接口
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小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~