windows - ejecutable - Powershell ''no se reconoce como un comando interno o externo, un programa operable o un archivo por lotes
ping no se reconoce como un comando interno o externo (1)
Parece que te estás perdiendo una variable de entorno.
Agregue esto a su variable de entorno Path
:
%SYSTEMROOT%/System32/WindowsPowerShell/v1.0/
O
Cambie su guión a esto:
%SYSTEMROOT%/System32/WindowsPowerShell/v1.0/powershell.exe -Command "your command"
Estoy intentando ejecutar un comando PowerShell para ejecutar un archivo PowerShell como un evento posterior a la compilación en Visual Studio 2013, pero estoy recibiendo
Powershell'' is not recognized as an internal or external command, operable program or batch file
error en la ventana de salida y
Powershell -Command exited with code 9009 error
Mensaje de error completo:
''Powershell'' is not recognized as an internal or external command,
10> operable program or batch file.
10>C:/Program Files (x86)/MSBuild/12.0/bin/Microsoft.Common.CurrentVersion.targets(4429,5): error MSB3073: The command "echo "C:/dev/tfs/Main/Shared/AggregationComponents/GenerateSchema.cmd"
10>C:/Program Files (x86)/MSBuild/12.0/bin/Microsoft.Common.CurrentVersion.targets(4429,5): error MSB3073: call "C:/dev/tfs/Main/Shared/AggregationComponents/GenerateSchema.cmd"
10>C:/Program Files (x86)/MSBuild/12.0/bin/Microsoft.Common.CurrentVersion.targets(4429,5): error MSB3073: echo "Move the PhoenixData namespace schema suffixing it"
10>C:/Program Files (x86)/MSBuild/12.0/bin/Microsoft.Common.CurrentVersion.targets(4429,5): error MSB3073: Powershell -Command "C:/dev/tfs/Main/Shared/AggregationComponents/MoveAndRenameXsds.ps1 ''C:/dev/tfs/Main/Shared/AggregationComponents/bin/Debug/' ''C:/dev/tfs/Main/Shared/AggregationComponents/../PublishedAnalyticsXsds'' ''.Aggregation''"" exited with code 9009.
========== Rebuild All: 8 succeeded, 1 failed, 1 skipped ==========