Windows上通过命令行参数限制CPU

start /WAIT /affinity 0x1 app.exe (只使用第一个CPU)
start /WAIT /affinity 0x2 app.exe (只使用第二个CPU)
start /WAIT /affinity 0x4 app.exe (只使用第三个CPU)
start /WAIT /affinity 0x8 app.exe (只使用第四个CPU)
start /WAIT /affinity 0x3 app.exe (只使用第12个CPU)
start /WAIT /affinity 0x7 app.exe (只使用第123个CPU)
start /WAIT /affinity 0xf app.exe (只使用第1234个CPU)

上面命令中 “/WAIT” 参数是用来指定运行应用程序时等待应用程序退出,而不是在后台运行。

你可能感兴趣的:(Windows)