Search found 8276 matches

by Alexander Riedel
Sun May 28, 2023 9:24 am
Forum: Former and Future Customers - Questions
Topic: How to change compiled EXE console font ?
Replies: 6
Views: 383

Re: How to change compiled EXE console font ?

2023-05-28_9-20-08.png
2023-05-28_9-20-08.png (60.06 KiB) Viewed 163 times
In the current version this looks like this. You do have to make sure your script file is saved
as Unicode (UTF-16-LE) before packaging.
I am not sure if the 2016 had an encoding selector on the status bar already or not, sorry.
by Alexander Riedel
Sat May 27, 2023 11:17 am
Forum: Former and Future Customers - Questions
Topic: How to change compiled EXE console font ?
Replies: 6
Views: 383

Re: How to change compiled EXE console font ?

What actual packager engine are you using? And what version of what product do you use?
by Alexander Riedel
Fri May 26, 2023 1:17 pm
Forum: Former and Future Customers - Questions
Topic: How to change compiled EXE console font ?
Replies: 6
Views: 383

Re: How to change compiled EXE console font ?

A script packaged as a console application (assuming that is what you did) does not set any font by itself.
It uses the font that is configured on a system for that particular console.
by Alexander Riedel
Thu May 25, 2023 4:23 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

As for your first question, you cannot uninstall a product that is still being installed, no matter how you frame it. You cannot actually run Windows Installer if it is already running for something else. Best you could do, is to schedule it. Start menu items are added via the "Shortcuts" ...
by Alexander Riedel
Thu May 25, 2023 1:15 am
Forum: Customer Service
Topic: Subscription expired??
Replies: 2
Views: 471

Re: Subscription expired??

Sorry to hear you are having trouble. All our subscriptions are one year, not two years.
Please contact sales@sapien.com directly if you are still experiencing problems.
by Alexander Riedel
Wed May 24, 2023 6:05 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

All SAPIEN Hosts use a variable $ExitCode to return a value through the host.
by Alexander Riedel
Wed May 24, 2023 4:34 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

$form1.Activate();

in the form load event handler should do it.
by Alexander Riedel
Wed May 24, 2023 2:49 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

For reference, this are the standard MSI actions:
https://learn.microsoft.com/en-us/windo ... -reference

Your custom actions should not have a name already used.
by Alexander Riedel
Wed May 24, 2023 2:42 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

You have a double ]] in "[ProgramFiles]]\[Product]" that's what causes the path to be incorrect. I found the source of your troubles. You use the name of 'RegisterProduct' for the custom action name. The internal actions (according to the MSI log) have one with a name 'RegisterProduct' and...
by Alexander Riedel
Wed May 24, 2023 12:47 pm
Forum: PowerShell Studio
Topic: Add ps exe to custom actions
Replies: 27
Views: 493

Re: Add ps exe to custom actions

It's a little strange. Not sure what would be causing this. Let's do this: Create a dummy script "Hello World". Make an installer for it. Add a custom action that runs your trimmed down forms app. Add that and the config to the files installed. Try the MSI on your machine with logging. Ass...