Community
    • Login

    I wanna to run cmd.exe to open url in default browser

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    6 Posts 4 Posters 2.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Raymond LewR
      Raymond Lew
      last edited by

      objective: create url in python script; load page in default browser in win10 from npp python script.
      status: aint got no satisfaction

      code frag: I ran the following from console input area at bot of console one line at a time
      x=r’cmd.exe start https:yahoo.com’
      console.write(x) #show x on console

      y=console.run(x)

      console.write(y) #show y on console

      console output:
      Python 2.7.6-notepad++ r2 (default, Apr 21 2014, 19:26:54) [MSC v.1600 32 bit (Intel)]
      Initialisation took 31ms
      Ready.

      x=r’cmd.exe start https:yahoo.com’
      console.write(x) #show x on console
      cmd.exe start https:yahoo.com>>> y=console.run(x)
      Microsoft Windows [Version 10.0.17134.706]
      © 2018 Microsoft Corporation. All rights reserved.

      C:\Program Files (x86)\Notepad++>>>> console.write(y) #show y on console

      help: what am I doing wrong?
      start:http:yahoo.com #launchs yahoo in a new tab in my browser from a cmd window

      Alan KilbornA 1 Reply Last reply Reply Quote 1
      • Alan KilbornA
        Alan Kilborn @Raymond Lew
        last edited by

        @Raymond-Lew

        Not sure what the end goal truly is. If the goal is simply to open a url in a browser there are better ways. Python has process control commands, why not use them rather than trying some awful convolution with CMD.EXE?

        1 Reply Last reply Reply Quote 0
        • Raymond LewR
          Raymond Lew
          last edited by

          @Alan Kilborn
          my end goal is to simply launch a uri(constructed from text in my doc) in my default browser as a new tab I’m a python newbie.so if there are good, simple python ways to do what I want, I obviously don’t know where to start. I’m happy to follow any advice/pointers you’re ready to offer. let me know If you would like more backgound; the yahoo uri is just my quick test case, obviously does not work. Thanks in Advance,

          EkopalypseE 1 Reply Last reply Reply Quote 0
          • EkopalypseE
            Ekopalypse @Raymond Lew
            last edited by Ekopalypse

            @Raymond-Lew

            within the script you might do

            import webbrowser
            webbrowser.open(r'https://notepad-plus-plus.org/community')
            

            Just a note, if you are using PythonScript plugin you have to use python2 syntax.
            Migration to python3 has not be done yet. and to add code like this to the forum
            here, you can type ~~~ YOUR CODE ~~~

            1 Reply Last reply Reply Quote 2
            • PeterJonesP
              PeterJones
              last edited by PeterJones

              @Raymond-Lew said:

              help: what am I doing wrong?

              I’ll assume that the forum formatting was what deleted your //, because what rendered as https:yahoo.com would never work, since it’s really https://yahoo.com.

              Notice you said “start:http:yahoo.com #launchs yahoo in a new tab in my browser from a cmd window”. And then you didn’t pass “start” to the console.run() command? That was part of your problem. Unfortunately, start is not an executable that console.run() can see. Instead, you have to tell console.run() to launch cmd.exe, and tell cmd.exe to launch start, and tell start to launch the URL.

              The following sequence of interactive commands opened three tabs of yahoo.com in my default browser:

              >>> console.run('cmd /c start https://yahoo.com/')
              0
              >>> url = r'https://yahoo.com/'
              >>> console.run('cmd /c start '+url)
              0
              >>> console.run('cmd /c start {}'.format(url))
              0
              
              1 Reply Last reply Reply Quote 3
              • Raymond LewR
                Raymond Lew
                last edited by

                @kopalypse
                Thank you for the webbrowser suggestion. I tried it and it gets me 90% to my objective.
                on my PC It lauches a window in internet exploror 11, not my default browser. Thank you for the suggestion and I will look deeper down this path to see if I can change this default.

                @ PeterJones
                your code samples and comments are perfect guidance for my knowledge level.
                I have much to learn, thank you all for your responses.

                1 Reply Last reply Reply Quote 3
                • First post
                  Last post
                The Community of users of the Notepad++ text editor.
                Powered by NodeBB | Contributors