Search found 8483 matches

by Alexander Riedel
Tue Apr 09, 2024 4:07 pm
Forum: PowerShell Studio
Topic: Problems in Output windows
Replies: 9
Views: 213

Re: Problems in Output windows

Can you please start PowerShell Studio elevated once, clicking the WMI browser button then.
Exit and start normally. Does that make any difference?
by Alexander Riedel
Tue Apr 09, 2024 12:51 pm
Forum: Former and Future Customers - Questions
Topic: Can't add buttons after update
Replies: 6
Views: 181

Re: Can't add buttons after update

Your licensing department can add your SAPIEN ID as a user to the license. https://info.sapien.com/index.php/quickguides/managing-multiple-licenses-with-a-single-activation-key This will help you get better and faster support. If you have questions specific to your license and how to set this up, pl...
by Alexander Riedel
Tue Apr 09, 2024 10:06 am
Forum: Former and Future Customers - Questions
Topic: Can't add buttons after update
Replies: 6
Views: 181

Re: Can't add buttons after update

Please make sure to submit support requests from the account associated with your license and preferably in the forum section associated with your product.
by Alexander Riedel
Mon Apr 08, 2024 3:43 pm
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 286

Re: PowerShell Studio installlation error

This is the URL our server certificate uses for revocation checks:
http://crl.r2m01.amazontrust.com/r2m01.crl
There is no guarantee that this is a static URL.
by Alexander Riedel
Mon Apr 08, 2024 12:15 pm
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 286

Re: PowerShell Studio installlation error

It is through Amazon AWS, that is all I know at the moment. If I have more information I will let you know.
If you need an offline PowerShell Studio installer in the meantime, I can DM you a link.
by Alexander Riedel
Mon Apr 08, 2024 11:14 am
Forum: Installation Issues
Topic: PowerShell Studio installlation error
Replies: 5
Views: 286

Re: PowerShell Studio installlation error

This is a system message about verifying digital signatures. Most likely you system is trying to verify our website's certificate for https. That requires contacting a revocation server that lists bogus digital certificates that have been revokes. A double check so to speak. That URL is different fo...
by Alexander Riedel
Mon Apr 01, 2024 11:16 pm
Forum: PowerShell GUIs
Topic: CheckedListBox prevent user from unchecking all boxes and only allow single checkbox to ever be selected
Replies: 1
Views: 994

Re: CheckedListBox prevent user from unchecking all boxes and only allow single checkbox to ever be selected

Simplest way, at the end of your event handler you iterate through all elements in the list. Add 1 to counter if an item is checked. Once you iterated through all items and your counter is still zero, you know nothing is checked. At that point you can: A) Simply re-check the item that was clicked on...
by Alexander Riedel
Thu Mar 28, 2024 9:29 am
Forum: PowerShell
Topic: Supress output from a build file (.exe)
Replies: 3
Views: 929

Re: Supress output from a build file (.exe)

That is a progress message. You cannot pipe that to null.
Try this:
$ProgressPreference = 'SilentlyContinue'
by Alexander Riedel
Mon Mar 25, 2024 9:21 am
Forum: Customer Service
Topic: Windows Form with a service
Replies: 3
Views: 812

Re: Windows Form with a service

While there is a service attribute to let a service interact with the desktop, it is only used in very limited circumstances. The UI experience is jarring at best. Typically your service is UI-less. Another application, tray app, control panel applet etc is use to apply settings and control mechanis...
by Alexander Riedel
Mon Mar 25, 2024 9:15 am
Forum: PowerShell Studio
Topic: Build process triggers alerts from Windows Defender
Replies: 4
Views: 186

Re: Build process triggers alerts from Windows Defender

I have verified that the RCX*.tmp file is created by Windows when writing resources to a file.
If you like, I can send you a complete log from a build process on a verified and scanned machine.