如何为Windows XP的批处理文件设置处理器关联?

时间:2009-05-06 02:21:33

标签: windows-xp batch-file executable dos affinity

我有一台双处理器机器,我想在两个处理器上通过批处理文件启动可执行文件。

例如: (1)在处理器1上启动Notepad.exe,然后 (2)同时,处理器2上的Notepad.exe

目前,我在我的批处理文件中使用以下内容,因为我的可执行文件“难以启动”并且需要返回才能在启动时运行: 回波|。DoStuff.exe

因此,我想启动它并让它在每个处理器上运行。

感谢您提供的任何反馈。

P.S。我不认为“start”对我有用,因为我需要将返回字符发送到可执行文件,如上所示echo。

P.S.S。这适用于Windows XP解决方案。谢谢。

3 个答案:

答案 0 :(得分:20)

start / affinity 1 notepad.exe

start / affinity 2 notepad.exe

(Windows7对启动命令具有亲和力,但XP没有.PSexec可以工作)

答案 1 :(得分:6)

Microsoft的Sysinternal的psexec -a标志可以在Windows XP上设置处理器关联:

Usage: psexec [\\computer[,computer2[,...] | @file][-u user [-p psswd]][-n s][-l][-s|-e][-x][-i
[session]][-c [-f|-v]][-w directory][-d][-][-a n,n,...] cmd [arguments]
     -a         Separate processors on which the application can run with
                commas where 1 is the lowest numbered CPU. For example,
                to run the application on CPU 2 and CPU 4, enter:
                "-a 2,4"

例如:

psexec -a 2 cmd /c "echo.|DoStuff.exe"

答案 2 :(得分:0)

  • This page谈论免费 你可以用来称为XCPU的工具 启动并设置亲和力。然而 内部链接不起作用。也许有点 谷歌搜索可以找到它。

  • 还有一个相似的工具 here名为runfirst。