search for: 73e009c04

Displaying 10 results from an estimated 10 matches for "73e009c04".

2023 Mar 09
1
[V2V PATCH v2 1/1] convert_windows: add firstboot script to install drivers with pnputil
...nversion we copy the necessary drivers to the directory "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry value. As documented in [1], this should be enough for Windows to find device drivers and successfully install them. However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: Document use of pnputil to install drivers.") describes such issues with Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys driver not being installed. That same commit 73e009c04 suggests adding a firstboot script invoking pnputil at an early stage to...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...nversion we copy the necessary drivers to the directory "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry value. As documented in [1], this should be enough for Windows to find device drivers and successfully install them. However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: Document use of pnputil to install drivers.") describes such issues with Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys driver not being installed. That same commit 73e009c04 suggests adding a firstboot script invoking pnputil at an early stage to...
2023 Mar 08
1
[V2V PATCH 0/1] convert_windows: add firstboot script to install drivers with pnputil
I've been experiencing problem with the drivers not always being installed. This patch merely implements the solution offered by Richard in the commit 73e009c04 ("v2v: windows: Document use of pnputil to install drivers."). The solution wasn't implemented back then, but rather added merely as a comment. Thus I wonder is there some issues which it may cause? The most obvious issue I can think of is that this way we would install all the dri...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...ssary drivers to the directory > "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry > value. As documented in [1], this should be enough for Windows to find > device drivers and successfully install them. > > However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: > Document use of pnputil to install drivers.") describes such issues with > Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys > driver not being installed. > > That same commit 73e009c04 suggests adding a firstboot script invoking &gt...
2023 Mar 09
2
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
..."%systemroot%\Drivers\Virtio", adding it to the DevicePath registry > >> value. As documented in [1], this should be enough for Windows to find > >> device drivers and successfully install them. > >> > >> However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: > >> Document use of pnputil to install drivers.") describes such issues with > >> Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys > >> driver not being installed. > >> > >> That same commit 73e009c04 sug...
2023 Mar 09
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...e directory >> "%systemroot%\Drivers\Virtio", adding it to the DevicePath registry >> value. As documented in [1], this should be enough for Windows to find >> device drivers and successfully install them. >> >> However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: >> Document use of pnputil to install drivers.") describes such issues with >> Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys >> driver not being installed. >> >> That same commit 73e009c04 suggests adding a firstboot...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...emroot%\Drivers\Virtio", adding it to the DevicePath registry >>>> value. As documented in [1], this should be enough for Windows to find >>>> device drivers and successfully install them. >>>> >>>> However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: >>>> Document use of pnputil to install drivers.") describes such issues with >>>> Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys >>>> driver not being installed. >>>> >>>> That same commi...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...Virtio", adding it to the DevicePath registry >>>>> value. As documented in [1], this should be enough for Windows to find >>>>> device drivers and successfully install them. >>>>> >>>>> However, it doesn't always happen. Commit 73e009c04 ("v2v: windows: >>>>> Document use of pnputil to install drivers.") describes such issues with >>>>> Win2k12R2. I'm seeing the same problem with Win2k16 and netkvm.sys >>>>> driver not being installed. >>>>> >>>>...
2023 Mar 09
1
[V2V PATCH v2 0/1] convert_windows: add firstboot script to install drivers with pnputil
v1 discussion: https://listman.redhat.com/archives/libguestfs/2023-March/031001.html v1 -> v2: * Omit redirecting output to a separate log with "%~dpn0.log". Andrey Drobyshev (1): convert_windows: add firstboot script to install drivers with pnputil convert/convert_windows.ml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) -- 2.31.1
2023 Mar 16
3
[V2V PATCH v4 0/2] convert_windows: add firstboot script to install drivers with pnputil
While messing around this script, I added one more tiny patch making wait-pnp log its output into the common log.txt file, as suggested by Richard here: https://listman.redhat.com/archives/libguestfs/2023-March/031023.html Discussion on v3: https://listman.redhat.com/archives/libguestfs/2023-March/031070.html v3 -> v4: * Remove unneeded line break from the script; * Add another small