HP Support Assistant Package

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
pierre.baridon
Messages: 12
Registration: Nov 14, 2020 - 10:55
Location: Clermont-Ferrand

October 28, 2021 - 6:07 PM

Hello,

has anyone here ever worked on a package to deploy "HP Support Assistant" (an update/support tool for HP workstations)?

I'm having some difficulty with the package. Installation with an administrator account is no problem, however, with the local system account at boot, some dependencies fail to install.

Thanks!

Pierre
- Installed WAPT version (2.1.0 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
Eddy
Messages: 1
Registration: February 3, 2022 - 12:07 AM

February 3, 2022 - 12:14 AM

Good evening,

could you share your script?
I'm not particularly familiar with Python.
After trying several scripts, an error occurs every time...

Thanks in advance

, Eddy
- WAPT version installed (2.2.3 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
pierre.baridon
Messages: 12
Registration: Nov 14, 2020 - 10:55
Location: Clermont-Ferrand

June 9, 2022 - 5:25 PM

Good morning,

Here is the first draft of my script:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *
import time

"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
CommandVendor = 'wmic systemenclosure get manufacturer'
CommandModel = 'wmic COMPUTERSYSTEM get Model'

Vendor = str(run(CommandVendor))
Model = str(run(CommandModel))



def install():
    # Declaring local variables

    print ("Fabricant : ", Vendor)
    print ("Model : ", Model)



    if Vendor.find('HP') != -1 :

        print("Installation Prerequis")


        print("Installation de HP Support Assistant sur machine HP")

        # Installing the software
        print("Installing: %s" % control.package)
        #install_exe_if_needed('InstallHPSA.exe',
        #    silentflags='/S /v/qn',
        #    key='',
        #    min_version=control.get_software_version(),
        #)
        install_exe_if_needed('setup.exe',
            silentflags='-s',
            key='',
            min_version=control.get_software_version(),
        )

    else:
        print("Pas un materiel HP")    


def uninstall():
    print("désinstallation de HP Support Assistant")
    run ('"' + makepath(programfiles32,'HP','HP Support Framework','UninstallHPSA.exe') + r'" /S /v/qn')
- Installed WAPT version (2.1.0 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
florentR2
Messages: 100
Registration: February 13, 2020 - 5:23 PM

June 10, 2022 - 09:39

Hello,
I've noticed that HPIA doesn't necessarily require installation.
You can simply retrieve the folder from a PC where it's installed. I chose this solution and then set up a scheduled task that launches HPIA tasks via the command line.
pierre.baridon
Messages: 12
Registration: Nov 14, 2020 - 10:55
Location: Clermont-Ferrand

June 22, 2022 - 5:03 PM

florentR2 wrote: June 10, 2022 - 9:39 AM Hello,
I noticed that HPIA doesn't necessarily require installation.
You can simply retrieve the folder from a PC where it's installed. I chose this solution and then set up a scheduled task that launches HPIA tasks via the command line.
Good morning,
Do you have any documentation/examples for launching tasks via the CLI?
- Installed WAPT version (2.1.0 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
florentR2
Messages: 100
Registration: February 13, 2020 - 5:23 PM

June 22, 2022 - 5:08 PM

There's a CLI section in the documentation: https://ftp.hp.com/pub/caps-softpaq/cmi ... rGuide.pdf
Locked