-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Notebook Software and How To Questions
- HP Image Assistant Schedule Reboot

Create an account on the HP Community to personalize your profile and ask a question
04-25-2025 08:49 AM
Pushing and running HP Image assistant from Intune. Is there a way to once it downloads and install the drivers, bios, etc that it could prompt the user if they want to restart now or schedule it for later? Currently we are seeing it does its thing silently then immediately reboots no matter what the user is in the middle of and we want to fix that. Thanks
04-26-2025 06:18 AM
@dj562006, Welcome to HP Support Community.
Thank you for posting your query, I will be glad to help you.
HP Image Assistant itself doesn't have a built-in "ask user to reboot" feature.
BUT, you can work around this using Intune scripting and PowerShell (and slightly modify your deployment process).
Here's the Best Way to Fix It:
Run HPIA Without Automatically Rebooting
When you launch HPIA, make sure you use the /noreboot parameter.
Example command:
HPImageAssistant.exe /Operation:Analyze /Category:All /Action:Install /NoReboot
This will prevent it from rebooting automatically, even if a BIOS update or driver normally asks for it.
Prompt the User to Reboot Using Your Own Script
You can pop up a message to the user asking something like:
- "Updates installed. Would you like to reboot now or later?"
- If they click "Now", reboot immediately.
- If they click "Later", just leave it alone.
This way you control the reboot, not HPIA.Here’s a simple PowerShell script you can push after HPIA finishes:
Add-Type -AssemblyName PresentationFramework
$result = [System.Windows.MessageBox]::Show('Updates were installed. Do you want to reboot now?', 'Reboot Required', 'YesNo', 'Question')
if ($result -eq 'Yes') {
Restart-Computer -Force
} else {
# Do nothing, user will reboot later
}
Bundle This Together in Your Intune Deployment
You can set it up like:
- Step 1: Run HPIA with /noreboot
- Step 2: When HPIA exits, run the PowerShell script to ask the user
- Step 3: Track reboot compliance separately if needed.
You can make this into a Win32 app package or a Proactive Remediation script in Intune.
I hope this helps.
Take care and have a good day.
Please click “Accepted Solution” if you feel my post solved your issue, it will help others find the solution. Select "Yes" on the bottom left to say “Thanks” for helping!
Max3Aj
HP Support
04-28-2025 12:53 PM
@dj562006, Thank you for your response,
I'm sending a private message to assist you with the next action.
Please check your Private message icon on the upper right corner of your HP Community profile Next, to your profile Name, you should see a little blue envelope, please click on it or simply click on this link.
I hope this helps! Keep me posted.
Max3Aj
HP Support