5

We are running windows 2008.

We have a windows service called ImportService, that is installed via an MSI package.

A previous version was installed about 3 months ago without problems.

When have now unistalled the previous version. When we try to install the new version we get the following error:

’ImportService’ is not a valid short file name

We then tried to reinstall the old version and got the same error. We therefore think that there has been an update during the summer that has changed the relevant settings.

The question is how do we allow this to be a valid filename?

2 Answers 2

5

You could try opening the .msi in Orca or other .msi packager/editor and look at the 'Shortcut and File table' to verify the ShortName and LongName entries are correct and valid. The ShortName needs to be a valid 8.3 filename.

For example

IMPORT~1.DLL
1
  • 2
    Thanks. The problem was that the default target folder was pointing to a disk that did not exist. We were able to notice that by using Orca. Aug 17, 2009 at 13:15
0

I know that this is pretty old but we came across this problem ourselves. We found in the MSI logfile that the information it retrieved regarding the various install folders (favorites) were pointing to an non-existant network drive.

Check the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders for issues.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .