Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要npm cache clean --force在我的日常构建中以管理员身份运行该命令。
npm cache clean --force
我目前正在使用命令:
<Exec Command="npm cache clean --force" workingDirectory="$(SolutionRoot)\Angular" />
它失败并出现以下错误:
npm 错误!请尝试以 root/管理员身份再次运行此命令。
这与 MSBuild 无关,也与 Exec 任务无关。您所要做的就是以具有管理员凭据的用户身份登录以使其正常工作。
但首先,首先要问为什么或什么需要管理员凭据?