我有一台双处理器机器,我想在两个处理器上通过批处理文件启动可执行文件.
例如:
(1)在处理器1上启动Notepad.exe,然后
(2)同时,处理器2上的Notepad.exe
目前,我在我的批处理文件中使用以下内容,因为我的可执行文件“难以启动”并且需要返回才能在启动时运行:
回声|.DoStuff.exe
因此,我想启动它并让它在每个处理器上运行.
感谢您提供的任何反馈.
附:我不认为“start”对我有用,因为我需要将返回字符发送到可执行文件,如上所示echo.
P.S.S.这适用于Windows XP解决方案.谢谢.
微软的Sysinternal的
psexec -a标志可以在Windows XP上设置处理器关联:
原文链接:https://www.f2er.com/windows/371934.htmlUsage: 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"