PowerShell Studio • Re: Error: Cannot rename output file to specified name.
The most common cause is that the file is locked. That can be because the process is running or because an A/V process is scanning the file a little bit too slow.Statistics: Posted by Alexander Riedel...
View ArticlePowerShell Studio • Install .Net and PowerShell 7
Product, version and build: PowerShell Studio 2024 v5.8.248Operating system: Windows 11PowerShell version(s): 7.4.5*** Please add details and screenshots as needed below. ***When running my compiled...
View ArticlePowerShell Studio • Re: Install .Net and PowerShell 7
As you added a folder to the installer ('redist'), the files in that folder are also installed in a folder underneath your INSTALLDIR.So in your custom action you need to refer to the file using that...
View ArticlePowerShell GUIs • fill second row of textbox
Hi forum,does anyone know, how to fill the second (or third, fourth....) line of a textbox from an array?I always overwrite the first line, when I do a "$Textbox1.text = $MyArray[$counter]"Thanks for...
View ArticlePowerShell GUIs • Re: fill second row of textbox
You need to append the text as currently you are always overwriting the Text property of your textbox. There are multiple ways to accomplish this:You can do something like the following:$Textbox1.text...
View ArticlePowerShell Studio • Re: Webview2
Please try service build 5.8.249 and let me know if you are still having any issues with the WebView2 control in the designer.Statistics: Posted by brittneyr — Fri Sep 27, 2024 2:22 pm
View ArticlePowerShell Studio • Re: Hang opening projects when files are unavailable
Please try service build 5.8.249 and let me know if you still experiencing any issues.Statistics: Posted by brittneyr — Fri Sep 27, 2024 2:24 pm
View ArticleWish List and Feature Requests • Adding Pain Events Properties
I think adding paint properties for buttons, panels, labels and other controls possibly so users when designing the applications in PS can add some styling if they don't have experience working with...
View ArticlePowerShell Studio • Controls and its sizes
To help you better we need some information from you.*** Please fill in the fields below. If you leave fields empty or specify 'latest' rather than the actual version your answer will be delayed as we...
View ArticlePowerShell Studio • Re: Controls and its sizes
Statistics: Posted by nirmalks — Fri Sep 27, 2024 11:12 pm
View ArticlePowerShell Studio • PowerShell 7.x – ProgressBarOverlay does not work (EXE)
Hello,When I use a ProgressBarOverlay with PowerShell 7.4.5, it works as long as I run it through PowerShell Studio. However, when I generate an EXE, the progress bar is not displayed. Is there a...
View ArticlePowerShell Studio • Re: PowerShell 7.x – ProgressBarOverlay does not work (EXE)
We are looking into this and will get back to you soon.Statistics: Posted by brittneyr — Mon Sep 30, 2024 6:56 am
View ArticlePowerShell Studio • Re: dot sourcing and debugging
So I had a ps1 file with multiple lines dotsourcing my functions like:. \\ps\functions$\add-thingy.ps1...and that all worked fine.I thought it was more efficient to not specify each line so I changed...
View ArticlePowerShell GUIs • variable available to all forms in a project
In need to have a project global variable that any form in my project can read and write to.Help PleaseThank youStatistics: Posted by CKMHC-it — Thu Oct 03, 2024 8:14 am
View ArticlePowerShell GUIs • Re: variable available to all forms in a project
Depending on the type of project, you might have a file named Globals.ps1. Declaring a variable here should make a it accessible from any form in your project.You can also declare a variable in the...
View ArticlePowerShell • Executing .bat files in powershell remotely
How to run a .bat file on a remote computer with invoke-command?Example: Invoke-Command -ComputerName $textbox4.Text -FilePath \\Server1\c$\\Fic.batCode: Statistics: Posted by CAFMAINE-ET-LOIRE — Wed...
View ArticlePowerShell • Re: Executing .bat files in powershell remotely
You may find the following helpful:https://stackoverflow.com/questions/321 ... powershellStatistics: Posted by brittneyr — Wed Oct 09, 2024 7:11 am
View ArticlePowerShell Studio • Auto Collapsing of Regions on Load
Product: PowerShell Studio 2024 (64 Bit)Build: v5.8.249OS: Windows 11.0.22631PS Version(s): 5.1.22621.1, 7.4.5I have noticed my PS1 scripts do not open with the Regions collapsed since last update.I...
View ArticlePowerShell Studio • Re: Auto Collapsing of Regions on Load
We have been able to reproduce the issue and have filed a bug report for the development team. I'll update you when I have any more information.Statistics: Posted by brittneyr — Wed Oct 09, 2024 1:19 pm
View ArticleWish List and Feature Requests • Re: Adding Pain Events Properties
With the exception of the ProgressBarOverlay control, all controls shown in the toolbox are the default controls in Windows Forms. We do not have any plans to modify these controls at this...
View Article