Run command line in PowerShell
问题 I know there are lots of posts regarding this, but nothing worked for me. I am trying to run this command line in PowerShell: C:/Program Files (x86)/ClamWin/bin/clamd.exe --install I have this in PowerShell: &"C:/Program Files (x86)/ClamWin/bin/clamd.exe --install" But all this does is execute clamd.exe , ignoring the --install parameter How can I get the full command line to run? 回答1: Josef Z's comment on the question provides the solution: & "C:/Program Files (x86)/ClamWin/bin/clamd.exe" -