32 lines
965 B
Go
32 lines
965 B
Go
package winrm
|
|
|
|
// Shell is the local view of a WinRM Shell of a given Client
|
|
type Shell struct {
|
|
client *Client
|
|
ShellId string
|
|
}
|
|
|
|
// Execute command on the given Shell, returning either an error or a Command
|
|
func (shell *Shell) Execute(command string, arguments ...string) (cmd *Command, err error) {
|
|
request := NewExecuteCommandRequest(shell.client.url, shell.ShellId, command, arguments, &shell.client.Parameters)
|
|
defer request.Free()
|
|
|
|
response, err := shell.client.sendRequest(request)
|
|
if err == nil {
|
|
var commandId string
|
|
if commandId, err = ParseExecuteCommandResponse(response); err == nil {
|
|
cmd = newCommand(shell, commandId)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// Close will terminate this shell. No commands can be issued once the shell is closed.
|
|
func (shell *Shell) Close() (err error) {
|
|
request := NewDeleteShellRequest(shell.client.url, shell.ShellId, &shell.client.Parameters)
|
|
defer request.Free()
|
|
|
|
_, err = shell.client.sendRequest(request)
|
|
return
|
|
}
|