Recent content by Carenn12

  1. 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 & """"
  2. 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.
  3. 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...
  4. 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"...
  5. C

    Windows 10 Open links in Microsoft Edge using .vbs script

    Using Windows 10. How would the script look like if using Powershell?
  6. C

    Windows 10 Open links in Microsoft Edge using .vbs script

    Hm, nothing happens when doing that.
  7. 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," ")) =...
Back
Top