博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows Tips
阅读量:5023 次
发布时间:2019-06-12

本文共 1287 字,大约阅读时间需要 4 分钟。

  • 1. import/export Windows registry through cmd:
    REGEDIT [/L:system] [/R:user] filename1
    REGEDIT [/L:system] [/R:user] /C filename2
    REGEDIT [/L:system] [/R:user] /E filename3 [regpath]
    /L:system Specifies the location of the SYSTEM.DAT file.
    /R:user Specifies the location of the USER.DAT file.
    filename1 Specifies the file(s) to import into the regist
    /C filename2 Specifies the file to create the registry from.
    /E filename3 Specifies the file to export the registry to.
    regpath Specifies the starting registry key to export from.
    (Defaults to exporting the entire registry).
    /S (Windows) Silent - no message on completion.
    Sample 1: export all registry to a file:
    regedit /e c:\test.reg
    Sample 2: import registry from a file:
    regedit c:\test.reg
    2. use Windows Administrative Tools -- Performance
    Sample: export Memory and CPU utilization to a text file;
  • Performance -> Performance Logs and Alerts -> Counter Logs: right click and select "New Log settings..."
  • input name: RecordMemoryProsessorUsage
  • General -> Add Counters...
  • Add Conters: (Performance object: Processor: % Processor Time _Total) (Memory: Available KBytes) click "Add";
  • Log Files: (type: Text File) (End file names with: mmddhhmm);
  • Schedule: Manually.

转载于:https://www.cnblogs.com/markjiao/archive/2009/08/21/1551626.html

你可能感兴趣的文章
微信架构(转)
查看>>
Web项目中的路径问题
查看>>
js随机数的取整
查看>>
关于解析漏洞
查看>>
十大经典预测算法(六)---集成学习(模型融合算法)
查看>>
用php做一个简单的注册用户功能
查看>>
一款基于css3的3D图片翻页切换特效
查看>>
Feign使用Hystrix无效原因及解决方法
查看>>
Sizeof与Strlen的区别与联系
查看>>
hadoop2.2.0_hbase0.96_zookeeper3.4.5全分布式安装文档下载
查看>>
Flutter 贝塞尔曲线切割
查看>>
golang 的编译安装以及supervisord部署
查看>>
easyui源码翻译1.32--Dialog(对话框窗口)
查看>>
阿里架构师,讲述基于微服务的软件架构模式
查看>>
Eclipse导入maven项目时,Pom.xml文件报错处理方法
查看>>
01、JAVA开发准备
查看>>
asp.net mvc 错误处理 - 自定义报错处理,生成错误日志
查看>>
Linux centos ssh
查看>>
R语言之避免for循环示例
查看>>
[转]jQuery 选择器和dom操作
查看>>