惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tor Project blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
G
Google Developers Blog
J
Java Code Geeks
The Cloudflare Blog
Attack and Defense Labs
Attack and Defense Labs
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Cisco Talos Blog
Cisco Talos Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
I
Intezer
Jina AI
Jina AI
T
Tenable Blog
P
Palo Alto Networks Blog
Project Zero
Project Zero
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Hacker News
The Hacker News
F
Full Disclosure
Cloudbric
Cloudbric
量子位
H
Heimdal Security Blog
K
Kaspersky official blog
有赞技术团队
有赞技术团队
罗磊的独立博客
V
Vulnerabilities – Threatpost
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Recent Announcements
Recent Announcements
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
Recorded Future
Recorded Future
Security Archives - TechRepublic
Security Archives - TechRepublic
AI
AI
Webroot Blog
Webroot Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Exploit Database - CXSecurity.com
Apple Machine Learning Research
Apple Machine Learning Research
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hacker News: Front Page
Latest news
Latest news

博客园 - 而且

参考网上例子,在PPT中批量设置m3的3为上标的VBA 分享自己动手弄的基于Rime的新世纪五笔输入法码表 word中几个好用的宏代码(立方米上标、关闭样式自动更新、删除无效样式、表格加粗边框、宋体引号) word中设置首行缩进的快捷键 加密的encrypted.google.com不能访问的解决方法 安装CASS后CAD的快捷键与工具栏恢复方法(含ctrl+z,复制、粘贴等) 在word2010里裁剪cad等图像 解决奇妙的Dell显示器屏幕闪的问题 批量替换excel里的软回车 360,你还能再流氓一点吗? Google Earth批量生成地标文件(kml)的Excel VBA代码 [转]Arcgis制作泰森多边形具体步骤 删除word中的参考文献引用标记 Aquaveo.GMS.v7.1.3.0.x86-REDT 修改的2010版word与excel的菜单,把常用的提取了出来 转一个按月统计的SQL语句 amChart图形控件在asp.net中的使用 [转]如何让Firefox优化得比Chrome更快 [转]免费网站推广
快速设置IP的脚本
而且 · 2014-09-24 · via 博客园 - 而且
 1 @echo off
 2 cls
 3 ::set NAME="本地连接"
 4 set NAME="无线网络连接" 
 5 set IP=192.168.1.55
 6 set MASK=255.255.255.0
 7 set GATEWAY=192.168.1.1
 8 set DNS1=42.120.21.30
 9 set DNS2=114.114.114.114
10 
11 echo.
12 echo 自动获取IP 请按 1
13 echo.
14 echo 手动设置IP 请按 2
15 
16 set /p KEY= [您的选择是:]
17 if %KEY% == 1 goto ONE
18 if %KEY% == 2 goto TWO 
19 
20 :TWO
21 ECHO 您选择了手动设置IP。
22 ECHO. 
23 netsh interface ip set address name=%NAME% static %IP% %MASK% %GATEWAY%
24 netsh interface ip set dns %NAME% %DNS1% index=1
25 netsh interface ip set dns %NAME% %DNS1% index=2
26 echo IP地址已经设定修改完毕,按任意键关闭此窗口
27 pause
28 exit
29 
30 :ONE
31 ECHO 您选择了自动获取IP。
32 ECHO. 
33 netsh interface ip set address name=%NAME% dhcp
34 netsh interface ip set dns %NAME% dhcp
35 
36 ::netsh interface ip add dns %NAME% %DNS1% index=1
37 ::netsh interface ip add dns %NAME% %DNS1% index=2
38 
39 echo IP地址已经设定修改完毕,按任意键关闭此窗口
40 pause
41 exit