标签:md5 nbsp type 开机 windows 策略 msi a+b 内容
msinfo32(可能不是每个系统都有)
systeminfo(基本每个windows 系统都有)
msconfig
计算文件的 sha1: certutil -hashfile filepath sha1
计算文件的 MD5: certutil -hashfile filepath MD5
计算文件的 sha256: certutil -hashfile filepath sha256
Fsutil file createnew a.txt 1024 //构造一个1024个字节的文件
copy /b A+B C //将A,B文件按照二进制合并成C文件(合并后C文件的大小为 A+B)
netsh firewall set opmode disable
type filename //读取文件内容并输出
type filename > hehe.txt //读取文件内容并输出到 hehe.txt 中 也可以这样写(type filename 1 > hehe.txt)
type filename 2> nul // 读取文件内容, 输出执行错误信息到nul(表示不显示)
先保留凭证后登录
cmdkey /generic:termsrv/192.168.0.1 /user:win7x86 /pass:123456
mstsc /v:192.168.0.1
services.msc
11.组策略
gpedit.msc
标签:md5 nbsp type 开机 windows 策略 msi a+b 内容
原文地址:https://www.cnblogs.com/gtea/p/13051117.html