netsh

netsh advfirewall firewall to control Windows Firewall behavior in Windows Server 2008

不打扰是莪最后的温柔 提交于 2020-01-29 01:23:03
How to use the "netsh advfirewall firewall" context instead of the "netsh firewall" context to control Windows Firewall behavior in Windows Server 2008 and in Windows Vista Applies to: Windows Server 2008 EnterpriseWindows Server 2008 DatacenterWindows Server 2008 Standard More INTRODUCTION The netsh advfirewall firewall command-line context is available in Windows Server 2008 and in Windows Vista. This context provides the functionality for controlling Windows Firewall behavior that was provided by the netsh firewall context in earlier Windows operating systems. This context also provides

用电脑开热点启用电脑无线配置

时光毁灭记忆、已成空白 提交于 2020-01-27 02:52:14
不用安装360也能用电脑给手机开热点,给多电脑开热点无线。 适用场景:3个人开会,只有一根网线,使用电脑开热点,就能解决 启动无线服务 无线自动配置服务(wlansvc)没有运行。无法启动承载网络。 https://jingyan.baidu.com/album/ed15cb1b6eb06a1be269816a.html?picindex=3 无线网络创建 1.选择一台笔记本做 AP ,用该电脑连接网线,能够成功上网. 注解:无线AP(Access Point):即无线接入点,它用于无线网络的无线交换机,也是无线网络的核心。无线AP是移动计算机用户进入有线网络的接入点,主要用于宽带家庭、大楼内部以及园区内部,可以覆盖几十米至上百米。无线AP(又称会话点或存取桥接器)是一个包含很广的名称,它不仅包含单纯性无线接入点(无线AP),同样也是无线路由器(含无线网关、无线网桥)等类设备的统称。 2.启动无线连接共享 网络连接->右键属性->选择允许共享 无线网络用户和账号名设置 1.cmd->以管理员身份运行 2.输入netsh wlan set hostednetwork mode=allow ssid=tandelin key=tandelin1234 ,创建成功.无线网络已建立好名为tandelin,访问无线网络的密码为tandelin1234

netsh 设置 IP 地址

拈花ヽ惹草 提交于 2020-01-26 00:27:36
\>netsh interface ip set addr 以太网 static 192.168.32.37 255.255.255.0 192.168.32.1 \>ipconfig Windows IP 配置 以太网适配器 以太网: 连接特定的 DNS 后缀 . . . . . . . : 本地链接 IPv6 地址. . . . . . . . : fe80::d520:e664:b23e:e887%15 IPv4 地址 . . . . . . . . . . . . : 192.168.32.37 子网掩码 . . . . . . . . . . . . : 255.255.255.0 默认网关. . . . . . . . . . . . . : 192.168.32.1 \>netsh interface ip set dns 以太网 static 202.96.69.38 \>netsh interface ip add dns 以太网 219.148.204.66 \>netsh interface ip show dns 接口 "以太网" 的配置 静态配置的 DNS 服务器: 202.96.69.38 219.148.204.66 用哪个前缀注册: 只是主要 接口 "Loopback Pseudo-Interface 1" 的配置 静态配置的 DNS 服务器: 无

netsh acl setting (need alternative method - registry settings?)

南楼画角 提交于 2020-01-24 14:33:27
问题 I am using inno-setup to install a program that needs to unblock port 4326 on Win7 (permit acl access) so that GET operations can be done over HTTP to port 4326. I have a powershell script that an admin can run to unblock the port. But this does not work as an inno-setup [run] command (because the local machine usually disables scripts from running). (i.e powershell.exe -nowait & script.ps1) Is there some registry keys in the target machine that I can set that will unblock the port? That I

Linux命令

删除回忆录丶 提交于 2020-01-11 00:13:23
Linux(CentOS7)安装zip、unzip命令:yum install -y unzip zip wget命令:用来从指定的URL下载文件 service命令:控制系统服务的实用工具,它以启动、停止、重新启动和关闭系统服务,还可以显示所有系统服务的当前状态 ifconfig命令被用于配置和显示Linux内核中网络接口的网络参数 netsh命令实现端口转发 (映射) netsh interface portproxy show all 查看所有端口转发代理参数 单ip转发: 将本地的8080端口的数据转发至192.168.56.101上的8080端口,也可以转发到其他外网ip 添加:netsh interface portproxy add v4tov4 listenport=8080 connectaddress=192.168.56.101 connectport=8080 删除:netsh interface portproxy delete v4tov4 listenport=8080 双ip 多ip: 添加一个IPV4到IPV4的端口映射,也就是指定一个ip 添加:netsh interface portproxy add v4tov4 listenaddress=192.168.193.1 listenport=701 connectaddress=192.168

Windows小技巧 -- 已连接wifi密码查看

笑着哭i 提交于 2020-01-04 01:01:28
部分情况,想和朋友分享连接过的Wifi密码,可能不知道怎么来查询,下面记录几种查询已连接的Wifi密码方法,具体如下: 方式一 :无线属性页面查询 快捷键 Win + R ,打开运行窗口,输入 ncpa.cpl 快速打开 网络连接 页面,找到 WIFI 右键状态,弹出的 WLAN 状态 窗口点击 无线属性 , 在弹出的 xxx 无线网络属性 窗口中,点击 安全 选项卡勾选 显示字符 就可以在 网络安全秘钥 后看到当前wifi的密码,如下图: 方式二 :netsh命令查询 netsh (Network Shell) 是一个windows系统本身提供的功能强大的网络配置命令行工具,它允许从本地或远程显示或修改当前正在运行的计算机的网络配置。 管理员模式运行命令行窗口,输入 netsh wlan show profiles 可以查看本地记录的所有wifi配置(连接过的wifi) 想查看某个wifi的密码,则可以通过命令 netsh wlan show profile name='查询的wifi名称' key=clear (管理员模式),此处以名称为 1011 的wifi为例 到此,就通过netsh命令完成了对指定wifi的密码查询了。如想一次性获取本机连接过的所有wifi密码,可以通过命令 netsh wlan show profile * key=clear 或 for /f

How to set SQUID Proxy authentication using netsh?

微笑、不失礼 提交于 2020-01-03 05:48:07
问题 I am behind a SQUID proxy. I need to set proxy settings for cmd. I'm using win7 so proxycfg cannot be used. I used netsh like this: netsh winhttp import proxy source=ie Internet explorer had my proxy settings already. Now the problem is that my proxy requires username/password authentication. I do not know how to set the username and password in command prompt. Any help would be greatly appreciated. Thanks in advance, 回答1: Here is the solution my friend Install CC Proxy. This software created

pycharm修改windows的IP

吃可爱长大的小学妹 提交于 2019-12-26 15:45:27
一、桌面选中pycharm点击右键-属性-高级 二、实现代码 import os,random command ='netsh interface ip set address "以太网" static 192.168.1.{} 255.255.255.0 192.168.1.1 1'.format(random.randint(100, 200)) dns_command = 'netsh interface ip set dns "以太网" static 192.168.1.1 primary' # 方法一(执行成功打印结果为0,执行失败打印结果为1) a = os.system(command) b = os.system(dns_command) print(a) print(b) # 方法二 获取控制台输出的内容,那就用os.popen的方法了,popen返回的是一个file对象,跟open打开文件一样操作了,r是以读的方式打开 # (打印错误信息,无错误信息代表执行成功) f = os.popen(command,'r') d = f.read() print(d) f.close()  dns可以不选择修改 将方法封装为自己需要的方法: def change_ip(ip4,dns=False): # 此方法仅针对修改最后一位参数 command ='netsh

批处理-配置网卡

家住魔仙堡 提交于 2019-12-26 12:26:26
固定IP @echo off REM 声明采用UTF-8编码 chcp 65001 REM netsh interface ip show interfaces REM ipconfig/all set Nic = 以太网 REM set /p Nic = 输入网卡名称: set Addr = 192.168.1.1 set Mask = 255.255.255.0 set Gway = 192.168.1.0 REM set Dns1 = 10.15.0.1 REM set Dns2 = 10.100.1.2 REM set Wins1 = 10.15.0.1 REM set Wins2 = 10.100.1.2 echo ------------------------------------------------------ echo 正在进行IP设置,请稍等 echo. IP地址 = %Addr% echo. 子网掩码 = %Mask% echo. 默认网关 = %Gway% netsh interface ipv4 set address name = %Nic% source = static addr = %Addr% mask = %Mask% gateway = %Gway% gwmetric = 0 rem echo. 首选DNS = %Dns1% rem

Setting existing SSL certificate on an IIS website which uses hostheader

匆匆过客 提交于 2019-12-25 08:01:10
问题 The idea is to automate linking an SSL certificate to a website in IIS 7 or above. All the websites in a server use same IP address and same default port. So they are all differentiated by their host header names. I could achieve this manually without any issue. But while automating there is issue. When done manually, the ssl configuation entries in http.sys are recorded as HostNameport TestName:443, not as ipport xx.yy.z.a:443. So I wanted to mimic the same manual steps for automation to