diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-17 09:55:45 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-17 09:55:45 -0500 |
commit | 2d7920941b6a19757911c54181a971d3d35bde02 (patch) | |
tree | 5071da0f0b7a8df31029c10c83558e429dd29b46 /pkg | |
parent | 4f906bddd3f4261b2d45bf37a4adfe795c42967e (diff) | |
download | goexec-2d7920941b6a19757911c54181a971d3d35bde02.tar.gz goexec-2d7920941b6a19757911c54181a971d3d35bde02.zip |
Update output,IO; add output support to WMI
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/goexec/dcom/module.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/goexec/dcom/module.go b/pkg/goexec/dcom/module.go index fd331d2..71e4f6e 100644 --- a/pkg/goexec/dcom/module.go +++ b/pkg/goexec/dcom/module.go @@ -102,7 +102,7 @@ func (m *Dcom) Init(ctx context.Context) (err error) { return fmt.Errorf("remote create instance response: PropertiesOutInfo is nil") } - opts = append(opts, si.RemoteReply.OXIDBindings.EndpointsByProtocol("ncacn_ip_tcp")...) // TODO + opts = append(opts, si.RemoteReply.OXIDBindings.EndpointsByProtocol("ncacn_ip_tcp")...) err = m.Client.Reconnect(ctx, opts...) if err != nil { |