Search found 1833 matches

by brittneyr
Thu Jan 23, 2025 9:50 am
Forum: PowerShell Studio
Topic: PowerShell Studio SSL Code Signing in 2025?
Replies: 1
Views: 36

Re: PowerShell Studio SSL Code Signing in 2025?

Are you able to sign files from a PowerShell Console with your certificate? You may find the following helpful: https://www.ssl2buy.com/wiki/use-yubikey-in-code-signing-certificate https://signmycode.com/resources/how-to-sign-the-powershell-script-with-code-with-yubikey https://sslinsights.com/how ...
by brittneyr
Thu Jan 23, 2025 7:28 am
Forum: PowerShell Studio
Topic: Remote Console - Closed or disconnected sessions
Replies: 1
Views: 28

Re: Remote Console - Closed or disconnected sessions

When the remote console is created with the credentials, it is a running PowerShell instance and we do not have control over when the session disconnects or times out. We can look into this more, but I'm not sure there is anything we can do to improve this functionality.
by brittneyr
Wed Jan 22, 2025 8:16 am
Forum: PowerShell Studio
Topic: Error executing script
Replies: 1
Views: 39

Re: Error executing script

We are looking into this and will get back to you soon.
by brittneyr
Tue Jan 21, 2025 7:59 am
Forum: Customer Service
Topic: Transfer management of powershell studio
Replies: 1
Views: 95

Re: Transfer management of powershell studio

We are happy to help. First have the new manager create a SAPIEN account via www.sapien.com/auth. Once this is done, please email sales@sapien.com. Our sales team can help assist you in transferring the license. Thank you.
by brittneyr
Fri Jan 17, 2025 3:12 pm
Forum: PowerShell Studio
Topic: feature request disappeared
Replies: 5
Views: 84

Re: feature request disappeared

You can view your open feature requests here:
OpenFeatureRequests.png
OpenFeatureRequests.png (43.3 KiB) Viewed 38 times
by brittneyr
Fri Jan 17, 2025 8:11 am
Forum: PowerShell GUIs
Topic: Resizing a form in code
Replies: 2
Views: 170

Re: Resizing a form in code

Try creating a new Size object and setting it to either the Size or ClientSize property:

Code: Select all

$formLogon.ClientSize = New-Object System.Drawing.Size(1500, 750)
You can also use the Height and Width properties:

Code: Select all

$formLogon.Height = 750
$formLogon.Width = 1500
by brittneyr
Fri Jan 17, 2025 8:06 am
Forum: PowerShell GUIs
Topic: Resizing a form in code
Replies: 2
Views: 170

Re: Resizing a form in code

[Topic has been moved by moderator]
by brittneyr
Thu Jan 16, 2025 2:18 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 181

Re: Issues with PictureBox using image from ImageList after PS Studio update

This issue will be resolved in the next service release. For a workaround in the meantime, manually adding the ImageSize and ColorDepth properties before you set the PictureBox control image in your form should resolve the issue. Example: $form1_Load = { $imagelist1.ImageSize = New-Object System ...
by brittneyr
Thu Jan 16, 2025 12:59 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 181

Re: Issues with PictureBox using image from ImageList after PS Studio update

We have been able to reproduce this issue and are working on a solution. I'll update you when I have more information.
by brittneyr
Wed Jan 15, 2025 10:12 pm
Forum: PowerShell Studio
Topic: Issues with PictureBox using image from ImageList after PS Studio update
Replies: 9
Views: 181

Re: Issues with PictureBox using image from ImageList after PS Studio update

For your $ImageList, what values are you setting for the ImageSize and ImageDepth properties?