X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=tools%2Fvirt-win-reg;h=695e619beb547cdb8a030abe1faaffcc91f1b40b;hb=70d65ae9694fa601bfec23e68f07bd9c1e180ad0;hp=c22b73cb1ee6e8d6cd4ec44c91002438dc541d53;hpb=bc484e99c23842aa67d2b533023eeaaa30fd6868;p=libguestfs.git diff --git a/tools/virt-win-reg b/tools/virt-win-reg index c22b73c..695e619 100755 --- a/tools/virt-win-reg +++ b/tools/virt-win-reg @@ -50,14 +50,14 @@ virt-win-reg - Export and merge Windows Registry entries from a Windows guest =head1 WARNING -You must I use C with the C<--merge> option on live +You must I use C with the I<--merge> option on live virtual machines. If you do this, you I get irreversible disk corruption in the VM. C tries to stop you from doing this, but doesn't catch all cases. Modifying the Windows Registry is an inherently risky operation. The format is deliberately obscure and undocumented, and Registry changes -can leave the system unbootable. Therefore when using the C<--merge> +can leave the system unbootable. Therefore when using the I<--merge> option, make sure you have a reliable backup first. =head1 DESCRIPTION @@ -68,7 +68,7 @@ Windows guest. The first parameter is the libvirt guest name or the raw disk image of a Windows guest. -If C<--merge> is I specified, then the chosen registry +If I<--merge> is I specified, then the chosen registry key is displayed/exported (recursively). For example: $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft' @@ -80,7 +80,7 @@ for example: $ virt-win-reg Windows7 $cvkey ProductName Windows 7 Enterprise -With C<--merge>, you can merge a textual regedit file into +With I<--merge>, you can merge a textual regedit file into the Windows Registry: $ virt-win-reg --merge Windows7 changes.reg @@ -160,7 +160,7 @@ In merge mode, this merges a textual regedit file into the Windows Registry of the virtual machine. If this flag is I given then virt-win-reg displays or exports Registry entries instead. -Note that C<--merge> is I to use on live virtual machines, and +Note that I<--merge> is I to use on live virtual machines, and will result in disk corruption. However exporting (without this flag) is always safe. @@ -423,7 +423,7 @@ UTF-16LE with Windows-style line endings, you may need to reencode the whole file before or after processing. To reencode a file from Windows format to Linux (before processing it -with the C<--merge> option), you would do something like this: +with the I<--merge> option), you would do something like this: iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg @@ -442,7 +442,7 @@ file with Windows-style (CRLF) line endings, like this: software.reg: Little-endian UTF-16 Unicode text, with very long lines, with CRLF line terminators -This file would need conversion before you could C<--merge> it. +This file would need conversion before you could I<--merge> it. =head1 CurrentControlSet etc. @@ -466,6 +466,96 @@ to find out is to look at the C key: Similarly, other C keys in the path may need to be replaced. +=head1 WINDOWS TIPS + +Note that some of these tips modify the guest disk image. The guest +I be shut off, else you will get disk corruption. + +=head2 RUNNING A BATCH SCRIPT WHEN A USER LOGS IN + +Prepare a DOS batch script, VBScript or executable. Upload this using +L. For this example the script is called C +and it is uploaded into C: + + guestfish -i -d WindowsGuest upload test.bat /test.bat + +Prepare a regedit file containing the registry change: + + cat > test.reg <<'EOF' + [HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce] + "Test"="c:\\test.bat" + EOF + +In this example we use the key C which means that the script +will run precisely once when the first user logs in. If you want it +to run every time a user logs in, replace C with C. + +Now update the registry: + + virt-win-reg --merge WindowsGuest test.reg + +=head2 INSTALLING A SERVICE + +This section assumes you are familiar with Windows services, and you +either have a program which handles the Windows Service Control +Protocol directly or you want to run any program using a service +wrapper like SrvAny or the free RHSrvAny. + +First upload the program and optionally the service wrapper. In this +case the test program is called C and we are using the +RHSrvAny wrapper: + + guestfish -i -d WindowsGuest < service.reg <<'EOF' + [HKLM\SYSTEM\ControlSet001\services\RHSrvAny] + "Type"=dword:00000010 + "Start"=dword:00000002 + "ErrorControl"=dword:00000001 + "ImagePath"="c:\\rhsrvany.exe" + "DisplayName"="RHSrvAny" + "ObjectName"="NetworkService" + + [HKLM\SYSTEM\ControlSet001\services\RHSrvAny\Parameters] + "CommandLine"="c:\\test.exe" + "PWD"="c:\\Temp" + EOF + +Notes: + +=over 4 + +=item * + +For use of C see the section above in this manual page. +You may need to adjust this according to the control set that is in +use by the guest. + +=item * + +C<"ObjectName"> controls the privileges that the service will have. +An alternative is C<"ObjectName"="LocalSystem"> which would be the +most privileged account. + +=item * + +For the meaning of the magic numbers, see this Microsoft KB article: +L. + +=back + +Update the registry: + + virt-win-reg --merge WindowsGuest service.reg + =head1 SHELL QUOTING Be careful when passing parameters containing C<\> (backslash) in the