From f3e9a6369c6001b82224eebc883d0d58b4b13508 Mon Sep 17 00:00:00 2001
From: Brent Baude <bbaude@redhat.com>
Date: Wed, 20 Sep 2023 15:10:46 -0500
Subject: [PATCH] windows cannot "do" extra files

if you use the extra files function on exec commands, windows loses it's
mind.

[NO NEW TESTS NEEDED]

Signed-off-by: Brent Baude <bbaude@redhat.com>
---
 pkg/machine/hyperv/machine.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pkg/machine/hyperv/machine.go b/pkg/machine/hyperv/machine.go
index 361075647d..6e11967c3a 100644
--- a/pkg/machine/hyperv/machine.go
+++ b/pkg/machine/hyperv/machine.go
@@ -633,7 +633,6 @@ func (m *HyperVMachine) startHostNetworking() (string, machine.APIForwardingStat
 	}
 
 	c := cmd.Cmd(gvproxyBinary)
-	c.ExtraFiles = []*os.File{dnr, dnw, dnw}
 	if err := c.Start(); err != nil {
 		return "", 0, fmt.Errorf("unable to execute: %q: %w", cmd, err)
 	}