Trying to run the following command in php to run powershell command...
the following works:
$output = shell_exec(escapeshellcmd(\'powershell get-ser
'powershell get-service | group-object'
will be interpreted as
What you want is for powershell to see get-service | group-object
as it's argument, so you have to enclose that in quotes, like this.
$output = shell_exec('powershell "get-service | group-object"');
I'll take a stab although I have no PHP experience whatsoever.
I have a feeling that what's happening is your pipe character is being interpreted by the command shell instead of PowerShell. For example if you ran the following at the cmd.exe command prompt:
dir /s | more
The output of the first command gets piped to the input of the second just like you'd expect in PowerShell.
Escaping the string will only make the problem worse because you're transforming the string in such a way that PowerShell has no idea how to unescape it.
Try enclosing your original PowerShell expression in a quote like the following:
$output = shell_exec('powershell.exe -c "get-service | group-object"');
Or preferably, it looks like there's an exec() function that does not go through the command shell. This might work better.
$output = exec('powershell.exe -c get-service | group-object');