Search found 8476 matches

by Alexander Riedel
Fri Feb 16, 2024 8:28 am
Forum: Customer Service
Topic: PowerShell Studio 2016 and 2024
Replies: 8
Views: 2541

Re: PowerShell Studio 2016 and 2024

The rounded button you are linking too is not using any properties. The code shown is overriding the paint method and is drawing the entirety of the button itself. PowerShell Studio does not 'ship' with any controls or properties and never did. The controls are and always were part of the Windows OS...
by Alexander Riedel
Thu Feb 15, 2024 1:44 pm
Forum: PowerShell Studio
Topic: Add-Type error in powershell core v7 package
Replies: 5
Views: 559

Re: Add-Type error in powershell core v7 package

From what I can see the aasupport.dll is a 32 bit C- style dll. According to the packager settings you attempt to load that dll in a 64 bit .NET 8 application (PowerShell 7.4.x is .NET 8) The .NET framework 4.8 used by Windows PowerShell is likely more apt on this, as large parts of the OS were stil...
by Alexander Riedel
Wed Feb 14, 2024 8:21 am
Forum: PowerShell Studio
Topic: Heat/FIPS error during build (HEAT0308)
Replies: 17
Views: 898

Re: Heat/FIPS error during build (HEAT0308)

For the moment turning it off is your only option.
A build containing the fix is likely going to QA today. It should be up soon.
by Alexander Riedel
Tue Feb 13, 2024 1:05 am
Forum: PowerShell Studio
Topic: AccountExpirationDate is returned in american format
Replies: 1
Views: 465

Re: AccountExpirationDate is returned in american format

PowerShell very often reverts back to its American roots. I recall reading somewhere that one of the architects of PowerShell insisted that this was intentional. I would post a link but it has been a long time ago and cannot find that at the moment. As far as I remember this was done to make sure Po...
by Alexander Riedel
Sun Feb 11, 2024 3:20 pm
Forum: Former and Future Customers - Questions
Topic: I can't install PrimalXML
Replies: 1
Views: 519

Re: I can't install PrimalXML

That is a pretty strange link, we have nothing of that sort in our installer. It does not seem to be even a valid registry path. I installed the trial from out website with no errors and searched my registry part of that key ('PrimalScript 2024.xml') to no avail and any 'ShellNew' verb is associated...
by Alexander Riedel
Fri Feb 09, 2024 12:05 pm
Forum: PowerShell Studio
Topic: HEAT0001
Replies: 2
Views: 415

Re: HEAT0001

These are errors from the Wix Toolset. The first one specifically points out that a Windows API function (GetShortPathName) threw an exception. The second one is from a different WiX tool. From what I was able to learn is that this can happen if a file no longer exists between initiating the process...
by Alexander Riedel
Fri Feb 09, 2024 9:00 am
Forum: PowerShell
Topic: Same code - different result
Replies: 3
Views: 964

Re: Same code - different result

The '$User_ID_Check_Output.Text = ...'
in front of the statement does set the text of the control in this case.
The statement '$User_ID_Check_Output.Focus()' seemingly is on the next line, setting the focus to that control.
It is not a parameter to Out-String as in your initial example.
by Alexander Riedel
Fri Feb 09, 2024 12:54 am
Forum: PowerShell Studio
Topic: Can't Debug because AnalyzeScript fails with file not found
Replies: 2
Views: 378

Re: Can't Debug because AnalyzeScript fails with file not found

Try to switch the feature off and see if that works. Please let us know.
2024-02-09_0-52-18.png
2024-02-09_0-52-18.png (280.58 KiB) Viewed 374 times
by Alexander Riedel
Thu Feb 08, 2024 3:06 pm
Forum: PrimalScript
Topic: PrimalScript 2024 Startup page - missing recent projects
Replies: 1
Views: 1128

Re: PrimalScript 2024 Startup page - missing recent projects

The recent projects are still on the 'Recent' backstage view as shown here. They are currently not available on the start page.
2024-02-08_15-04-16.png
2024-02-08_15-04-16.png (301.38 KiB) Viewed 900 times
by Alexander Riedel
Thu Feb 08, 2024 2:36 pm
Forum: PowerShell
Topic: Same code - different result
Replies: 3
Views: 964

Re: Same code - different result

https://learn.microsoft.com/en-us/dotne ... esktop-8.0
The Focus method of a window returns true or false. I am guessing you wanted to do something else. :D