我面临一个奇怪的问题。我在Windows 7中有一个批处理文件,当我通过双击运行该文件时,它运行但访问错误有限,因为它驻留在程序文件中。
当我右键单击该文件并提供“以管理员身份运行时,批处理文件将丢失以下错误。
'startServer.bat' is not recognized as an internal or external command,
operable program or batch file.
'wsadmin.bat' is not recognized as an internal or external command,
operable program or batch file.
'stopServer.bat' is not recognized as an internal or external command,
operable program or batch file.
Press any key to continue . . . `
下面是我的批处理文件,请检查并点亮它。
@echo off
call startServer.bat server1
call wsadmin.bat -f configldap.py
call stopServer.bat server1
pause`
答案 0 :(得分:0)
由于此评论似乎足以作为答案:
管理员帐户可能与普通用户有不同的PATH环境变量,请尝试调用批处理文件/path/to/startServer.bat等