Search found 4 matches

by liankin128
Thu Sep 09, 2021 12:54 am
Forum: PowerShell
Topic: Run Edge and Hide the browser
Replies: 4
Views: 7272

Re: Run Edge and Hide the browser

jvierra wrote: Wed Sep 08, 2021 12:29 pm You will need to post in an Edge forum as it is not doable using any of IE methods. Edge has a sort of API but I think Microsoft dropped hiding for security reasons.

Post in teh Edge Developer Forum as they should know.
Thank you. I will post in an Edge forum.
by liankin128
Thu Sep 09, 2021 12:54 am
Forum: PowerShell
Topic: Run Edge and Hide the browser
Replies: 4
Views: 7272

Re: Run Edge and Hide the browser

Alexander Riedel wrote: Wed Sep 08, 2021 12:56 pm You say you want to hide it, but you set visible to true...

sorry, I copied wrong one. $false is correct one.
by liankin128
Wed Sep 08, 2021 1:18 am
Forum: PowerShell
Topic: Run Edge and Hide the browser
Replies: 4
Views: 7272

Run Edge and Hide the browser

Hello, To let user access to a specific web site in the background, we use IE11 as below. I'd like do same thing with Edge as IE11 will reach end of support, however, Edge seems not support ComObject. How should I change them ? $InternetExplorer = New-Object -comobject 'InternetExplorer.Application'...
by liankin128
Mon Apr 05, 2021 5:51 pm
Forum: PowerShell GUIs
Topic: PowerShell GUI - Hide actual URLs in RichTextBox
Replies: 2
Views: 3636

PowerShell GUI - Hide actual URLs in RichTextBox

I published a GUI that had a RichTextBox control and enabled multiple URLS in it by adding $output.add_linkclicked({Start-Process -FilePath $_.linktext}). Hyper links worked, however, actual URLs are shown like below. I'd like to know how to hide the actual URLs. Do we have any way to do it? Click ...