Search found 21 matches

by 4lch4_ExtraTxt
Tue Mar 09, 2021 8:10 am
Forum: PowerShell
Topic: Problem with powershell Studio
Replies: 3
Views: 15115

Re: Problem with powershell Studio

Aww, but Alex, I thought you were a mind reader? :P
by 4lch4_ExtraTxt
Sat Feb 13, 2021 12:41 pm
Forum: PowerShell Studio
Topic: Column Guides off by 1
Replies: 2
Views: 6824

Column Guides off by 1

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 will be forced to ask you for this information. *** Product, version and build: PowerShell Studio ...
by 4lch4_ExtraTxt
Fri Dec 20, 2019 7:05 pm
Forum: PowerShell Studio
Topic: Different File keybinding between SPS and new packager
Replies: 1
Views: 2400

Different File keybinding between SPS and new packager

Product, version and build: SPS 5.6.170 32 or 64 bit version of product: 64-bit Operating system: Windows 10 32 or 64 bit OS: 64-bit Hey team, I love the new script packager, it looks so nice! I just have one complaint, and that is the keyboard shortcut for opening File. It's different between SPS a...
by 4lch4_ExtraTxt
Sat Jul 06, 2019 12:22 am
Forum: PowerShell Studio
Topic: Formatting option not respecting choice
Replies: 2
Views: 3078

Re: Formatting option not respecting choice

Whoops.. Thought I had already updated 😅

Thanks!
by 4lch4_ExtraTxt
Thu Jul 04, 2019 8:27 pm
Forum: PowerShell Studio
Topic: Formatting option not respecting choice
Replies: 2
Views: 3078

Formatting option not respecting choice

Product, version and build: PowerShell Studio 2019 5.6.164 32 or 64 bit version of product: 64-bit Operating system: Windows 10 1803 32 or 64 bit OS: 64-bit The option for Place open brace on a new line in Options → Formatting → Formatting is not respecting the toggled selection for me. I currently ...
by 4lch4_ExtraTxt
Sun Mar 17, 2019 3:23 am
Forum: PowerShell
Topic: Select-Object : Cannot convert System.Management.Automation.PSObject
Replies: 3
Views: 4612

Re: Select-Object : Cannot convert System.Management.Automation.PSObject

Since the data you posted was actually tab separated, I added in commas and made it a real csv data set: Hitroll,20,19,18 150,3CP,4CP,4EP 149,3BP,4CP,4DP 148,3AP,4BP,4CP 147,3AP,4BP,4CP 146,3AP,4BP,4CP 145,3AK,4AP,4CP 144,3,4AP,4BP Using this data, you can do something like so and you'll get the fol...
by 4lch4_ExtraTxt
Fri Feb 01, 2019 9:32 am
Forum: PowerShell
Topic: Launch IE tabs based on TXT file
Replies: 6
Views: 4049

Re: Launch IE tabs based on TXT file

I can now confirm that if you have Chrome open and run the above code, it will open the pages in new tabs.
by 4lch4_ExtraTxt
Fri Feb 01, 2019 8:42 am
Forum: PowerShell
Topic: Launch IE tabs based on TXT file
Replies: 6
Views: 4049

Re: Launch IE tabs based on TXT file

This should do the trick: $URL = Get-Content C:\Users\xadmin\Documents\Dashboard\URL.txt $URL | ForEach-object { Start-Process -FilePath "chrome.exe" -ArgumentList $_ } You get your URL data from the file, pipe it to ForEach-Object as JVierra recommended, and then execute the Start-Process...
by 4lch4_ExtraTxt
Fri Jan 25, 2019 8:27 pm
Forum: Feedback
Topic: SAPIEN Store Returning an Error
Replies: 3
Views: 13885

Re: SAPIEN Store Returning an Error

No problem! Happy to help :)
by 4lch4_ExtraTxt
Fri Jan 25, 2019 8:27 pm
Forum: Feedback
Topic: Windows Application vs Windows Form Application
Replies: 1
Views: 12464

Windows Application vs Windows Form Application

In a recent blog post Alex talked about how to create a notepad-esque application using PowerShell and the SAPIENHost object. We're looking into building an application just like this for our service desk and I'm wondering, what are the benefits are of doing this over using a Forms project with a Ri...