winrm icon indicating copy to clipboard operation
winrm copied to clipboard

Command-line tool and library for Windows remote command execution in Go

Results 42 winrm issues
Sort by recently updated
recently updated
newest added

Fixes #161 where commands that cause the host to shut down never complete and run forever.

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.18.0 to 0.23.0. Commits c48da13 http2: fix TestServerContinuationFlood flakes 762b58d http2: fix tipos in comment ba87210 http2: close connections when receiving too many headers ebc8168 all: fix...

dependencies

I think `DefaultParameters` tend to be unintentionally mutated. Because `DefaultParameters` is a pointer, following code will pollute it. ``` params := winrm.DefaultParameters params.Timeout = timeout // ⚠️ Ouch! winrm.DefaultParameters is...

New directcommand.go with object that sends commands directly to the remote. Noprofile and consolemode_stdin off, so remote powershell doesn't think it's interactive This can be used to run a shell...

It appears a [recent commit](https://github.com/masterzen/winrm/pull/148) broke some assumptions in [stembuild that executes a sysprep shutdown command that never finishes](https://github.com/cloudfoundry/stembuild/issues/27). Is there a recommended method of executing a winrm command which...

Muscle memory keeps giving me `main`. Nowadays renaming should be pretty much just going to settings and renaming the default branch.

When I am trying to connect to windows machine using **NTLM** authentication **concurrently** ( using go routine ), winrm behaves randomely ( most of time it gives error ). Here...