Meteor 1.2.0.2 - 无法在 Windows 10 上 运行 tasklist.exe
Meteor 1.2.0.2 - Couldn't run tasklist.exe on Windows 10
我最近刚刚下载了 meteor 并开始了第一个教程,它让你列了一个待办事项列表。当涉及到 运行 我的代码时,弹出命令提示符并显示此错误:
Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.
C:\Users\Rhys>cd ./desktop/simple-todos
C:\Users\Rhys\Desktop\simple-todos>meteor
[[[[[ C:\Users\Rhys\Desktop\simple-todos ]]]]]
=> Started proxy.
C:\Users\Rhys\AppData\Local\.meteor\packages\meteor-tool.1.9\mt-os.windows.x86
_32\dev_bundle\lib\node_modules\fibers\future.js:278
throw(ex);
^
Error: Couldn't run tasklist.exe: tasklist wasn't found on your system, it usual
ly can be found at C:\Windows\System32\.
at Object.Future.wait (C:\Users\Rhys\AppData\Local\.meteor\packages\meteor-t
ool.1.9\mt-os.windows.x86_32\dev_bundle\lib\node_modules\fibers\future.js:398:
15)
at findMongoPids (C:\tools\runners\run-mongo.js:134:16)
at findMongoAndKillItDead (C:\tools\runners\run-mongo.js:279:14)
at launchOneMongoAndWaitForReadyForInitiate (C:\tools\runners\run-mongo.js:4
00:7)
at launchMongo (C:\tools\runners\run-mongo.js:656:7)
at [object Object]._.extend._startOrRestart (C:\tools\runners\run-mongo.js:7
56:19)
at [object Object]._.extend.start (C:\tools\runners\run-mongo.js:714:10)
at C:\tools\runners\run-all.js:168:26
- - - - -
at C:\tools\runners\run-mongo.js:84:24
at exithandler (child_process.js:654:7)
at ChildProcess.errorhandler (child_process.js:670:5)
at ChildProcess.emit (events.js:95:17)
at Process.ChildProcess._handle.onexit (child_process.js:818:12)
C:\Users\Rhys\Desktop\simple-todos>
我进入了位置C:\Windows\System32,tasklist.exe确实在那里
我尝试了很多网上的东西,但找不到明确的答案。我也试过重新安装程序,但也没用。
如果你能帮助我,我将不胜感激。
谢谢。
确保您的 system32 文件夹存储在 path
下的环境变量中。这个 env 变量告诉 Windows 和后续命令行参数,如果命令(.exe .bat.cmd)不存在于工作目录中,则检查 path
变量中的目录以查看它们是否存在存在于那里。这就是 ipconfig
等命令行命令在任何目录下的工作方式。
我最近刚刚下载了 meteor 并开始了第一个教程,它让你列了一个待办事项列表。当涉及到 运行 我的代码时,弹出命令提示符并显示此错误:
Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.
C:\Users\Rhys>cd ./desktop/simple-todos
C:\Users\Rhys\Desktop\simple-todos>meteor
[[[[[ C:\Users\Rhys\Desktop\simple-todos ]]]]]
=> Started proxy.
C:\Users\Rhys\AppData\Local\.meteor\packages\meteor-tool.1.9\mt-os.windows.x86
_32\dev_bundle\lib\node_modules\fibers\future.js:278
throw(ex);
^
Error: Couldn't run tasklist.exe: tasklist wasn't found on your system, it usual
ly can be found at C:\Windows\System32\.
at Object.Future.wait (C:\Users\Rhys\AppData\Local\.meteor\packages\meteor-t
ool.1.9\mt-os.windows.x86_32\dev_bundle\lib\node_modules\fibers\future.js:398:
15)
at findMongoPids (C:\tools\runners\run-mongo.js:134:16)
at findMongoAndKillItDead (C:\tools\runners\run-mongo.js:279:14)
at launchOneMongoAndWaitForReadyForInitiate (C:\tools\runners\run-mongo.js:4
00:7)
at launchMongo (C:\tools\runners\run-mongo.js:656:7)
at [object Object]._.extend._startOrRestart (C:\tools\runners\run-mongo.js:7
56:19)
at [object Object]._.extend.start (C:\tools\runners\run-mongo.js:714:10)
at C:\tools\runners\run-all.js:168:26
- - - - -
at C:\tools\runners\run-mongo.js:84:24
at exithandler (child_process.js:654:7)
at ChildProcess.errorhandler (child_process.js:670:5)
at ChildProcess.emit (events.js:95:17)
at Process.ChildProcess._handle.onexit (child_process.js:818:12)
C:\Users\Rhys\Desktop\simple-todos>
我进入了位置C:\Windows\System32,tasklist.exe确实在那里
我尝试了很多网上的东西,但找不到明确的答案。我也试过重新安装程序,但也没用。
如果你能帮助我,我将不胜感激。 谢谢。
确保您的 system32 文件夹存储在 path
下的环境变量中。这个 env 变量告诉 Windows 和后续命令行参数,如果命令(.exe .bat.cmd)不存在于工作目录中,则检查 path
变量中的目录以查看它们是否存在存在于那里。这就是 ipconfig
等命令行命令在任何目录下的工作方式。