search for: winevt

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

Did you mean: winedt
2011 Apr 20
3
API-MS-Win-Security-Base-L1-1-0.dll Failed To Initialize
...00142 > Running it from putty, it's a console application... should work, right? Copied API-MS-Win-Security-Base_l1-1-0.dll, getting this very vague error about that library. I'd of course just compile and run as a native Linux application but I need these two files: #include <winevt.h> wevtapi.lib For pulling logs over Windows RPC... neither which are available on Linux.
2016 Sep 08
4
[PATCH 0/3] Use gnulib's getprogname
Hi, this series update libguestfs to a recent gnulib version, so that we can use its new getprogname module, and solve altogether one of the porting issues (the need for 'program_name' by the error module of gnulib), and have a single way to get the name of the current program. A number of changes in tools mostly, although mechanical. Thanks, Pino Toscano (3): Update gnulib to latest
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...tf (stderr, _("%s: you need to install ‘evtxdump.py’ (from the python-evtx package)\n" "in order to parse Windows Event Logs. If you cannot install this, then\n" "use virt-copy-out(1) to copy the contents of /Windows/System32/winevt/Logs\n" "from this guest, and examine in a binary file viewer.\n"), diff --git a/cat/virt-cat.pod b/cat/virt-cat.pod index 3c685440b..327ef255e 100644 --- a/cat/virt-cat.pod +++ b/cat/virt-cat.pod @@ -139,7 +139,7 @@ the mount of its root and all of its mountp...
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.