Search found 12 matches

by EnergySmithe
Mon May 17, 2021 5:49 am
Forum: PowerShell Studio
Topic: Code Signing Cert not selectable after upgrade
Replies: 5
Views: 5604

Re: Code Signing Cert not selectable after upgrade

BrittneyR - I could not sign anything - powershell scripts or generated executables - using Sapien Powershell Studio 2021. However - in testing this morning, I think Alexander Riedel is correct - If I remove the timestamp URL completely then I am able to sign things. As soon as I select any of them,...
by EnergySmithe
Fri May 14, 2021 1:25 pm
Forum: PowerShell Studio
Topic: Code Signing Cert not selectable after upgrade
Replies: 5
Views: 5604

Re: Code Signing Cert not selectable after upgrade

Ok - Fine. 1) Removed existing code signing certs from everywhere (Localhost and the user) 2) Got new brand new code signing cert issued and installed for the user only 3) Cert now appears and can be selected 4) Attempt to Deploy Package to EXE and get "Signing with certificate failed : ASN1 ba...
by EnergySmithe
Fri May 14, 2021 10:26 am
Forum: PowerShell Studio
Topic: Code Signing Cert not selectable after upgrade
Replies: 5
Views: 5604

Code Signing Cert not selectable after upgrade

Upgraded from Powershell Studio 2020 to 2021: Product: PowerShell Studio 2021 (64 Bit) Build: v5.8.188 OS: Windows 10 Enterprise (64 Bit) Build: v10.0.18363.0 File->Options->Powershell-> Certificate in Local Store - click button to "Open your Certificate Store to view installed certificates&quo...
by EnergySmithe
Thu Dec 13, 2018 12:13 pm
Forum: PowerShell
Topic: Self-Updating Powershell Windows Service?
Replies: 3
Views: 2232

Re: Self-Updating Powershell Windows Service?

The problem would be the same... once it is installed, we do not want to have an admin log into every machine and run something with elevated permissions every time we have an update. In our case we never had to /u then /i the service, we left it registered, stopped the service, copied the files ove...
by EnergySmithe
Thu Dec 13, 2018 10:48 am
Forum: PowerShell
Topic: Self-Updating Powershell Windows Service?
Replies: 3
Views: 2232

Self-Updating Powershell Windows Service?

In my Powershell based utilities I have auto-update built in, so that it updates itself from a network share. It does this with a /version flag which returns the current version string and exits - that is called on a UNC shared copy to determine if it needs to update. I recently did a short term pro...
by EnergySmithe
Tue Oct 24, 2017 2:55 pm
Forum: PowerShell GUIs
Topic: Embedding a form in a form
Replies: 18
Views: 7823

Re: Embedding a form in a form

Thank you again jvierra, this is very helpful!
by EnergySmithe
Mon Oct 23, 2017 2:28 pm
Forum: PowerShell GUIs
Topic: Embedding a form in a form
Replies: 18
Views: 7823

Re: Embedding a form in a form

jvierra, thank you for this excellent example, this is really helpful!
by EnergySmithe
Mon Oct 23, 2017 1:25 pm
Forum: PowerShell GUIs
Topic: Embedding a form in a form
Replies: 18
Views: 7823

Re: Embedding a form in a form

So while I am able to attach the form as an MDI child, I am still running into code behind control referencing/scoping issues. If I create a simple form with a label and button and put $label1.text = "Hello World!" as the click event for the button, when I load it as an MDI child and click...
by EnergySmithe
Mon Oct 23, 2017 7:23 am
Forum: PowerShell GUIs
Topic: Embedding a form in a form
Replies: 18
Views: 7823

Re: Embedding a form in a form

That is brilliant, thank you JV!
by EnergySmithe
Mon Oct 23, 2017 6:48 am
Forum: PowerShell GUIs
Topic: Embedding a form in a form
Replies: 18
Views: 7823

Re: Embedding a form in a form

So you have many directions to go in - all with drawbacks. Isn't development always like that? I would choose to build a program that edits the PSS generated script to turn it into an MDI child. Wow thank you jvierra! I agree that writing a script to turn the generated form into an MDI would be the...