Search found 1643 matches

by brittneyr
Mon May 03, 2021 10:41 am
Forum: Wish List and Feature Requests
Topic: Live Share
Replies: 1
Views: 11100

Re: Live Share

At this point in time, PowerShell Studio does not include any such similar functionality like Live Share.
by brittneyr
Fri Apr 30, 2021 7:21 am
Forum: PowerShell Studio
Topic: Gui application feature not working via MSI installation
Replies: 5
Views: 5539

Re: Gui application feature not working via MSI installation

This can be done with two custom actions: One to create the shortcut on install and one to delete the shortcut on delete. Though this blog is a little older, it has scripts for creating and removing a desktop shortcut: https://www.sapien.com/blog/2019/08/15/sapien-creating-an-msi-installer-for-a-pac...
by brittneyr
Fri Apr 30, 2021 7:03 am
Forum: PowerShell Studio
Topic: Auto-increment file version no longer working v5.8.188
Replies: 10
Views: 17351

Re: Auto-increment file version no longer working v5.8.188

This issue has been resolved and the fix will be released with the next service build. There currently is no ETA on the service build.
by brittneyr
Thu Apr 29, 2021 2:51 pm
Forum: PowerShell Studio
Topic: Font size preset
Replies: 1
Views: 4118

Re: Font size preset

The font size can changed with keyboard keys and mouse (as you have stated), the Editor Font and Color Settings dialog and from the status bar on the application: SPS_FontSize.png Font size is a special case for editor settings as updating the font size with any of the mentioned ways listed above up...
by brittneyr
Thu Apr 29, 2021 9:48 am
Forum: PowerShell Studio
Topic: Gui application feature not working via MSI installation
Replies: 5
Views: 5539

Re: Gui application feature not working via MSI installation

What is the actual url you are attempting to navigate to? If it is an html file, please make sure it is included with the installer. If your script is packaged to an executable and not running after deploying, is there any errors in the event log? Does your executable run as expected without any err...
by brittneyr
Thu Apr 29, 2021 8:43 am
Forum: PowerShell Studio
Topic: Gui application feature not working via MSI installation
Replies: 5
Views: 5539

Re: Gui application feature not working via MSI installation

I have found no issues packaging and deploying a script with the following code: $ie = new-object -ComObject "InternetExplorer.Application" $ie.Visible = $true $ie.ToolBar = 0 $ie.navigate2('google.com') If you are navigating to a html document, make sure the executable is able to find it....
by brittneyr
Thu Apr 22, 2021 2:11 pm
Forum: PowerShell Studio
Topic: Powershell Studio using "older" Module than local powershell.exe
Replies: 1
Views: 4200

Re: Powershell Studio using "older" Module than local powershell.exe

Are you importing the MicrosoftTeams module in your script? Also make sure that module is listed in the Object Browser panel: SPS_ObjectBrowserPane.png As for the other issue, Install-Module is from the PowerShellGet module. What version of PowerShellGet do you have installed? If you have more than ...
by brittneyr
Thu Apr 22, 2021 7:07 am
Forum: PowerShell Studio
Topic: Load Form before executing code in the script
Replies: 1
Views: 3814

Re: Load Form before executing code in the script

Without seeing any code, I can only make guesses. If you want code to happen at a specific time, please make sure all code is an an event handler. In your case, starting your job after the form is loaded might be a good idea if its affecting performance. In the childform, try starting the job in the...
by brittneyr
Tue Apr 20, 2021 8:01 am
Forum: PowerShell Studio
Topic: Auto-increment file version no longer working v5.8.188
Replies: 10
Views: 17351

Re: Auto-increment file version no longer working v5.8.188

We are looking into this and will get back to you soon!