Search found 254 matches

by mqh77777
Mon Apr 29, 2024 10:05 am
Forum: PowerShell GUIs
Topic: nothing within a script block executes
Replies: 3
Views: 2711

Re: nothing within a script block executes

So far not even ChatGPT can write code that works the way I need. I have the computer name field ($PC) which can be any computer in your Org. I need to run cmd.exe on the remote $PC. so it has to run CMD /c " then an .EXE that is on the remote machine" . <<<< yes this .exe is on my remote ...
by mqh77777
Sat Apr 27, 2024 11:37 am
Forum: PowerShell GUIs
Topic: nothing within a script block executes
Replies: 3
Views: 2711

nothing within a script block executes

Product: PowerShell Studio 2023 (64 Bit) Build: v5.8.232 OS: Windows 11.0.22631 PS Version(s): 5.1.22621.1, 7.4.2 I have this simple code. the $statusbar text only works outside of the Invoke-Command -Scriptblock. Why? I need to have a few commands run within the Invoke-Command that run on the remot...
by mqh77777
Tue Feb 13, 2024 9:10 am
Forum: Wish List and Feature Requests
Topic: Azure / Intune
Replies: 1
Views: 4476

Azure / Intune

Does Sapian have any plans on making tools that can work with Azure/Intune? Namely, any hope of having a tool that can write to LogAnalytics or reports in Intune for reporting of data?
Thank you.
by mqh77777
Mon Feb 05, 2024 7:12 am
Forum: PowerShell GUIs
Topic: How To Install Software from GUI
Replies: 1
Views: 1658

Re: How To Install Software from GUI

Hi, I'm interested in doing something similar. Question: when you compile your script do you want the compiled .EXE to include Chrome or do you simply just want a button on your form to point to the Chrome installer? I want to compile my Form into an .EXE and have that compiled .EXE contain other fi...
by mqh77777
Tue Jan 23, 2024 11:21 am
Forum: PowerShell GUIs
Topic: Proper Window Size When Run
Replies: 1
Views: 1591

Proper Window Size When Run

Product: PowerShell Studio 2023 (64 Bit) Build: v5.8.232 OS: Windows 11.0.22631 PS Version(s): 5.1.22621.1, 7.2.5 I have a form that has many buttons. When I compile it into an .EXE and run it on the machine that has PowerShell Studio installed the utility displays properly. Its not too small and it...
by mqh77777
Sat Jan 20, 2024 10:21 am
Forum: PowerShell GUIs
Topic: Format Output in Richtext
Replies: 5
Views: 2463

Re: Format Output in Richtext

THAT WAS IT !!!!! Lucida Console font fixed it !! Thank you.
by mqh77777
Fri Jan 19, 2024 1:22 pm
Forum: PowerShell GUIs
Topic: Format Output in Richtext
Replies: 5
Views: 2463

Re: Format Output in Richtext

no, format table does not work either. I could have sworn there was a setting on the richtext properties that fixed misaligned text...
by mqh77777
Fri Jan 19, 2024 6:43 am
Forum: PowerShell GUIs
Topic: Format Output in Richtext
Replies: 5
Views: 2463

Re: Format Output in Richtext

When I write to my richtextbox I use this code $results has lots of data within it. Yet the data that is displayed is not formatted. It is scattered about the window. $textResults = $results | Out-String $richtextbox1.AppendText($textResults) $statusbar1.text = 'All done!' What setting will make you...
by mqh77777
Thu Jan 18, 2024 3:00 pm
Forum: PowerShell GUIs
Topic: Format Output in Richtext
Replies: 5
Views: 2463

Format Output in Richtext

Product: PowerShell Studio 2023 (64 Bit) Build: v5.8.232 OS: Windows 11.0.22631 PS Version(s): 5.1.22621.1, 7.2.5 I used to know how to do this. I have some buttons on a form. You click a button and it displays some pc information in the richtextbox. All data is correct but the formatting is off. It...
by mqh77777
Tue Jan 16, 2024 4:10 pm
Forum: PowerShell GUIs
Topic: Changing Forms
Replies: 0
Views: 4481

Changing Forms

Product: PowerShell Studio 2023 (64 Bit) Build: v5.8.232 OS: Windows 11.0.22631 PS Version(s): 5.1.22621.1, 7.2.5 Hello. I have a FORM that has many buttons, a Richtext Box for displaying output and Tab pages. Each tab page has many buttons. Without having buttons call other forms is it possible to ...