search for: hivexget

Displaying 15 results from an estimated 15 matches for "hivexget".

2014 Jan 16
2
[PATCH 1/2] hivex: ruby: find files to install in correct directories when building out-of-tree
--- ruby/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruby/Makefile.am b/ruby/Makefile.am index b6654d3..e78ab59 100644 --- a/ruby/Makefile.am +++ b/ruby/Makefile.am @@ -51,7 +51,7 @@ RUBY_SITEARCH := $(shell $(RUBY) -rrbconfig -e "puts RbConfig::CONFIG['sitearchd install: $(MKDIR_P) $(DESTDIR)$(RUBY_SITELIB) $(MKDIR_P)
2017 Apr 11
2
Virt-win-reg gives weird error
Hello, I have just compiled the libguestfs version 1.34.2. When I run virt-win-reg vm-1051-disk-1.qcow2 'HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce' "Test"="c:\\Users\Administrator\test.bat” I get the following error: Can't exec "hivexget": No such file or directory at /usr/local/bin/virt-win-reg line 351. hivexget failed: -1 at /usr/local/bin/virt-win-reg line 351. Any idea how to fix it? Regards, Peter
2014 Jan 16
0
[PATCH 2/2] hivex: Make sure that pod2html finds the POD file when building out-of-tree
...--htmldir html \ --outfile html/hivexregedit.1.html \ - regedit/hivexregedit + $(abs_srcdir)/hivexregedit CLEANFILES = $(man_MANS) diff --git a/sh/Makefile.am b/sh/Makefile.am index a6f5ae6..1c2aba8 100644 --- a/sh/Makefile.am +++ b/sh/Makefile.am @@ -71,7 +71,7 @@ $(top_builddir)/html/hivexget.1.html: hivexget.pod --css 'pod.css' \ --htmldir html \ --outfile html/hivexget.1.html \ - sh/hivexget.pod + $(abs_srcdir)/hivexget.pod $(top_builddir)/html/hivexsh.1.html: hivexsh.pod mkdir -p $(top_builddir)/html @@ -79,6 +79,6 @@ $(top_builddir)/html/hivexsh.1.html:...
2017 Jul 14
0
[hivex PATCH 2/2] build: do not ignore pod2man error codes
...)-$(PACKAGE_VERSION)" \ - $< > $@-t; mv $@-t $@ + $< > $@-t && mv $@-t $@ noinst_DATA = \ $(top_builddir)/html/hivexregedit.1.html diff --git a/sh/Makefile.am b/sh/Makefile.am index 1c2aba8..98fdd05 100644 --- a/sh/Makefile.am +++ b/sh/Makefile.am @@ -51,7 +51,7 @@ hivexget.1: hivexget.pod -c "Windows Registry" \ --name "hivexget" \ --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ - $< > $@-t; mv $@-t $@ + $< > $@-t && mv $@-t $@ hivexsh.1: hivexsh.pod $(POD2MAN) \ @@ -59,7 +59,7 @@ hivexsh.1: hive...
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
...it ?)\(0\)/$1(EXIT_SUCCESS)/' * .x-sc_prohibit_magic_number_exit: New file. That covered everything except these few: fish/fish.c:325: usage (0); fish/fish.c:328: usage (1); fuse/guestmount.c:1067: usage (0); fuse/guestmount.c:1070: usage (1); hivex/hivexget.c:85: exit (2); hivex/hivexget.c:106: exit (2); maint.mk: use EXIT_* values rather than magic number I handled the first four with these: perl -pi -e 's/\b(usage ?)\(1\)/$1(EXIT_FAILURE)/' \ fish/fish.c fuse/guestmount.c perl -pi -e 's/\b(usage ?)\(0\)/...
2017 Jul 14
2
[hivex PATCH 1/2] hivexregedit: fix POD markup
Put the "=back" to close the list only after the last element. --- regedit/hivexregedit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regedit/hivexregedit b/regedit/hivexregedit index 02c382b..cd49063 100755 --- a/regedit/hivexregedit +++ b/regedit/hivexregedit @@ -248,8 +248,6 @@ You should only use this option for quick hacking and debugging of the hive
2009 Nov 09
1
[PATCH libguestfs] indent with spaces, not TABs
...< @ARGV) { - if (substr ($ARGV[$i+1], 0, 1) ne "\\") { - $name = $ARGV[$i+1]; - $i++; - } + if (substr ($ARGV[$i+1], 0, 1) ne "\\") { + $name = $ARGV[$i+1]; + $i++; + } } my @cmd; if (defined $name) { - @cmd = ("hivexget", $localhive, $path, $name); + @cmd = ("hivexget", $localhive, $path, $name); } else { - @cmd = ("hivexget", $localhive, $path); + @cmd = ("hivexget", $localhive, $path); } system (@cmd) == 0 - or die "hivexget command failed: $?...
2010 Jan 29
2
[PATCH 0/2] hivex shell
Currently 'hivexget' is a very clumsy command line tool which only lets you display a single registry key in a hive file, for example: $ hivexget SOFTWARE '\Microsoft\Windows\TabletPC\TabSetup\' "TabletSetup"=dword:00000000" This is inflexible and got really annoying as I was trying to...
2011 Jun 28
13
[PATCH hivex 02/14] maint: remove unnecessary test-before-free
From: Jim Meyering <meyering at redhat.com> * lib/hivex.c (hivex_node_set_value): Remove unnecessary test-before-free. --- lib/hivex.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/hivex.c b/lib/hivex.c index d042f4f..a72fa77 100644 --- a/lib/hivex.c +++ b/lib/hivex.c @@ -2748,8 +2748,7 @@ hivex_node_set_value (hive_h *h, hive_node_h node, leave_partial:
2010 Mar 29
4
[PATCH 0/3] Export and merge into Windows Registry
As described here previously: https://www.redhat.com/archives/libguestfs/2010-March/msg00129.html Here is the three part patch to reimplement virt-win-reg to support exporting and merging Windows Registry entries in the 'regedit' format. Tested by me on a local Windows VM. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top'
2017 Apr 11
0
Re: Virt-win-reg gives weird error
...ave just compiled the libguestfs version 1.34.2. > > When I run virt-win-reg vm-1051-disk-1.qcow2 'HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce' "Test"="c:\\Users\Administrator\test.bat” I get the following error: > > Can't exec "hivexget": No such file or directory at /usr/local/bin/virt-win-reg line 351. > hivexget failed: -1 at /usr/local/bin/virt-win-reg line 351. > > Any idea how to fix it? Yup, you need to install that program in order to export single keys. It should be a dependency of virt-win-reg, assuming y...
2010 Apr 02
1
hivex: pod2html complaints
...cannot resolve L<guestfish(1)> in paragraph 8. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<hivex(3)/WRITING TO HIVE FILES> in paragraph 22. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<hivex(3)> in paragraph 73. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<hivexget(1)> in paragraph 73. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<hivexml(1)> in paragraph 73. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<virt-win-reg(1)> in paragraph 73. /usr/bin/pod2html: sh/hivexsh.pod: cannot resolve L<guestfs(3)> in paragraph 73. /usr/bin/...
2017 Apr 11
1
Re: Virt-win-reg gives weird error
...d the libguestfs version 1.34.2. >> >> When I run virt-win-reg vm-1051-disk-1.qcow2 'HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce' "Test"="c:\\Users\Administrator\test.bat” I get the following error: >> >> Can't exec "hivexget": No such file or directory at /usr/local/bin/virt-win-reg line 351. >> hivexget failed: -1 at /usr/local/bin/virt-win-reg line 351. >> >> Any idea how to fix it? > > Yup, you need to install that program in order to export single keys. > It should be a dependency...
2016 Oct 31
5
[PATCH 0/4] supermin: use dnf on Mageia
Hi, as pointed out by Neal Gompa, Mageia recently introduced dnf in the distribution (currently only in Cauldron, which is the future Mageia 6), and most probably it will replace urpmi in the future. As such, on Mageia make supermin prefer dnf over urpmi when found, using the same code already used for Fedora. Related change: make test-harder.sh work explicitly also on Mageia
2013 Jul 25
19
[PATCH hivex 00/19] Fix read/write handling of li-records.
This is, hopefully, a full fix for handling of li-records. See: https://bugzilla.redhat.com/show_bug.cgi?id=717583 https://bugzilla.redhat.com/show_bug.cgi?id=987463 Rich.