Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Problem installin INF file on Windows Vista

Reply
Thread Tools Display Modes

Problem installin INF file on Windows Vista

 
 
Riccardo Castagna
Guest
Posts: n/a

 
      02-01-2008
Hi all,
I have a custom internal application which needs to install an .inf file.
When I attempted to install this .inf file on Windows Vista by right
clicking and
selecting Install, I received the error message "The INF file you selected
does not support this method of installation".

I write below the code for our inf file:

"[version]
signature="$CHICAGO$"
AdvancedINF=2.0

[Add.Code]
outlctlx.dll=outlctlx.dll

[outlctlx.dll]
file-win32-x86=thiscab
clsid={0006F063-0000-0000-C000-000000000046}
FileVersion=9,0,0,3203
RegisterServer=yes"


Can Anyone help me?

Thanks in advance,
Riccardo Castagna


 
Reply With Quote
 
 
 
 
Bob
Guest
Posts: n/a

 
      02-01-2008
Try this: Open an Administrator Command prompt and type or copy and paste:

C:\> rundll32 syssetup,SetupInfObjectInstallAction DefaultInstall
128.\<filename>.inf


"Riccardo Castagna" <> wrote in message
news:...
> Hi all,
> I have a custom internal application which needs to install an .inf file.
> When I attempted to install this .inf file on Windows Vista by right
> clicking and
> selecting Install, I received the error message "The INF file you selected
> does not support this method of installation".
>
> I write below the code for our inf file:
>
> "[version]
> signature="$CHICAGO$"
> AdvancedINF=2.0
>
> [Add.Code]
> outlctlx.dll=outlctlx.dll
>
> [outlctlx.dll]
> file-win32-x86=thiscab
> clsid={0006F063-0000-0000-C000-000000000046}
> FileVersion=9,0,0,3203
> RegisterServer=yes"
>
>
> Can Anyone help me?
>
> Thanks in advance,
> Riccardo Castagna
>


 
Reply With Quote
 
zachd [MSFT]
Guest
Posts: n/a

 
      02-01-2008

You're using the fairly rare ActiveX code install INF syntax in this INF.
When you right-click install, that goes to the setupapi INF install engine,
which is not the correct methodology. Your INF syntax is intended to be the
best of my knowledge solely for ActiveX control install via the codebase
attribute of the Object tag.

Note that "AdvancedINF" value? That indicates that it's not a
standard/setupapi INF and should not be used in such fashion.

Bob may be spot on here - but since you're using an ActiveX INF syntax, it
likely would not work since his suggestion I think will key off of the
DefaultInstall section (which doesn't exist) and likely will not failover to
the Code Install INF syntax.

I'm not sure what you're doing here. I would strongly suggest rewriting the
INF to use a standard package-on-disk INF syntax as opposed to the
install-from-the-web syntax you are using. You did say that *you* wrote the
code for your INF file. If you want to test it as a CAB install, use it in
the CAB and attempt to install it that way. If you want to run it from
disk, rewrite the INF to not use CAB-based syntax. =)

--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Riccardo Castagna" <> wrote in message
news:...
> Hi all,
> I have a custom internal application which needs to install an .inf file.
> When I attempted to install this .inf file on Windows Vista by right
> clicking and
> selecting Install, I received the error message "The INF file you selected
> does not support this method of installation".
>
> I write below the code for our inf file:
>
> "[version]
> signature="$CHICAGO$"
> AdvancedINF=2.0
>
> [Add.Code]
> outlctlx.dll=outlctlx.dll
>
> [outlctlx.dll]
> file-win32-x86=thiscab
> clsid={0006F063-0000-0000-C000-000000000046}
> FileVersion=9,0,0,3203
> RegisterServer=yes"
>
>
> Can Anyone help me?
>
> Thanks in advance,
> Riccardo Castagna
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Windows has found a problem with this file Anonymous Windows Vista General Discussion 1 11-30-2007 01:13 AM
Installin XP and Vista images on same PC Edge30 Windows Vista Installation 1 06-08-2007 03:39 PM
Windows Vista file sharing to Windows 2000 problem Dan Windows Vista Networking 1 05-23-2007 06:26 PM
.zip file problem in windows vista Visceral Windows Vista General Discussion 4 05-04-2007 04:07 AM
Windows Image File problem Russell Windows Vista Installation 2 07-23-2006 01:27 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59