分类 Windows 中的文章

Windows服务器查看硬件信息命令

windows服务器查看硬件信息命令 查看内存信息 查看内存详细信息 gwmi -class win32_physicalmemory 查看内存列表信息 wmic wmic:root\cli>memorychip get * 查看内存最大容量和插槽数量 gwmi -class win32_physicalmemoryarray wmic wmic:root\cli>path Win32_PhysicalMemoryArray get MemoryDevices 查看CPU信息 查看CPU详细信息 gwmi -class win32_proccessor 查看物理CPU个数 @(gwmi -class win32_processor).count 查……

阅读全文

Windows下使用bat设置http代理

Windows下使用bat设置http代理 设置 @echo off echo 开始设置http代理.......... echo 现在程序将关闭您的浏览器。。。。。 taskkill /f /im iexplore.exe reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "123.123.123.123:1111" /f color 2 echo 已成功设置代理服务……

阅读全文