• ×
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
Join the HP Community Solve‑a‑thon | Help Others & Share Your Solutions | Live on Zoom | 2:30 PM to 2:30 AM IST | Every Wednesday Click here to know more
Check out our WINDOWS 11 Support Center info about: OPTIMIZATION, KNOWN ISSUES, FAQs, VIDEOS AND MORE.
HP Recommended
HP Notebook - 15-da0503sa
Microsoft Windows 10 (64-bit)

The Shop for Supplies program (hpqDTSS.exe) is not working how do I uninstall it?

 

3 REPLIES 3
HP Recommended

hpqDTSS is a component process belonging to HP Digital Sending Software (DSS) or related HP printer imaging utilities. To safely and completely remove it from your Windows system, you need to uninstall the parent HP software suite and clean up residual tasks.  I have no idea what the parent app is.  

 

copy and paste the following into the administrator command prompt

wmic process where name="hpqdtss.exe" get name, parentprocessid, executablepath

--or if the above does not work user powershell--

Get-CimInstance Win32_Process -Filter "Name = 'hpqdtss.exe'" | Select-Object Name, ParentProcessId, Path

 

I assume it is an annoying popup.  Bring up the windows task manager and look in startup apps for an app with that name.  Disable it.

 

The new HP App (from windows store) can provide buying information without using a popup


Thank you for using HP products and posting to the community.
I am a community volunteer and do not work for HP. If you find
this post useful click the Yes button. If I helped solve your
problem please mark this as a solution so others can find it
HP Recommended

Neither command path worked! Although I probably did not enter them correctly as I am not very familiar with command prompt 

HP Recommended

If your Get-CimInstance query didn't return any data, it typically means the process hpqdtss.exe is currently not running, or it might have a slightly different spelling.hpqdtss.exe belongs to HP Digital Imaging Monitor (a part of older HP printer software suites and HP Hewlett-Packard drivers). If the process is stubborn, returning, or throwing errors on startup, you can completely terminate and eliminate it using the following steps:

1. Force Kill the Process (If Running)

If it ever spawns again or is running under a hidden session, you can bypass WMI filters and kill it directly by its exact image name in PowerShell (run as Administrator):

Stop-Process -Name "hpqdtss" -Force -ErrorAction SilentlyContinue

2. Disable it from Windows Startup

hpqdtss.exe usually relies on a startup registry entry or shortcut rather than a parent process.

  • Press Ctrl + Shift + Esc to open Task Manager.
  • Navigate to the Startup apps tab (or Startup tab).
  • Look for HP Digital Imaging Monitor or any entry pointing to hpqdtss.exe.
  • Right-click it and select Disable.

Alternatively, you can manually delete its startup entry via File Explorer:

  1. Press Win + R, type %appdata%\Microsoft\Windows\Start Menu\Programs\Startup and press Enter.
  2. Look for any HP printer shortcuts here and delete them.

3. Uninstall the Associated HP Software Suite

The safest way to get rid of the executable permanently without breaking system files is to uninstall the legacy HP suite driving it:

  1. Press Win + R, type appwiz.cpl and hit Enter.
  2. Look through the list for items named HP Digital Imaging, HP Photosmart Essential, HP Solution Center, or HP Printer Software.
  3. Click Uninstall and complete the prompt wizard.

4. Locate and Wipe the Remnants

If the software is already uninstalled but hpqdtss.exe is still lingering on your hard drive, you can wipe its physical file location:

# Search your drive to find where the file is hiding
Get-ChildItem -Path "C:\Program Files*" -Filter "hpqdtss.exe" -Recurize -ErrorAction SilentlyContinue | Select-Object FullName

Once you find the directory (usually under C:\Program Files\HP\...), you can delete the enclosing folder to wipe the file permanently. 

Spoiler

 


Thank you for using HP products and posting to the community.
I am a community volunteer and do not work for HP. If you find
this post useful click the Yes button. If I helped solve your
problem please mark this as a solution so others can find it
† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.
-->