Your download link is at the very bottom of the page... always.



Processed through Paypal
No account required.


Donate Bitcoin to this wallet:
1KkUMXvQ2ko3xcJkzitB7WYgoW6m79WFfm
Donate Ethereum to this wallet:
0x40E56922F43637224935CDC35e2c96E0392A8505
Donate Litecoin to this wallet:
LLYAFEyqjH69gkyCEpRjXNyedRCWrVChfL

Buy our over-priced crap to help keep things running.
Take No CrapwareOG Dad CapNo Password


Join our Facebook groupFollow us on TwitterFollow us on InstagramOur RSS FeedJoin us on TikTokJoin us on LinkedIn


 Home » OlderGeeks.com Freeware Downloads » Operating System Repairs, Testing and Diagnostics » SysExporter v1.77 64bit   
File - Download SysExporter v1.77 64bit
Description

Always scroll to the bottom of the page for the main download link.
We don't believe in fake/misleading download buttons and tricks. The link is always in the same place.


SysExporter v1.77 64bit

SysExporter utility allows you to grab the data stored in standard list-views, tree-views, list boxes, combo boxes, text-boxes, and WebBrowser/HTML controls from almost any application running on your system, and export it to text, HTML or XML file.
Here's some examples for data that you can export with SysExporter:

The files list inside archive file (.zip, .rar, and so on) as displayed by WinZip or 7-Zip File Manager.
The files list inside a folder.
The event log of Windows.
The list of emails and contacts in Outlook Express.
The Registry values displayed in the right pane of the Registry Editor.
The data displayed by SysInternals utilities (Registry Monitor, File Monitor, Process Explorer, and others.)
The text inside a standard message-box of Windows.
The HTML inside any instance of Internet Explorer.

Versions History

Version 1.77:
You can now send the data to stdout by specifying empty string as filename, for example:
sysexp.exe /Title "Windows Task Manager" /class SysListView32 /Visible Yes /scomma "" | more

System Requirement
SysExporter Works perfectly on Windows NT, Windows 2000, Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista, Windows 7, Windows 8, and Windows 10.
On Windows 9x and Windows ME, SysExporter can only export data from combo boxes and list boxes controls, but not from list-view and tree-view controls.

Known Limitations
SysExporter can export data from most combo boxes, list boxes, tree-view, and list-view controls, but not from all of them. There are some applications that use these controls to display data, but the data itself is not actually stored in the control, but in another location in the computer's memory. In such cases, SysExporter won't be able to export the data.

Using SysExporter
This utility is a standalone executable, so it doesn't require any installation process or additional DLLs. Just run the executable (sysexp.exe) and start using it. There is only one exception: If you want to run this utility on Windows NT, you should download the 'psapi.dll', and copy it into the system32 folder.

The main window of SysExporter contains 2 panes:

The upper pane displays the list of current opened windows that are available for export.
When you select a single window in the upper pane, the lower pane displays all data that you can export from the selected window. For example: If you select the 'My computer' window in the upper pane, the lower pane will display the list of all your disks, and they are displayed in the original 'My Computer' window.

You can easily select one or more items from the lower pane, and then export them to text, HTML or XML files. You can also copy the exported data to the clipboard in tab-delimited format (Ctrl+C), and then paste it directly to Excel or any other application that supports this format. Before exporting the data, you can change the order of columns that will be appeared in the saved files by using the 'Choose Columns' option.

Practical Example
Let's say that you want to export the list of all files in your C:\Windows folder to Excel:

First, open the 'C:\Windows' folder (or any other folder that you want to export).
In the top pane of SysExporter, find the window of 'C:\Windows' folder and select it. If you cannot find this window, try to refresh the list by pressing F5 key.
After selecting the desired window in the top pane, the files list of this window will be loaded to the lower pane.
Select the files in the lower pane that you want to export. (Press Ctrl+A in order to select all files)
Press Ctrl+C in order to copy the selected items to the clipbaord. (The exported items are copied in tab-delimited format)
In Excel, go the position that you want to put the exported data, and then press Ctrl+V to paste the exported data into your Excel worksheet.

Locating the right window with Drag & Drop
Starting from version 1.50, you can easily locate the desired window by using the targeting button. In order to do that, simply press the targeting button of the toolbar, and then drag it to the window that you wish to export the data. If the selected window is detected by SysExporter, it'll automatically be displayed in SysExporter.

Command-Line Options
Starting from version 1.70, you can export the content of Windows control from command-line, without displaying any user interface. However, in order to export the desired Windows control, you must specify enough filters to uniquely identify the correct control you wish to export. If there are multiple controls that match the filters you specified, then SysExporter will randomly export only one of them.

You can use the following command-line parameters to define the control you wish to export: /Process , /Title , /Class , /Type , /Visible , /Handle , MinItems, /MaxItems

Here's a few examples:

Export the current visible ListView in the task manager of Windows to csv file:
sysexp.exe /Title "Windows Task Manager" /class SysListView32 /Visible Yes /scomma "c:\temp\1.csv"
Export the current visible ListView in the task manager of Windows to html file:
sysexp.exe /Process taskmgr.exe /class "SysListView32" /Visible Yes /shtml "c:\temp\1.html"
Export the content of HTML page in opened window of Internet Explorer:
sysexp.exe /Type HTML /Process iexplore.exe /stext "c:\temp\1.html"

/Process <Process> Specifies the process that has the Windows control you want to export. You can specify the process exe file or the process ID, for example:
/Process "Explorer.exe"
/Process 5422
/Title <Title> Specifies the title of the window that you want to export (The same title that you see under the Title column), for example:
/Title "Windows Task Manager"
/Title "Local Disk (C:)"
/Class <Class> Specifies the class name of the window you want to export (It's the same string you see under the 'Window Class' column), for example:
/Class "SysListView32"
/Class "DirectUIHWND"
/Type <Type> Specifies the type of the window you want to export (It's the same type you see under the 'Type' column), for example:
/Type "TreeView"
/Type "ComboBox"
/Visible <Yes | No> Specifies whether the control that you want to export is visible, for example:
/Visible Yes
/Visible No
/Handle <Window Handle> Specifies the window handle of the control you want to export, for example:
/Handle 0x01571370
/MinItems <Number Of Items> Specifies that you want to filter out all controls that don't have the minimum number of items. For example, if you have an application with 2 ListViews, one with 10 items and the other with 50 items, adding the following command will ensure that SysExporter will export the ListView with the 50 items:
/MinItems 50
/MaxItems <Number Of Items> Specifies that you want to filter out all controls that exceed the maximum number of items.
/stext <Filename> Export the data into a regular text file.
/stab <Filename> Export the data into a tab-delimited text file.
/scomma <Filename> Export the data into a comma-delimited text file (csv).
/stabular <Filename> Export the data into a tabular text file.
/shtml <Filename> Export the data into HTML file (Horizontal).
/sverhtml <Filename> Export the data into HTML file (Vertical).
/sxml <Filename> Export the data to XML file.

Translating to other languages
SysExporter allows you to easily translate all menus, dialog-boxes, and other strings to other languages.
In order to do that, follow the instructions below:

Run SysExporter with /savelangfile parameter:
sysexp.exe /savelangfile
A file named sysexp_lng.ini will be created in the folder of SysExporter utility.
Open the created language file in Notepad or in any other text editor.
Translate all menus, dialog-boxes, and string entries to the desired language.
After you finish the translation, Run SysExporter, and all translated strings will be loaded from the language file.
If you want to run SysExporter without the translation, simply rename the language file, or move it to another folder.

License
This utility is released as freeware. You are allowed to freely distribute this utility via floppy disk, CD-ROM, Internet, or in any other way, as long as you don't charge anything for this and you don't sell it or distribute it as a part of commercial product. If you distribute this utility, you must include all files in the distribution package, without any modification !

Disclaimer
The software is provided "AS IS" without any warranty, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The author will not be liable for any special, incidental, consequential or indirect damages due to loss of data or any other reason.

Feedback
If you have any problem, suggestion, comment, or you found a bug in my utility, you can send a message to nirsofer@yahoo.com









Click here to visit the author's website.
Continue below for the main download link.


Downloads Views Developer Last Update Version Size Type Rank
3,546 4,758 Nir Sofer <img src="https://www.oldergeeks.com/downloads/gallery/thumbs/sysexp_th.png"border="0"> Sep 19, 2019 - 10:37 1.77 64.8KB ZIP 5/5, out of 41 Votes.
File Tags
SysExporter  v1.77  64bit  
      
Whoa! Slow down there, Speedy.
Kindly read this and then continue to download below.

Like seeing no ads? No misleading/fake download buttons?
We like it too! This site has been kept alive for 15 years
because of people just like you who download and donate.
No one is stopping you from downloading without donating
but the site runs on the "Honor System". If your momma
raised you to be honorable, make a donation and download
'til ya turn blue. Make your momma proud!

Thank you! -Randy & Deanna (The Older Geeks)
Missouri Ozarks, USA

Monthly operating costs = $750
Donations cover operating costs first
then are set aside for future upgrades and/or
handed-over to Deanna for new shoes.

Or

Or
Send a check payable to Home Computer Repair LLC, 208 E. Water St. Mount Vernon, MO 65712


Recent Super Donors ($50+)
Thanks, Mark
Thanks, Michael
Thanks, Russell
Thanks, Home Business Services Inc

Recent Donors
Thanks, Stephen
Thanks, Suzanne
Thanks, Art
Thanks, Paul
Thanks, Graham
Thanks, Ruschmann & Scherling LLC
Thanks, Antonia
Thanks, Michael
Thanks, Douglas
Thanks, Tery

→ Download Your File ←


Click to Rate File     Share it on Twitter →


OlderGeeks.com Copyright (c) 2024