search for: reg_restore_str

Displaying 4 results from an estimated 4 matches for "reg_restore_str".

2016 Aug 23
0
Re: [PATCH 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...uestfs"; "Firstboot"; > + "pnp_wait.exe"] in > + (* suppress "New Hardware Wizard" until PnP settles (see > + * https://support.microsoft.com/en-us/kb/938596) and restore it > + * afterwards *) > + let reg_restore_str = > + match inspect.i_major_version, inspect.i_minor_version with > + (* WinXP 32bit *) > + | 5, 1 -> > + let key_path = ["Policies"; "Microsoft"; "Windows"; "DeviceInstall"; > + "S...
2016 Sep 01
0
Re: [PATCH v2 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...uestfs"; "Firstboot"; > + "pnp_wait.exe"] in > + (* suppress "New Hardware Wizard" until PnP settles (see > + * https://support.microsoft.com/en-us/kb/938596) and restore it > + * afterwards *) > + let reg_restore_str = > + match inspect.i_major_version, inspect.i_minor_version with > + (* WinXP 32bit *) > + | 5, 1 -> > + let key_path = ["Policies"; "Microsoft"; "Windows"; "DeviceInstall"; > + "S...
2016 Sep 01
3
[PATCH v2 0/2] v2v:windows: prevent conflicts with PnP on firstboot
Wait for driver installations fired by the PnP manager to complete before running firstboot scripts. The first patch is a minor refactoring to pave the way for the second patch. The latter contains the bulk of the changes as well as the description of the idea. Roman Kagan (2): v2v:windows: factor out getting CurrentControlSet v2v:windows: prevent conflicts with PnP on firstboot --- v1
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