分类: Windows

21 篇文章

Windows精简部署相关简易内容
Windows精简部署相关简易内容 使用Windows Kits创建PE 可能遇到以下报错: ERROR: The following processor architecture was not found: amd64. 解决方案: 找到部署和映像工具环境右键 管理员权限运行 卵用没有的相关资料: https://kb.acronis.com/content/68324 https://www.sxj.xyz/make-winpe.html https://777notes.wordpress.com/2013/10/21/winpe-the-following-processor-architecture-was-not-found-amd64/ 找到 部署和映像工具环境 右键 管理员权限运行 copype amd64 C:\User…
双网卡调整优先级
有两种方法,一种是在网卡管理里调整顺序,另一个是通过调整跃点数调整优先级 网卡管理有时候不能显示网卡,所以用跃点数调整 # 使用此命令获取网卡编号 Get-NetIPInterface # 对不同网卡设置不同跃点数,数值越小越优先 Set-NetIPInterface -InterfaceIndex 13 -InterfaceMetric 30 Set-NetIPInterface -InterfaceIndex 4 -InterfaceMetric 10
brave编译打包时dump_syms报错Couldn’t locate EXE or DLL file
brave编译打包时dump_syms报错Couldn't locate EXE or DLL file 原因:brave.exe.exe类似的文件名无效导致无法识别到文件 代码位置: src\third_party\breakpad\breakpad\src\common\windows\pdb_source_line_writer.cc // Look for an EXE or DLL file. const wchar_t* extensions[] = { L"exe", L"dll" }; for (size_t i = 0; i < sizeof(extensions) / sizeof(extensions[0]); i++) { size_t dot_pos = file.fi…
使用Windows Kits创建PE 及精简镜像
使用Windows Kits创建PE 及精简镜像 执行命令报错 ERROR: The following processor architecture was not found: amd64. 找到 部署和映像工具环境 右键 管理员权限运行 使用wimboot启动不要改boot.wim的名字 卵用没有的相关资料: https://kb.acronis.com/content/68324 https://www.sxj.xyz/make-winpe.html https://777notes.wordpress.com/2013/10/21/winpe-the-following-processor-architecture-was-not-found-amd64/ 使用Windows Kits创建PE 找到 部署和映像工具环境 右键 管理…
Windows精简部署相关简易内容
Windows精简部署相关简易内容 使用Windows Kits创建PE 可能遇到以下报错: ERROR: The following processor architecture was not found: amd64. 解决方案: 找到部署和映像工具环境右键 管理员权限运行 卵用没有的相关资料: https://kb.acronis.com/content/68324 https://www.sxj.xyz/make-winpe.html https://777notes.wordpress.com/2013/10/21/winpe-the-following-processor-architecture-was-not-found-amd64/ 找到 部署和映像工具环境 右键 管理员权限运行 copype amd64 C:\User…
Windows 来宾系统提示“安全删除硬件”
找到相关硬件ID,找到对应的注册表,然后在原值的基础上减4 reg.exe add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_8086&DEV_100E&SUBSYS_11001AF4&REV_03\3&13c0b0c5&0&90" /v Capabilities /t REG_DWORD /d 2 /f Important when in the registry editor, look under the Capabilities sextion and check it ends with 6 (ie 0x00000006) if it doesn't the the correspondin…
windows 查看文件夹被那个进程占用
有时候我们关闭程序后,发现之前被程序占用的文件夹还是被占用状态。 因为一些程序逻辑不完善的原因,常规的关闭并没有彻底的杀死进程。 下面给大家介绍下查看占用文件夹进程的方法。 第一步: 在任务管理器性能下面打开资源监视器。 第二步: 在 cpu 页签里的关联句柄处搜索被占用的文件夹路径。然后就能查到占用该文件夹相关的进程,右键结束就 ok 了。