PowerShell GUIs • Re: Multi Forms Passing data bidirectional
You may find the following helpful:https://info.sapien.com/index.php/guis/ ... jects-workStatistics: Posted by brittneyr — Sat Nov 30, 2024 11:29 am
View ArticlePowerShell • Re: PowerShell Console freeze
Update PowerShell: Use the latest version to avoid bugs.Reduce Updates: Update the progress bar less frequently, e.g., every 10 iterations:if ($i % 10 -eq 0) { Write-Progress -Activity "Processing"...
View ArticlePowerShell • Re: does not contain a method named 'op_Addition'
The issue arises because in some contexts, $locked = @() creates an empty array, and PowerShell expects op_Addition to append results to it. This works fine in the standard console but behaves...
View ArticlePowerShell • Best tools for automating server management with PowerShell?
Hiiii,I’m trying to streamline server management tasks using PowerShell and looking for tool recommendations. so far, i’ve been exploring tools like scriptrunner, powershell universal, and attune....
View ArticleCustomer Service • Black Friday Maintenance Renewal Sale??
So far, it looks like no joy… but maybe, just maybe, can it be MUCH JOY?? Statistics: Posted by elachowitz — Mon Dec 02, 2024 5:43 am
View ArticleCustomer Service • Re: Black Friday Maintenance Renewal Sale??
Check out our blog:https://www.sapien.com/blog/2024/12/02/ ... tarts-now/Statistics: Posted by brittneyr — Mon Dec 02, 2024 7:49 am
View ArticlePowerShell Studio • PS 7.4.6 Packaging issues?
Product, version and build: Product: PowerShell Studio 2024 (64 Bit)Build: v5.8.251OS: Windows 11.0.26100PS Version(s): 5.1.26100.1882, 7.4.6I have a Windows Forms app that I need to package for...
View ArticlePowerShell Studio • Re: PS 7.4.6 Packaging issues?
Do you get any error messages or entries in the system event logs?Statistics: Posted by Alexander Riedel — Mon Dec 02, 2024 12:44 pm
View ArticlePowerShell Studio • Packaged project not showing prompts as system user
Product: PowerShell Studio 2024 (64 Bit)Build: v5.8.251OS: Windows 11.0.22631PS Version(s): 5.1.22621.1Maybe I haven't seen this before or even tried doing it this way. But if I am a non admin on a...
View ArticlePowerShell Studio • Re: Packaged project not showing prompts as system user
If a scheduled task set to run "As System" doesn't show a prompt on your screen, it's likely because tasks running with system privileges are designed to operate silently in the background without...
View ArticlePowerShell Studio • Re: PowerShell 7.x – ProgressBarOverlay does not work (EXE)
I have an update regarding this issue. After some digging, we have discovered that this is related to a Microsoft packaging issue between .NET 8, .NET 9, and PowerShell 7. An assembly that is being...
View ArticleVersionRecall • Re: VersionRecall not updating repositories consistently
Alexander, can you provide a response to my 11/22 question on what is the best way to set up VR in our environment?Statistics: Posted by ssr025 — Tue Dec 03, 2024 3:44 pm
View ArticleFormer and Future Customers - Questions • Problems with turning on PowerShell...
I just updated to Windows 11 and PowerShell Studio 2024, version 5.8.243. Unfortunately, I'm now having trouble with activation.I have tried the following steps to fix the problem:Registered...
View ArticleFormer and Future Customers - Questions • Re: Problems with turning on...
Can you provide a screenshot of the error message you are receiving?Statistics: Posted by brittneyr — Wed Dec 04, 2024 7:14 am
View ArticlePowerShell GUIs • ConvertTo-ScaledPixel - 4K display design
Hi i design som gui-tools for our supporter.How do i make sure that the gui i okay scaled if it run on lower resolution.What is best practice. Design the gui in FullHD res? 1920x1080p...
View ArticleFormer and Future Customers - Questions • Silent Execution in Compiled...
Hi,I am currently evaluating PowerShell Studio as a potential solution for compiling .ps1 scripts into executables for internal use within our company. One of our critical requirements is to ensure...
View ArticleFormer and Future Customers - Questions • Re: Silent Execution in Compiled...
Yes, the trial pop-up will be removed once the packaged script is rebuilt with a licensed version of PowerShell Studio.Statistics: Posted by brittneyr — Thu Dec 05, 2024 7:47 am
View ArticlePowerShell GUIs • Re: Multi Forms Passing data bidirectional
Since you are initially declaring the variable in the MainForm, its best to use the $script: scope when you reference/change that variable. This would mean updating the variable in the child form to...
View ArticlePowerShell GUIs • Error executing script
I have finished my GUI application and it runs fine in powershell studio, but when I build and run the exe I get the error executing script.I have no idea how to find the issueStatistics: Posted by...
View ArticlePowerShell GUIs • Re: Error executing script
If you are packaging with a PowerShell 7.4.6 engine, there is a known issue with PowerShell 7.4.6: viewtopic.php?p=86580#p86580A fix will roll out with the next service release. I do not have an ETA...
View Article