Forum Discussion
forderud_ge
May 02, 2022Copper Contributor
Install & restart notifications when using custom shell?
I'm working on an embedded product where Windows boots directly to a custom shell application without admin privileges. This means that explorer.exe is not running, and as a consequence of that toast...
- May 02, 2022
You may want to have a look at the PSAppDeployToolkit (https://github.com/PSAppDeployToolkit/PSAppDeployToolkit). It allows you to display custom dialogs and gives you a whole lot of control over your app installations).
Most important: it's all PowerShell (and, in some cases, a helper service) so it works without explorer.exe.
NielsScheffers
May 02, 2022Iron Contributor
You may want to have a look at the PSAppDeployToolkit (https://github.com/PSAppDeployToolkit/PSAppDeployToolkit). It allows you to display custom dialogs and gives you a whole lot of control over your app installations).
Most important: it's all PowerShell (and, in some cases, a helper service) so it works without explorer.exe.
- forderud_geMay 02, 2022Copper ContributorThanks for the tip! Will take a look.