-
C
Windows 10 Open links in Microsoft Edge using .vbs script
Thanks! Had to do some small adjustments, but this works like a charm: Dim shell Set Shell = CreateObject("WScript.Shell") Shell.Run """" & "microsoft-edge:" & URL & """"- Carenn12
- Post #14
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
The .vbs file is 4000 lines of code, so I was hoping to find a easier solution.- Carenn12
- Post #12
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
But there are multiple function in my .vbs file that contains lines like this: Chrome "https://domain.my.salesforce.com/apex/ScreenPopView?nr=&cID=" + Params.ParamByName("cID") + "&crpnr=" + NR And that Chrome is connected and runs by the Sub Chrome(URL). Do you mean I should replace that...- Carenn12
- Post #10
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
So like this?: Sub Chrome(URL) '---------------------------------------------------------------------- ' Purpose: Launch Chrome ' Arguments: <URL> '---------------------------------------------------------------------- if (ubound(split(URL," ")) = 0) then Start-Process -FilePath "msedge"...- Carenn12
- Post #8
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
Using Windows 10. How would the script look like if using Powershell?- Carenn12
- Post #6
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
Hm, nothing happens when doing that.- Carenn12
- Post #3
- Forum: Windows Help and Support
-
C
Windows 10 Open links in Microsoft Edge using .vbs script
Currently I am using this script to open links in Chrome: Sub Chrome(URL) '---------------------------------------------------------------------- ' Purpose: Launch Chrome ' Arguments: <URL> '---------------------------------------------------------------------- if (ubound(split(URL," ")) =...- Carenn12
- Thread
- microsoft edge vbs windows 10
- Replies: 16
- Forum: Windows Help and Support