2019-09-05 18:55:53 +00:00
|
|
|
# go-powershell
|
|
|
|
|
2020-12-01 15:12:18 +00:00
|
|
|
_NOTE: this repository has been recently (2020-11-18) moved out of the github.com/rancher org to github.com/k3s-io
|
|
|
|
supporting the [acceptance of K3s as a CNCF sandbox project](https://github.com/cncf/toc/pull/447)_.
|
|
|
|
---
|
|
|
|
|
2019-09-05 18:55:53 +00:00
|
|
|
This package is inspired by [jPowerShell](https://github.com/profesorfalken/jPowerShell)
|
|
|
|
and allows one to run and remote-control a PowerShell session. Use this if you
|
|
|
|
don't have a static script that you want to execute, bur rather run dynamic
|
|
|
|
commands.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2020-12-01 15:12:18 +00:00
|
|
|
go get github.com/k3s-io/go-powershell
|
2019-09-05 18:55:53 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
To start a PowerShell shell, you need a backend. Backends take care of starting
|
|
|
|
and controlling the actual powershell.exe process. In most cases, you will want
|
|
|
|
to use the Local backend, which just uses ``os/exec`` to start the process.
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2020-12-01 15:12:18 +00:00
|
|
|
ps "github.com/k3s-io/go-powershell"
|
|
|
|
"github.com/k3s-io/go-powershell/backend"
|
2019-09-05 18:55:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// choose a backend
|
|
|
|
back := &backend.Local{}
|
|
|
|
|
|
|
|
// start a local powershell process
|
|
|
|
shell, err := ps.New(back)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer shell.Exit()
|
|
|
|
|
|
|
|
// ... and interact with it
|
|
|
|
stdout, stderr, err := shell.Execute("Get-WmiObject -Class Win32_Processor")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(stdout)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Remote Sessions
|
|
|
|
|
|
|
|
You can use an existing PS shell to use PSSession cmdlets to connect to remote
|
|
|
|
computers. Instead of manually handling that, you can use the Session middleware,
|
|
|
|
which takes care of authentication. Note that you can still use the "raw" shell
|
|
|
|
to execute commands on the computer where the powershell host process is running.
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2020-12-01 15:12:18 +00:00
|
|
|
ps "github.com/k3s-io/go-powershell"
|
|
|
|
"github.com/k3s-io/go-powershell/backend"
|
|
|
|
"github.com/k3s-io/go-powershell/middleware"
|
2019-09-05 18:55:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// choose a backend
|
|
|
|
back := &backend.Local{}
|
|
|
|
|
|
|
|
// start a local powershell process
|
|
|
|
shell, err := ps.New(back)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepare remote session configuration
|
|
|
|
config := middleware.NewSessionConfig()
|
|
|
|
config.ComputerName = "remote-pc-1"
|
|
|
|
|
|
|
|
// create a new shell by wrapping the existing one in the session middleware
|
|
|
|
session, err := middleware.NewSession(shell, config)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer session.Exit() // will also close the underlying ps shell!
|
|
|
|
|
|
|
|
// everything run via the session is run on the remote machine
|
|
|
|
stdout, stderr, err = session.Execute("Get-WmiObject -Class Win32_Processor")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(stdout)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that a single shell instance is not safe for concurrent use, as are remote
|
|
|
|
sessions. You can have as many remote sessions using the same shell as you like,
|
|
|
|
but you must execute commands serially. If you need concurrency, you can just
|
|
|
|
spawn multiple PowerShell processes (i.e. call ``.New()`` multiple times).
|
|
|
|
|
|
|
|
Also, note that all commands that you execute are wrapped in special echo
|
|
|
|
statements to delimit the stdout/stderr streams. After ``.Execute()``ing a command,
|
|
|
|
you can therefore not access ``$LastExitCode`` anymore and expect meaningful
|
|
|
|
results.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
MIT, see LICENSE file.
|