fredley
fredley

Reputation: 33941

Problem with autorun: "F:\ is not a valid Win32 application"

I'm having problems with my autorun.inf:

[autorun]
open=setup.msi

It is placed in the root of my CD, along with setup.msi. When I insert the CD, or open it from explorer, I get the message:

F:\ is not a valid Win32 application

F: is my CD drive. What am I doing wrong?

Upvotes: 2

Views: 2034

Answers (1)

Mr Chris
Mr Chris

Reputation: 1240

Given that you're calling an .msi file and not an executable, perhaps you could try using shellexecute? Something like this:

[autorun]
shellexecute=setup.msi

Upvotes: 2

Related Questions