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