Difference between revisions of "HP drivers"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 1: Line 1:
 
Most HP drivers (audio, graphics, keyboard, network, input devices etc.) come as InstallShield packages. The installer usually have name like <code>sp<number>.exe</code>, for example, <code>sp32556.exe</code> is the name for Broadcom network drivers.
 
Most HP drivers (audio, graphics, keyboard, network, input devices etc.) come as InstallShield packages. The installer usually have name like <code>sp<number>.exe</code>, for example, <code>sp32556.exe</code> is the name for Broadcom network drivers.
  
Sometimes, it will install silently with a /s switch, i.e.:
+
HP installers save its data into C:\SWSetup.
  
sp32566.exe /s
 
  
 +
Sometimes, they will install silently with a /s switch, i.e.:
  
Unfortunately, in most cases manual intervention is needed (i.e., using other InstallShield switches, recording the installation etc.), so there is no golden rule here.
+
%SOFTWARE%\nx6325\SP35445\setup.exe /s
 +
 
 +
 
 +
Sometimes, setup.iss is provided with InstallShield package, i.e.:
 +
 
 +
%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss
 +
 
 +
Unfortunately, sometimes manual intervention is needed (i.e., using other InstallShield switches, recording the installation etc.), so there is no golden rule here.
  
Most HP installers save its data into C:\SWSetup.
 
  
 
Sometimes, after starting the installer, you will find an extracted MSI package in <code>%TEMP%</code>.
 
Sometimes, after starting the installer, you will find an extracted MSI package in <code>%TEMP%</code>.
  
 +
 +
== Silent installation of nx6325 laptop drivers ==
 +
 +
<source lang="xml">
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
 +
<packages>
 +
 +
    <package
 +
        id="KB888111"
 +
        name="KB888111"
 +
        revision="1"
 +
        priority="90">
 +
 +
        <check type="uninstall" condition="exists" path="High Definition Audio Driver Package - KB888111" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\kb888111xpsp2.exe /quiet' />
 +
 +
        <upgrade cmd='%SOFTWARE%\nx6325\kb888111xpsp2.exe /quiet' />
 +
 +
    <remove cmd='C:\WINDOWS\$NtUninstallKB888111WXPSP2$\spuninst\spuninst.exe /quiet' />
 +
 +
    </package>
 +
 +
 +
    <package
 +
        id="nx6325_audio"
 +
        name="nx6325 audio driver"
 +
        revision="1"
 +
        priority="9">
 +
 +
        <check type="uninstall" condition="exists" path="SoundMAX" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
 +
        <upgrade cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
 +
 +
    </package>
 +
 +
    <package
 +
        id="nx6325_buttons"
 +
        name="HP Quick Launch Buttons 6.30 J1"
 +
        revision="1"
 +
        priority="9">
 +
 +
        <check type="uninstall" condition="exists" path="HP Quick Launch Buttons 6.30 J1" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
 +
        <upgrade cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
 +
 +
    </package>
 +
 +
    <package
 +
        id="nx6325_synaptics"
 +
        name="Synaptics Pointing Device Driver"
 +
        revision="1"
 +
        priority="9">
 +
 +
        <check type="uninstall" condition="exists" path="Synaptics Pointing Device Driver" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.iss' />
 +
        <upgrade cmd='%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.iss' />
 +
 +
    </package>
 +
 +
    <package
 +
        id="nx6325_wireless"
 +
        name="Broadcom 802.11 Wireless LAN Adapter"
 +
        revision="1"
 +
        priority="9">
 +
 +
        <check type="uninstall" condition="exists" path="Broadcom 802.11 Wireless LAN Adapter" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\SP36684A\Setup.exe /s' />
 +
        <upgrade cmd='%SOFTWARE%\nx6325\SP36684A\Setup.exe /s' />
 +
 +
    </package>
 +
 +
    <package
 +
        id="nx6325_processor"
 +
        name="Windows-Treiberpaket - Advanced Micro Devices (AmdK8) Processor (05/27/2006 1.3.2.0)"
 +
        revision="1"
 +
        priority="9">
 +
        <!-- If you have another language Windows version, you will have to change it below -->
 +
        <check type="uninstall" condition="exists" path="Windows-Treiberpaket - Advanced Micro Devices (AmdK8) Processor (05/27/2006 1.3.2.0)" />
 +
 +
        <install cmd='%SOFTWARE%\nx6325\SP35445\setup.exe /s' />
 +
        <upgrade cmd='%SOFTWARE%\nx6325\SP35445\setup.exe /s' />
 +
 +
    </package>
 +
 +
</packages>
 +
 +
</source>
  
  
 
[[Category:Silent_Installers]]
 
[[Category:Silent_Installers]]

Revision as of 10:02, 4 April 2008

Most HP drivers (audio, graphics, keyboard, network, input devices etc.) come as InstallShield packages. The installer usually have name like sp<number>.exe, for example, sp32556.exe is the name for Broadcom network drivers.

HP installers save its data into C:\SWSetup.


Sometimes, they will install silently with a /s switch, i.e.:

%SOFTWARE%\nx6325\SP35445\setup.exe /s


Sometimes, setup.iss is provided with InstallShield package, i.e.:

%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss

Unfortunately, sometimes manual intervention is needed (i.e., using other InstallShield switches, recording the installation etc.), so there is no golden rule here.


Sometimes, after starting the installer, you will find an extracted MSI package in %TEMP%.


Silent installation of nx6325 laptop drivers

<?xml version="1.0" encoding="UTF-8"?>

<packages>

    <package
        id="KB888111"
        name="KB888111"
        revision="1"
        priority="90">

        <check type="uninstall" condition="exists" path="High Definition Audio Driver Package - KB888111" />

        <install cmd='%SOFTWARE%\nx6325\kb888111xpsp2.exe /quiet' />

        <upgrade cmd='%SOFTWARE%\nx6325\kb888111xpsp2.exe /quiet' />

    <remove cmd='C:\WINDOWS\$NtUninstallKB888111WXPSP2$\spuninst\spuninst.exe /quiet' />

    </package>


    <package
        id="nx6325_audio"
        name="nx6325 audio driver"
        revision="1"
        priority="9">

        <check type="uninstall" condition="exists" path="SoundMAX" />

        <install cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
        <upgrade cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />

    </package>

    <package
        id="nx6325_buttons"
        name="HP Quick Launch Buttons 6.30 J1"
        revision="1"
        priority="9">

        <check type="uninstall" condition="exists" path="HP Quick Launch Buttons 6.30 J1" />

        <install cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />
        <upgrade cmd='%SOFTWARE%\nx6325\SP37155\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37155\setup.iss' />

    </package>

    <package
        id="nx6325_synaptics"
        name="Synaptics Pointing Device Driver"
        revision="1"
        priority="9">

        <check type="uninstall" condition="exists" path="Synaptics Pointing Device Driver" />

        <install cmd='%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.iss' />
        <upgrade cmd='%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.exe /s /sms /f1%SOFTWARE%\nx6325\SP37065\WinNT5\x86\setup.iss' />

    </package>

    <package
        id="nx6325_wireless"
        name="Broadcom 802.11 Wireless LAN Adapter"
        revision="1"
        priority="9">

        <check type="uninstall" condition="exists" path="Broadcom 802.11 Wireless LAN Adapter" />

        <install cmd='%SOFTWARE%\nx6325\SP36684A\Setup.exe /s' />
        <upgrade cmd='%SOFTWARE%\nx6325\SP36684A\Setup.exe /s' />

    </package>

    <package
        id="nx6325_processor"
        name="Windows-Treiberpaket - Advanced Micro Devices (AmdK8) Processor (05/27/2006 1.3.2.0)"
        revision="1"
        priority="9">
        <!-- If you have another language Windows version, you will have to change it below -->
        <check type="uninstall" condition="exists" path="Windows-Treiberpaket - Advanced Micro Devices (AmdK8) Processor (05/27/2006 1.3.2.0)" />

        <install cmd='%SOFTWARE%\nx6325\SP35445\setup.exe /s' />
        <upgrade cmd='%SOFTWARE%\nx6325\SP35445\setup.exe /s' />

    </package>

</packages>