Unsolved
This post is more than 5 years old
8 Posts
0
11464
April 27th, 2011 10:00
Incorrect CAB. release.dat files missing or specifying incorrect model
I extracted the driver CAB files and imported them in exactly the same way as I have for the other models but I encountered the 'Cannot import this driver as it already exists in this site' issue.
The CAB file seems to be missing a lot of the release.dat files that have been added to other driver packages to circumvent the duplicate driver detection process of ConfigMgr. The release.dat files that are included in some of the folders refer to the 760 model.
The CAB file seems to be missing a lot of the release.dat files that have been added to other driver packages to circumvent the duplicate driver detection process of ConfigMgr. The release.dat files that are included in some of the folders refer to the 760 model.
No Events found!


fusion11
8 Posts
0
April 28th, 2011 05:00
@ECHO OFF
setlocal enabledelayedexpansion
for /f "tokens=*" %%c in ('dir *.inf /a-d /b /s') do (
set abspath=%%~dpc
call set "relpath=%%abspath:%cd%\=%%"
call set "str=%%relpath:\= %%"
for /f "tokens=1 delims=." %%d in ('echo %time%') do echo !date! %%d > "!relpath!release.dat"
echo !str! >> "!relpath!release.dat"
)
DELL-Warren B
1.1K Posts
0
May 2nd, 2011 21:00
Dell recommends that you do not import entire cab files into the ConfigMgr driver store and it adds to the complexity of driver management along with the importing issues.
Create driver packages directly from the extracted cab files and you will see that updating those driver packages becomes a very simple exercise without any importing issues.
I have a video that describes this process here http://www.delltechcenter.com/page/Client+Deployment
fusion11
8 Posts
0
May 3rd, 2011 02:00
DELL-Warren B
1.1K Posts
0
May 6th, 2011 10:00