I have a Windows Installer (VS 2008) project and I want to create a very simple post build event, which just opens the target folder, with the installer selected.
So I've typed the following in the PostBuildEvent field:
explorer.exe /select, $(BuiltOuputPath)
The problem is I get the following error:
ERROR: Error de 'PostBuildEvent' con el código de error '1' 'Error no especificado'
Which translates as something like:
ERROR: 'PostBuildEvent' error with error code '1' 'Unspecified error'
The thing is, the folder opens, with the installer selected and all, but it keeps giving me error.
So, am I doing something wrong?