1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
package winrm
// Shell is the local view of a WinRM Shell of a given Client
type Shell struct {
client *Client
id string
}
// Execute command on the given Shell, returning either an error or a Command
func (s *Shell) Execute(command string, arguments ...string) (*Command, error) {
request := NewExecuteCommandRequest(s.client.url, s.id, command, arguments, &s.client.Parameters)
defer request.Free()
response, err := s.client.sendRequest(request)
if err != nil {
return nil, err
}
commandID, err := ParseExecuteCommandResponse(response)
if err != nil {
return nil, err
}
cmd := newCommand(s, commandID)
return cmd, nil
}
// Close will terminate this shell. No commands can be issued once the shell is closed.
func (s *Shell) Close() error {
request := NewDeleteShellRequest(s.client.url, s.id, &s.client.Parameters)
defer request.Free()
_, err := s.client.sendRequest(request)
return err
}
|