search for: launched_by_setup_ex

Displaying 9 results from an estimated 9 matches for "launched_by_setup_ex".

Did you mean: launched_by_setup_exe
2018 Nov 16
4
[PATCH 0/2] v2v: uninstall the VMware Tools from Windows guests
It seems newer versions of VMware Tools for Windows can be uninstalled also when the guest does not run on VMware anymore. Hence, attempt to uninstall them during a conversion, reusing the same code already used to uninstall Parallel Tools. This was tested with the following Windows guests: - Windows 2008r2 - Windows 2012r2 - Windows 2016 - Windows 7 - Windows 8 - Windows 10 Pino Toscano (2):
2018 Nov 16
0
[PATCH 1/2] v2v: windows: factor uninstall commands search
...log\"" ^ - " REBOOT=ReallySuppress REMOVE=ALL" ^ - (* without these custom Parallels-specific MSI properties the - * uninstaller still shows a no-way-out reboot dialog *) - " PREVENT_REBOOT=Yes LAUNCHED_BY_SETUP_EXE=Yes" in + " REBOOT=ReallySuppress REMOVE=ALL" in + let uninst = + match extra_uninstall_string with + | None -> uninst + | Some s -> uninst ^ " " ^ s in List.push_fron...
2016 Jan 20
1
[PATCH] convert_windows: uninstall Parallels Tools on first boot
...log\"" ^ + " REBOOT=ReallySuppress REMOVE=ALL" ^ + (* without these custom Parallels-specific MSI properties the + * uninstaller still shows a no-way-out reboot dialog *) + " PREVENT_REBOOT=Yes LAUNCHED_BY_SETUP_EXE=Yes" in + + uninsts := uninst :: !uninsts + with + Not_found -> () + ) uninstnodes + with + Not_found -> () + ); + + !uninsts + in + (*----------------------------------------------------------------------*) (*...
2018 Nov 16
0
[PATCH 2/2] v2v: windows: uninstall VMware Tools
...insertions(+), 1 deletion(-) diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml index 8740afd1c..2d2b6adfe 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -192,6 +192,13 @@ let convert (g : G.guestfs) inspect source output rcaps = Some "PREVENT_REBOOT=Yes LAUNCHED_BY_SETUP_EXE=Yes" in unistallation_commands "Parallels Tools" matchfn extra_uninstall_string in + (* Locate and retrieve all uninstallation commands for VMware Tools. *) + let vmwaretools_uninst = + let matchfn s = + String.find s "VMware Tools" != -1 + in + unis...
2016 Jul 07
12
[PATCH v3 0/8] v2v: Move Curl wrapper to mllib and more.
v2 -> v3: - Changes to the Curl API suggested by Pino.
2016 Jul 07
9
[PATCH v2 0/8] v2v: Move Curl wrapper to mllib and use it for virt-builder (and more).
v1 -> v2: - Fixed the bug with precedence of if / @. - Add some imperative list operators inspired by Perl, and use those for constructing the Curl arguments, and more. Rich.
2017 Nov 21
2
[PATCH v3 0/2] common/mlstdutils: Extend the List module.
v2 -> v3: - Renamed List.assoc_ -> List.assoc_lbl. - Rebased on top of current master branch. Rich.
2017 Oct 08
4
[PATCH 0/3] common/mlstdutils: Add Std_utils List and Option modules.
In Std_utils we already extend Char and String. These commits take it a little further by extending List and adding a new Option submodule. All basically simple refactoring. Rich.
2017 Oct 08
7
[[PATCH v2 0/4] common/mlstdutils: Add Std_utils List and Option modules.
This time including the first commit ...