Yeah kinda. You should extract both files into a folder using WinZip or extract.exe in DOS mode and then right click on the inf file which will give you the 'Install' choice in the context menu. You then select that choice which then launches the inf installer engine which reads the inf file and follows it's directions as to where to copy the files to and what registry entries to cook up thusly installing the file. You know you got it when you see the entry to uninstall it in the Add/Remove Programs list.
One of the first tips I gathered from the Internet was how to do all of this using a batch file - from PC Forrest, an ancient guru, anybody remember him?
rem setup.bat from PC Forrest
rem
for %%1 in (*.cab) do extract %%1 /E
choice /c:d /td,1>NUL
for %%2 in (*.inf) do RunDll32 advpack.dll,LaunchINFSection %%2
echo off
cls
make that a batch file and put in the same folder with only the cab file. It would be best if the folder was a simple named one in the TEMP folder so that complications surrounding long file names are not then a problem. Then double click the bat file, also simply named. And then look in the Add/Remove Programs list for the new entry.
I added the time delay via choice.com since I did run into problems where the extraction wasn't completed before the inf tried to launch which of course doesn't work out too good.
More inf file help in the help file from
WillyPad (direct link 392k). Which is a kinda supposed to be a NotePad replacement deal, but has some wild INF file writing helpers like importing .REG files and translating them into inf file lingo ready to use. I use it for inf file work alone, metapad is just too good to not use for the way too weak notepad replacement. And WillyPad is not a real contender either, sorry snoopy. Snoopy used to have a web site, but no longer.