Hello,
As I'm brand new here and this is my first post, I wanted to start by congratulating you on the very responsive technical support and especially the easy interaction with the Tranquil'IT team on this forum, based on what I've seen while browsing a few topics.
I had a question regarding user interaction during package deployment.
Specifically, I want to display a popup using Windows "toast notifications" so that the user can decide to initiate an in-place upgrade from Windows 10 to Windows 11 from their computer (for example, when leaving in the evening). A full-screen splash screen will then display the progress of the operation, instructing the user not to shut down their computer.
Currently, I'm managing to achieve this through a workaround: launching the script via the display method of "ServiceUI.exe," which SCCM uses to interact from "Session 0," even though the package is running in a "SYSTEM" context and not a "USER" one.
However, I'd like to know if there's a known method in WAPT to accomplish this, perhaps using a pre-existing Python function.
Thanks in advance.
Launching a script in interactive mode visible to the user
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
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
Good morning,
Having found a solution, I am replying to my own post.
Via the command run From setuphelpers, you just need to combine the executables psexec, powershell And ServiceUI (used notably by SCCM) in the following order:
This solution works perfectly and allows interaction with the user by displaying a Toast Notification (very useful for triggering a large deployment at the end of the day such as an "in place" upgrade of Windows 11 for example).
Fred
Having found a solution, I am replying to my own post.
Via the command run From setuphelpers, you just need to combine the executables psexec, powershell And ServiceUI (used notably by SCCM) in the following order:
Code: Select all
run(r'"PsExec.exe" -s powershell.exe ServiceUI.exe C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -NoLogo -Noprofile -WindowStyle Hidden -file Script.ps1')Fred
- sfonteneau
- WAPT Expert
- Messages: 2318
- Registered: July 10, 2014 - 11:52 PM
- Contact :
Oops, sorry, your message seems to have been lost
You can also do it like this:
You can also do it like this:
Code: Select all
from waptservice.enterprise import get_active_sessions,start_interactive_process
for session_id in get_active_sessions():
start_interactive_process(makepath(install_location('WAPT_is1'), 'waptmessage.exe'), 'message', session_id=session_id,minimize=True)
