我有一台双处理器机器,我想在两个处理器上通过批处理文件启动可执行文件。
例如: (1)在处理器1上启动Notepad.exe,然后 (2)同时,处理器2上的Notepad.exe
目前,我在我的批处理文件中使用以下内容,因为我的可执行文件“难以启动”并且需要返回才能在启动时运行: 回波|。DoStuff.exe
因此,我想启动它并让它在每个处理器上运行。
感谢您提供的任何反馈。
P.S。我不认为“start”对我有用,因为我需要将返回字符发送到可执行文件,如上所示echo。
P.S.S。这适用于Windows XP解决方案。谢谢。
答案 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)