Spaces cause split in path with PowerShell

前端 未结 12 838
广开言路
广开言路 2020-12-02 15:24

I\'m having an issue with powershell when invoking an exe at a path containing spaces.

PS C:\\Windows Services> invoke-expression \"C:\\Windows Services\\My

12条回答
  •  伪装坚强ぢ
    2020-12-02 15:37

    Please use this simple one liner:

    Invoke-Expression "C:\'Program Files (x86)\Microsoft Office\root\Office16'\EXCEL.EXE"
    

提交回复
热议问题