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

Jus*_*ude 8 executable windows-xp dos batch-file affinity

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

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

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

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

感谢您提供的任何反馈.

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

PSS这适用于Windows XP解决方案.谢谢.

Ric*_*ter 20

start/affinity 1 notepad.exe

start/affinity 2 notepad.exe

(Windows7对启动命令具有亲和力,但XP没有.虽然PSexec有效)

  • 如果您启动了一个与"echo.| DoStuff.exe"具有某种关联性的批处理文件,该怎么办?这会传递cmd实例的亲和力吗? (2认同)

Ano*_*ous 6

微软的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"