When we run the following command in PowerShell:
get-date | sc C:\temp\date.log
it creates date.log file with current date.
But if we run the same via CMD:
powershell get-date | sc C:\temp\date.log
It complains:
ERROR: Unrecognized command
DESCRIPTION: SC is a command line program used for communicating with the Service Control Manager and services. USAGE: sc <server> [command] [service name] <option1> <option2>...
Apparently, CMD confuses pipeline meant for POSH, with its own.
Can anyone point me how to make it run via CMD?
Thanks in anticipation.
powershell -Command " & {Get-Date | sc c:\tmp\date.log}"
CMD and PowerShell
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With