我正在寻找一种方法来创建一个二进制循环日志文件,其中包含一组远程系统上的特定计数器。
我知道这可以使用logman和psexec完成,但我希望找到一个更简洁的使用VB.NET的例子,而不是突破并运行外部程序。
这是我要替换的命令行:
psexec \\%1 logman create counter BlackBox -f bincirc -max 500 -si 00:00:15 -b 01/01/2011 00:00:00 --v -o "C:\PerfLogs\BlackBox" -c "\Cache\*" "\LogicalDisk(*)\*" "\Memory\*" "\Network Interface(*)\*" "\Paging File(*)\*" "\PhysicalDisk(*)\*" "\Process(*)\*" "\Processor(*)\*" "\Redirector\*" "\Server Work Queues(*)\*" "\Server\*" "\System\*" "\Objects\*"
提前感谢您的帮助。