Python script for remotely shutting down Windows PC from Linux ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • diffuser78@gmail.com

    #1

    Python script for remotely shutting down Windows PC from Linux ?

    I am a newbie in Python and want your help in writing python script.

    I have to remotely shut the windows px from linux box. I run OpenSSH on
    windows PC. I remotely connect it from Linux box using
    .....

    ssh Admin@IP_ADDR # connects me fine now without problems
    (LOCAL)

    Next, I wrote a script that would log me in and also shut the windows
    pc down, so I wrote a script

    ssh Admin@IP_ADDR # connects me fine now without problems (LOCAL)
    shutdown -s # This is a windows command (REMOTE)

    Now, when I run this script, it successfully logs me into the windows
    box but doesn't run the second part of the script which is to shut down
    the windows PC. Can you please tell me why ??

    Is there a way using Python script to perform this operation ?

    Every help is appreciated.

  • Diez B. Roggisch

    #2
    Re: Python script for remotely shutting down Windows PC from Linux ?

    > Next, I wrote a script that would log me in and also shut the windows[color=blue]
    > pc down, so I wrote a script
    >
    > ssh Admin@IP_ADDR # connects me fine now without problems (LOCAL)
    > shutdown -s # This is a windows command (REMOTE)
    >
    > Now, when I run this script, it successfully logs me into the windows
    > box but doesn't run the second part of the script which is to shut down
    > the windows PC. Can you please tell me why ??[/color]


    Because you execute both commands locally. ssh opens a connection to the
    remote machine. Then if that connection is terminated, the next command is
    executed. LOCALLY!

    Use

    ssh Admin@IP_ADDR shutdown -s

    to execute commands remote using ssh.
    [color=blue]
    > Is there a way using Python script to perform this operation ?[/color]

    use the subprocess module or shellutils to execute the above.

    Diez

    Comment

    • diffuser78@gmail.com

      #3
      Re: Python script for remotely shutting down Windows PC from Linux ?

      > ssh Admin@IP_ADDR shutdown -s

      Than indeed worked....Thank s
      [color=blue]
      > use the subprocess module or shellutils to execute the above.[/color]

      I am a python newbie and how easy or difficult it is using the sub
      process module and shell utils.

      Thanks,

      I really appreciate your help.

      Comment

      • bruno at modulix

        #4
        Re: Python script for remotely shutting down Windows PC from Linux?

        diffuser78@gmai l.com wrote:[color=blue][color=green]
        >>ssh Admin@IP_ADDR shutdown -s[/color]
        >
        >
        > Than indeed worked....Thank s
        >[color=green]
        > > use the subprocess module or shellutils to execute the above.[/color]
        >
        > I am a python newbie and how easy or difficult it is using the sub
        > process module and shell utils.[/color]

        It's as difficult as :
        1. read the doc
        2. write some code
        3. test it
        4. if you're in trouble, go back to 1.
        5. if you're still in trouble, post here with relevant infos


        --
        bruno desthuilliers
        python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
        p in 'onurb@xiludom. gro'.split('@')])"

        Comment

        Working...