File paths with spaces in them should be indicated.
Good
installutil "c:\my directory\service1.exe"
poorly
installutil c:\my directory\service1.exe
The OS stops reading the path in the first space, forcing it to look for a file named "c: \ my" that does not exist.
source share