|
Here are some examples of syntax we have seen in INF files that sometimes don't fit exactly the MS standard and just make the files confusing. We can handle most of these but you could avoid them.
Don't:
[Manufacturer]
MyCompany = MyCompany
Do:
[Manufacturer]
"MyCompany" = MyCompany
or
"MyCompany"
or
%SomeAlias% = MyCompany
Don't do in CopyFiles section (our parser will not handle this case):
[X4517PS2.drv]
x4517_rs.dll=
x4517.dll=
x4517.p2p=
...
or
[X4517PS2.drv]
x4517_rs.dll
x4517.dl_ <<mixing compressed file names with uncompressed names
x4517.p2p
Do:
[X4517PS2.drv]
x4517_rs.dll
x4517.dll
x4517.p2p
...
or
[X4517PS2.drv]
x4517_rs.dll = x4517_rs.dl_
x4517.dll = x4517.dl_
x4517.p2p = x4517.p2_
...
or
[X4517PS2.drv]
x4517_rs.dll, x4517_rs.dl_
x4517.dll , x4517.dl_
x4517.p2p , x4517.p2_
...
for more info. see the [CopyFiles] documentation on the MSDN CD
|