Search found 64 matches

by Jehoschua
Mon Jun 03, 2019 12:50 pm
Forum: PowerShell Studio
Topic: Please offer an non-MRU-Tab Switching solution!
Replies: 3
Views: 2906

Re: Please offer an non-MRU-Tab Switching solution!

Thank you, David, for your help!, but the real issue is that Sapien PowerShell Studio does not offer a way to disable the MRU Tab switching behavior . For example if the 1st Tab is active and we press Ctrl+Tab two times , then we expect that the 3rd Tab is activated if we now press Ctrl+Shift+Tab on...
by Jehoschua
Sun Jun 02, 2019 3:33 pm
Forum: PowerShell Studio
Topic: Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"
Replies: 5
Views: 3181

Re: Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"

Maybe it is a regional topic, if we use the term 'path', then it never contains a file name.

For us, 'Full File path' is a more obvious term,
because it suggests it contains more than just the path.
by Jehoschua
Sat Jun 01, 2019 1:12 pm
Forum: PowerShell Studio
Topic: Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"
Replies: 5
Views: 3181

Re: Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"

Isn't it fun that PowerShell itself uses 'FullName' to indicate exactly what it means? Get-ChildItem -LiteralPath c:\Temp -File | select -First 1 -ExpandProperty FullName C:\Temp\DefaultAppAssociations.xml and no one else seems to mind or having trouble understanding them You're probably wrong: if w...
by Jehoschua
Sat Jun 01, 2019 1:04 pm
Forum: PowerShell Studio
Topic: Annyoing: Tedious small "Document Selector" (when navigating tabs)
Replies: 3
Views: 2461

Re: Annyoing: Tedious small "Document Selector" (when navigating tabs)

Because this question does not belong to the reported issue, I explain our situation using the deepl.com translation: We are a group of companies with 8 companies and about 650 employees. In our company we have about 60 developers, only about 20 of them work sporadically with PowerShell. Most of the...
by Jehoschua
Sat Jun 01, 2019 4:52 am
Forum: PowerShell Studio
Topic: Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"
Replies: 5
Views: 3181

Anatomy of a Filename - Please fix the wrong naming "Copy Folder Path" and "Copy File Path"

Hello If we use the Tabs context menu to copy the full Filename, we every time have to try to get the right menu item, because Sapien ignores the usual anatomy of a filename :-( This is the usual anatomy of a filename: +---> this is usually named 'Folder Path' or 'File Path' -------------+----------...
by Jehoschua
Sat Jun 01, 2019 4:26 am
Forum: PowerShell Studio
Topic: Please offer an non-MRU-Tab Switching solution!
Replies: 3
Views: 2906

Please offer an non-MRU-Tab Switching solution!

Hello The PowerShell Studio enforces to use the MRU Tab Switching - even the "Document Selector" Dialog is not representing the user selected Tabs order :-[ The MRU Tab Switching is useful to work with 2 or 3 Files. At the latest when 5 or more files are open, it's a nightmare. Then, it's ...
by Jehoschua
Sat Jun 01, 2019 4:09 am
Forum: PowerShell Studio
Topic: Annyoing: Tedious small "Document Selector" (when navigating tabs)
Replies: 3
Views: 2461

Annyoing: Tedious small "Document Selector" (when navigating tabs)

Hello We have about 20 files open in a PowerShell Studio session, and because of the very annoying enforced MRU Tab Switching in PowerShell Studio, we must use the "Document Selector". Our Screens are able to display ~300 characters on one line, but PowerShell Studio does not allow us to d...
by Jehoschua
Tue May 28, 2019 12:25 am
Forum: PowerShell Studio
Topic: Bug: Start the Debugger: Please don't delete the Clipboard
Replies: 4
Views: 2681

Re: Bug: Start the Debugger: Please don't delete the Clipboard

Thank you very much!, this was the Problem. I also relied on the usual behavior to get an Exception on STA related errors... As information for other readers: I selected this solution to enforce STA and added this comment to all my scripts: # %ForceSTA% = True Thanks a lot for your support!, kind re...
by Jehoschua
Mon May 27, 2019 12:34 pm
Forum: PowerShell Studio
Topic: Bug: Start the Debugger: Please don't delete the Clipboard
Replies: 4
Views: 2681

Re: Bug: Start the Debugger: Please don't delete the Clipboard

Good evening I'm sorry for the unprecise report. We're doing this: In PowerShell Studio: Create a new PowerShell Script We add this code and save the file: $Text = Get-Clipboard -Format Text Write-Host "Text: $Text" If we start the Script-File in a PowerShell session, it works as expected ...
by Jehoschua
Mon May 27, 2019 12:12 pm
Forum: PowerShell Studio
Topic: Bug: Debugging nested ('dotsourced') Scripts: Please fix the ignored breakpoints
Replies: 4
Views: 3039

Re: Bug: Debugging nested ('dotsourced') Scripts: Please fix the ignored breakpoints

Good evening

We assign the Script-Filename with it's full, absolute path to a variable and then 'dotsource' it:

Code: Select all

$AddScript = 'c:\scripts\powershell\lib\tools.ps1'
. $AddScript
Thanks a lot, kind regards,
Thomas