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
Try this, simple and without much change:
invoke-expression "'C:\Windows Services\MyService.exe'"
using single quotations at the beginning and end of the path.