├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── BugsToBeFixed.txt ├── CItemBranch_in_memory_layout.txt ├── DoSomeWork_Ticks_Benchmark.txt ├── LICENSE_STR.txt ├── README.md ├── Reference code ├── AsyncWalk │ ├── AsyncWalk.sln │ └── AsyncWalk │ │ ├── AsyncWalk.cpp │ │ ├── AsyncWalk.h │ │ ├── AsyncWalk.vcxproj │ │ └── AsyncWalk.vcxproj.filters ├── FarManager_farplug │ ├── farplug │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── col │ │ │ ├── AnsiString.h │ │ │ ├── ArrayBase.h │ │ │ ├── ObjectArray.h │ │ │ ├── PlainArray.h │ │ │ └── UnicodeString.h │ │ ├── common │ │ │ ├── error.hpp │ │ │ ├── farutils.cpp │ │ │ ├── farutils.hpp │ │ │ ├── iniparse.cpp │ │ │ ├── iniparse.hpp │ │ │ ├── numutils.cpp │ │ │ ├── pathutils.cpp │ │ │ ├── strutils.cpp │ │ │ ├── sysutils.cpp │ │ │ ├── sysutils.hpp │ │ │ └── utils.hpp │ │ ├── defrag │ │ │ ├── CMakeLists.txt │ │ │ ├── defragment.cpp │ │ │ ├── defragment.h │ │ │ ├── error.h │ │ │ ├── main.cpp │ │ │ ├── ntfs.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── volume.cpp │ │ │ └── volume.h │ │ ├── msiupdate │ │ │ ├── distrib.bat │ │ │ ├── en.hlf │ │ │ ├── en.msg │ │ │ ├── farsdk │ │ │ │ ├── farcolor.hpp │ │ │ │ └── plugin.hpp │ │ │ ├── guids.hpp │ │ │ ├── headers.cpp │ │ │ ├── headers.hpp │ │ │ ├── icon.rc │ │ │ ├── inet.cpp │ │ │ ├── inet.hpp │ │ │ ├── installer │ │ │ │ ├── banner.jpg │ │ │ │ ├── dialog.jpg │ │ │ │ ├── exclam.ico │ │ │ │ ├── info.ico │ │ │ │ ├── installer.wxi │ │ │ │ ├── installer.wxs │ │ │ │ ├── plugin.wxi.wxi │ │ │ │ ├── plugin.wxs │ │ │ │ ├── ui.wxs │ │ │ │ └── ui_en-us.wxl │ │ │ ├── makefile │ │ │ ├── msiupdate.vcxproj │ │ │ ├── msiupdate.vcxproj.filters │ │ │ ├── options.cpp │ │ │ ├── options.hpp │ │ │ ├── plugin.cpp │ │ │ ├── plugin.def │ │ │ ├── plugin.h.h │ │ │ ├── project.ini │ │ │ ├── ru.hlf │ │ │ ├── ru.msg │ │ │ ├── trayicon.cpp │ │ │ ├── trayicon.hpp │ │ │ ├── ui.cpp │ │ │ ├── ui.hpp │ │ │ ├── update.cpp │ │ │ ├── update.hpp │ │ │ ├── update.ico │ │ │ └── version.rc │ │ ├── ntfsfile │ │ │ ├── Renewal.xml │ │ │ ├── compress_files.cpp │ │ │ ├── compress_files.h │ │ │ ├── content.cpp │ │ │ ├── content.h │ │ │ ├── crc16.cpp │ │ │ ├── defragment.cpp │ │ │ ├── defragment.h │ │ │ ├── distrib.bat │ │ │ ├── dlgapi.cpp │ │ │ ├── dlgapi.h │ │ │ ├── en.hlf │ │ │ ├── en.msg │ │ │ ├── error.h │ │ │ ├── farsdk │ │ │ │ ├── farcolor.hpp │ │ │ │ └── plugin.hpp │ │ │ ├── file_id.diz │ │ │ ├── file_panel.cpp │ │ │ ├── file_panel.h │ │ │ ├── filever.cpp │ │ │ ├── filever.h │ │ │ ├── guids.h │ │ │ ├── headers.cpp │ │ │ ├── headers.hpp │ │ │ ├── history_ru.txt │ │ │ ├── installer │ │ │ │ ├── banner.jpg │ │ │ │ ├── dialog.jpg │ │ │ │ ├── exclam.ico │ │ │ │ ├── info.ico │ │ │ │ ├── installer.wxi │ │ │ │ ├── installer.wxs │ │ │ │ ├── plugin.wxi.wxi │ │ │ │ ├── plugin.wxs │ │ │ │ ├── ui.wxs │ │ │ │ └── ui_en-us.wxl │ │ │ ├── log.h │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ ├── mftindex.cpp │ │ │ ├── ntfs.h │ │ │ ├── ntfs_file.cpp │ │ │ ├── ntfs_file.h │ │ │ ├── ntfsfile.vcxproj │ │ │ ├── ntfsfile.vcxproj.filters │ │ │ ├── options.cpp │ │ │ ├── options.h │ │ │ ├── plugin.def │ │ │ ├── plugin.h.h │ │ │ ├── project.ini │ │ │ ├── ru.hlf │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── version.rc │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ └── volume_list.cpp │ │ ├── plugins.sln │ │ ├── tools │ │ │ ├── common.hpp │ │ │ ├── convcp.cpp │ │ │ ├── farver.cpp │ │ │ ├── gendep.cpp │ │ │ ├── makefile │ │ │ ├── msgc.cpp │ │ │ └── preproc.cpp │ │ └── wmexplorer │ │ │ ├── Renewal.xml │ │ │ ├── as_api.h │ │ │ ├── distrib.bat │ │ │ ├── dlgapi.cpp │ │ │ ├── dlgapi.h │ │ │ ├── en.hlf │ │ │ ├── en.msg │ │ │ ├── error.h │ │ │ ├── farsdk │ │ │ ├── farcolor.hpp │ │ │ └── plugin.hpp │ │ │ ├── file_filters.cpp │ │ │ ├── file_filters.h │ │ │ ├── file_id.diz │ │ │ ├── file_info.cpp │ │ │ ├── file_info.h │ │ │ ├── filepath.cpp │ │ │ ├── filepath.h │ │ │ ├── guids.h │ │ │ ├── headers.cpp │ │ │ ├── headers.hpp │ │ │ ├── history_en.txt │ │ │ ├── history_ru.txt │ │ │ ├── installer │ │ │ ├── banner.jpg │ │ │ ├── dialog.jpg │ │ │ ├── exclam.ico │ │ │ ├── info.ico │ │ │ ├── installer.wxi │ │ │ ├── installer.wxs │ │ │ ├── plugin.wxi.wxi │ │ │ ├── plugin.wxs │ │ │ ├── ui.wxs │ │ │ └── ui_en-us.wxl │ │ │ ├── makefile │ │ │ ├── options.cpp │ │ │ ├── options.h │ │ │ ├── pinfo.h.h │ │ │ ├── plugin.cpp │ │ │ ├── plugin.def │ │ │ ├── plugin.h │ │ │ ├── project.ini │ │ │ ├── rapi │ │ │ ├── IRAPIStream.h │ │ │ ├── ce_setup.h │ │ │ ├── ceapimap.h │ │ │ ├── cefltmap.h │ │ │ ├── cesync.h │ │ │ ├── ceutil.h │ │ │ ├── dccole.h │ │ │ ├── dccole2.h │ │ │ ├── rapi.h │ │ │ ├── rapi2.h │ │ │ ├── rapitypes.h │ │ │ ├── rapitypes2.h │ │ │ ├── replerr.h │ │ │ └── replfilt.h │ │ │ ├── rapi_proc.cpp │ │ │ ├── rapi_proc.h │ │ │ ├── ru.hlf │ │ │ ├── ru.msg │ │ │ ├── ui.cpp │ │ │ ├── ui.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── version.rc │ │ │ ├── wmexplorer.vcxproj │ │ │ └── wmexplorer.vcxproj.filters │ └── licence_info.txt ├── FastDirEnum_BOOST_AFIO │ ├── FastDirEnum_BOOST_AFIO.sln │ └── FastDirEnum_BOOST_AFIO │ │ ├── FastDirEnum_BOOST_AFIO.vcxproj │ │ ├── FastDirEnum_BOOST_AFIO.vcxproj.filters │ │ └── testmain.cpp ├── NTFS-Search-OSR │ ├── LICENSE │ ├── NTFS-Search.sln │ └── NTFS-Search │ │ ├── FixList.cpp │ │ ├── FixList.h │ │ ├── Heap.cpp │ │ ├── Heap.h │ │ ├── NTFS-Search.cpp │ │ ├── NTFS-Search.exe.manifest │ │ ├── NTFS-Search.h │ │ ├── NTFS-Search.ico │ │ ├── NTFS-Search.rc │ │ ├── NTFS-Search.vcproj │ │ ├── NTFS-Search.vcxproj │ │ ├── NTFS-Search.vcxproj.filters │ │ ├── NTFS_SEARCH.cpp │ │ ├── NTFS_STRUCT.cpp │ │ ├── NTFS_STRUCT.h │ │ ├── ReadMe.txt │ │ ├── SimplePattern.cpp │ │ ├── SimplePattern.h │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── NT_Q_DIR_TEST_2 │ ├── NT_Q_DIR_TEST_2.sln │ └── NT_Q_DIR_TEST_2 │ │ ├── NT_Q_DIR_TEST_2.cpp │ │ ├── NT_Q_DIR_TEST_2.h │ │ ├── NT_Q_DIR_TEST_2.vcxproj │ │ ├── NT_Q_DIR_TEST_2.vcxproj.filters │ │ └── VTune Profiler Results │ │ └── NT_Q_DIR_TEST_2 │ │ └── NT_Q_DIR_TEST_2.vtuneproj ├── NtCreateFile │ ├── NtCreateFile.sln │ ├── NtCreateFile.vcxproj │ ├── NtCreateFile.vcxproj.filters │ └── ntCreateFile.cpp ├── ntfsfastfind-v2.9-src │ └── NTFSfastFind-v2.9 │ │ ├── NTFSfastFind.vcproj │ │ ├── NTFSfastFind │ │ ├── BaseTypes.h │ │ ├── Block.h │ │ ├── FsFilter.cpp │ │ ├── FsFilter.h │ │ ├── FsTime.cpp │ │ ├── FsTime.h │ │ ├── FsUtil.cpp │ │ ├── FsUtil.h │ │ ├── GetOpts.cpp │ │ ├── GetOpts.h │ │ ├── Hnd.h │ │ ├── LocaleFmt.cpp │ │ ├── LocaleFmt.h │ │ ├── MFTRecord.cpp │ │ ├── MFTRecord.h │ │ ├── NTFSfastFind.cpp │ │ ├── NTFSfastFind.vcxproj │ │ ├── NTFSfastFind.vcxproj.filters │ │ ├── NTFSfastfind.pdn │ │ ├── NTFSfastfind.png │ │ ├── NtfsTypes.h │ │ ├── NtfsUtil.cpp │ │ ├── NtfsUtil.h │ │ ├── Pattern.cpp │ │ ├── Pattern.h │ │ ├── SharePtr.h │ │ ├── oNullStream.h │ │ └── std_pre.h │ │ ├── NTFSfastFind10.sln │ │ ├── doc-help │ │ └── ntfsfastfind.html │ │ └── extra-info-on-ntfs │ │ ├── NTFS Documentation.url │ │ ├── NTFSdoc │ │ ├── attributes │ │ │ ├── attribute_list.html │ │ │ ├── bitmap.html │ │ │ ├── data.html │ │ │ ├── ea.html │ │ │ ├── ea_information.html │ │ │ ├── file_name.html │ │ │ ├── index.html │ │ │ ├── index_allocation.html │ │ │ ├── index_root.html │ │ │ ├── logged_utility_stream.html │ │ │ ├── object_id.html │ │ │ ├── reparse_point.html │ │ │ ├── security_descriptor.html │ │ │ ├── standard_information.html │ │ │ ├── volume_information.html │ │ │ └── volume_name.html │ │ ├── concepts │ │ │ ├── attribute_header.html │ │ │ ├── attribute_id.html │ │ │ ├── clusters.html │ │ │ ├── collation.html │ │ │ ├── compression.html │ │ │ ├── data_runs.html │ │ │ ├── directory.html │ │ │ ├── file.html │ │ │ ├── file_record.html │ │ │ ├── file_reference.html │ │ │ ├── filename_namespace.html │ │ │ ├── fixup.html │ │ │ ├── index.html │ │ │ ├── index_header.html │ │ │ ├── index_record.html │ │ │ ├── links.html │ │ │ ├── restart.html │ │ │ ├── sid.html │ │ │ ├── sparse.html │ │ │ └── tree │ │ │ │ └── index.html │ │ ├── files │ │ │ ├── attrdef.html │ │ │ ├── badclus.html │ │ │ ├── bitmap.html │ │ │ ├── boot.html │ │ │ ├── dot.html │ │ │ ├── extend.html │ │ │ ├── index.html │ │ │ ├── logfile.html │ │ │ ├── mft.html │ │ │ ├── mftmirr.html │ │ │ ├── objid.html │ │ │ ├── quota.html │ │ │ ├── reparse.html │ │ │ ├── secure.html │ │ │ ├── upcase.html │ │ │ ├── usnjrnl.html │ │ │ └── volume.html │ │ ├── help │ │ │ ├── about.html │ │ │ ├── changelog.html │ │ │ ├── glossary.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── license.html │ │ │ ├── table.html │ │ │ ├── thanks.html │ │ │ ├── todo.html │ │ │ └── unknown.html │ │ ├── index.html │ │ └── style │ │ │ ├── dataruns.css │ │ │ ├── emailntfs.png │ │ │ ├── glossary.css │ │ │ ├── index.html │ │ │ ├── ntfsdoc.css │ │ │ ├── ntfsdoc.png │ │ │ ├── ntfsicon.png │ │ │ ├── valid-css.png │ │ │ └── valid-html401.png │ │ ├── The Sleuth Kit.url │ │ └── ntfs │ │ ├── image10.gif │ │ ├── image11.gif │ │ ├── image12.gif │ │ ├── image2.jpg │ │ ├── image23.gif │ │ ├── image24.gif │ │ ├── image3.gif │ │ ├── image4.gif │ │ ├── image5.gif │ │ ├── image6.gif │ │ ├── image7.gif │ │ ├── image8.gif │ │ ├── image9.gif │ │ └── index.html ├── osImageTool │ ├── BINOsImageReader.cpp │ ├── BINOsImageReader.h │ ├── ComboBoxControl.cpp │ ├── ComboBoxControl.h │ ├── Configuration.cpp │ ├── Configuration.h │ ├── DiskInfo.cpp │ ├── DiskInfo.h │ ├── ErrorHandler.cpp │ ├── ErrorHandler.h │ ├── FileOsImageReader.cpp │ ├── FileOsImageReader.h │ ├── FileOsImageWriter.cpp │ ├── FileOsImageWriter.h │ ├── LinearFileImageReader.cpp │ ├── LinearFileImageReader.h │ ├── LinearFileImageWriter.cpp │ ├── LinearFileImageWriter.h │ ├── LocalSdCard.cpp │ ├── LocalSdCard.h │ ├── NB0ImageReader.cpp │ ├── NB0ImageReader.h │ ├── NB1FileOsImageWriter.cpp │ ├── NB1FileOsImageWriter.h │ ├── NB1OsImageReader.cpp │ ├── NB1OsImageReader.h │ ├── NBFFileOsImageWriter.cpp │ ├── NBFFileOsImageWriter.h │ ├── NBFOsImageReader.cpp │ ├── NBFOsImageReader.h │ ├── OSImageTool.cpp │ ├── OSImageTool.h │ ├── OSImageTool.rc │ ├── OSImageTool.sln │ ├── OSImageTool.vcproj │ ├── OSImageToolDlg.cpp │ ├── OSImageToolDlg.h │ ├── OSImageWriter.cpp │ ├── OsImageCopier.cpp │ ├── OsImageCopier.h │ ├── OsImageReader.cpp │ ├── OsImageReader.h │ ├── OsImageWriter.h │ ├── README.txt │ ├── Registry.cpp │ ├── Registry.h │ ├── RemoteDevice.cpp │ ├── RemoteDevice.h │ ├── RemoteSdCard.cpp │ ├── RemoteSdCard.h │ ├── SDOsImageWriter.h │ ├── SdCardDevice.cpp │ ├── SdCardDevice.h │ ├── SdOsImageReader.cpp │ ├── SdOsImageReader.h │ ├── SdOsImageWriter.cpp │ ├── SmartHandle.h │ ├── XDAOSImageWriter.cpp │ ├── XDAOsImageReader.cpp │ ├── XDAOsImageReader.h │ ├── XDAOsImageWriter.h │ ├── debug.cpp │ ├── debug.h │ ├── dllversion.h │ ├── index.html │ ├── index_2.html │ ├── itsutils.h │ ├── mkzip.cmd │ ├── res │ │ ├── index.html │ │ ├── osimagetool.ico │ │ ├── osimagetool.manifest │ │ └── osimagetool.rc2 │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stringutils.cpp │ ├── stringutils.h │ └── vectorutils.h ├── test_datastructures │ └── short_exp │ │ ├── FixList.cpp │ │ ├── FixList.h │ │ ├── Heap.cpp │ │ ├── Heap.h │ │ ├── NTFS-Search.cpp │ │ ├── NTFS-Search.h │ │ ├── NTFS_SEARCH.cpp │ │ ├── NTFS_STRUCT.cpp │ │ ├── NTFS_STRUCT.h │ │ ├── SimplePattern.cpp │ │ ├── SimplePattern.h │ │ ├── resource.h │ │ ├── short_exp.cpp.sln │ │ ├── short_exp.cpp.vcxproj │ │ ├── short_exp.cpp.vcxproj.filters │ │ ├── short_exp.cpp │ │ └── short_exp.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── test_heap_block_allocations │ ├── test_heap_block_allocations.sln │ └── test_heap_block_allocations │ │ ├── test_heap_block_allocation.h │ │ ├── test_heap_block_allocations.cpp │ │ ├── test_heap_block_allocations.vcxproj │ │ └── test_heap_block_allocations.vcxproj.filters └── test_heap_manager │ ├── test_heap_manager.sln │ └── test_heap_manager │ ├── test_heap_manager.cpp │ ├── test_heap_manager.vcxproj │ └── test_heap_manager.vcxproj.filters ├── WTL_Developer's_Guide.pdf ├── WinDirStat ├── .hg.7z ├── README.md ├── TESTPLAN.txt ├── TODO.txt ├── WinDirStat.ruleset ├── altWinDirStat.smproj ├── changelog.txt ├── common │ └── version.h ├── dependencies.dgml ├── file_header_text.txt ├── packages │ ├── repositories.config │ └── wtl.10.0.10320 │ │ ├── .signature.p7s │ │ ├── Samples │ │ ├── Aero │ │ │ ├── AboutDlg.h │ │ │ ├── Aero.cpp │ │ │ ├── Aero.h │ │ │ ├── Aero.rc │ │ │ ├── AeroView.h │ │ │ ├── Aero_2005.sln │ │ │ ├── Aero_2005.vcproj │ │ │ ├── Aero_2010.sln │ │ │ ├── Aero_2010.vcxproj │ │ │ ├── Aero_2010.vcxproj.filters │ │ │ ├── MainFrm.h │ │ │ ├── res │ │ │ │ ├── Aero.ico │ │ │ │ └── toolbar.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Alpha │ │ │ ├── Alpha.cpp │ │ │ ├── Alpha.h │ │ │ ├── Alpha.rc │ │ │ ├── Alpha_2005.sln │ │ │ ├── Alpha_2005.vcproj │ │ │ ├── Alpha_2010.sln │ │ │ ├── Alpha_2010.vcxproj │ │ │ ├── Alpha_2010.vcxproj.filters │ │ │ ├── aboutdlg.h │ │ │ ├── mainfrm.h │ │ │ ├── readme.txt │ │ │ ├── res │ │ │ │ ├── Alpha.ico │ │ │ │ ├── toolbar.bmp │ │ │ │ └── toolbar_old.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── view.h │ │ ├── BmpView │ │ │ ├── BmpView.cpp │ │ │ ├── BmpView.rc │ │ │ ├── BmpView_2005.sln │ │ │ ├── BmpView_2005.vcproj │ │ │ ├── BmpView_2010.sln │ │ │ ├── BmpView_2010.vcxproj │ │ │ ├── BmpView_2010.vcxproj.filters │ │ │ ├── list.h │ │ │ ├── mainfrm.h │ │ │ ├── props.h │ │ │ ├── res │ │ │ │ ├── BmpView.ico │ │ │ │ └── Toolbar.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── view.h │ │ ├── GuidGen │ │ │ ├── GuidGen.cpp │ │ │ ├── GuidGen.rc │ │ │ ├── GuidGen_2005.sln │ │ │ ├── GuidGen_2005.vcproj │ │ │ ├── GuidGen_2010.sln │ │ │ ├── GuidGen_2010.vcxproj │ │ │ ├── GuidGen_2010.vcxproj.filters │ │ │ ├── aboutdlg.h │ │ │ ├── maindlg.h │ │ │ ├── res │ │ │ │ └── GuidGen.ico │ │ │ ├── resource.h │ │ │ ├── stdatl.cpp │ │ │ └── stdatl.h │ │ ├── MDIDocVw │ │ │ ├── MDI.cpp │ │ │ ├── MDI.rc │ │ │ ├── MDI_2005.sln │ │ │ ├── MDI_2005.vcproj │ │ │ ├── MDI_2010.sln │ │ │ ├── MDI_2010.vcxproj │ │ │ ├── MDI_2010.vcxproj.filters │ │ │ ├── mainfrm.h │ │ │ ├── res │ │ │ │ ├── HelloDoc.ico │ │ │ │ ├── MDI.ico │ │ │ │ ├── Toolbar.bmp │ │ │ │ └── bounce.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MTPad │ │ │ ├── MTPad.cpp │ │ │ ├── MTPad.h │ │ │ ├── MTPad.rc │ │ │ ├── MTPad_2005.sln │ │ │ ├── MTPad_2005.vcproj │ │ │ ├── MTPad_2010.sln │ │ │ ├── MTPad_2010.vcxproj │ │ │ ├── MTPad_2010.vcxproj.filters │ │ │ ├── aboutdlg.h │ │ │ ├── finddlg.h │ │ │ ├── mainfrm.h │ │ │ ├── res │ │ │ │ ├── MTPad.ico │ │ │ │ ├── MTPadDoc.ico │ │ │ │ ├── Toolbar.bmp │ │ │ │ └── printpre.bmp │ │ │ ├── resource.h │ │ │ ├── stdatl.cpp │ │ │ ├── stdatl.h │ │ │ └── view.h │ │ ├── MTPad7 │ │ │ ├── MTPad.cpp │ │ │ ├── MTPad.h │ │ │ ├── MTPad7_2008.sln │ │ │ ├── MTPad7_2008.vcproj │ │ │ ├── MTPad7_2010.sln │ │ │ ├── MTPad7_2010.vcxproj │ │ │ ├── MTPad7_2010.vcxproj.filters │ │ │ ├── MTPadRibbon.h │ │ │ ├── MTPadRibbon.rc │ │ │ ├── MTPadRibbon.xml │ │ │ ├── aboutdlg.h │ │ │ ├── finddlg.h │ │ │ ├── mainfrm.h │ │ │ ├── mtpad.rc │ │ │ ├── res │ │ │ │ ├── ClosePreviewHH.bmp │ │ │ │ ├── GoToNextHS.bmp │ │ │ │ ├── GoToPreviousHS.bmp │ │ │ │ ├── MTPad.ico │ │ │ │ ├── MTPadDoc.ico │ │ │ │ ├── PortraitLandscapeHS.bmp │ │ │ │ ├── PrintPreviewL.bmp │ │ │ │ ├── SelectAllS.bmp │ │ │ │ ├── Toolbar.bmp │ │ │ │ ├── UndoS.bmp │ │ │ │ └── printpre.bmp │ │ │ ├── resource.h │ │ │ ├── stdatl.cpp │ │ │ ├── stdatl.h │ │ │ └── view.h │ │ ├── MemDlg │ │ │ ├── AboutDlg.h │ │ │ ├── AboutDlgIndirect.h │ │ │ ├── MainFrm.h │ │ │ ├── MemDlg.cpp │ │ │ ├── MemDlg.rc │ │ │ ├── MemDlg_2005.sln │ │ │ ├── MemDlg_2005.vcproj │ │ │ ├── MemDlg_2010.sln │ │ │ ├── MemDlg_2010.vcxproj │ │ │ ├── MemDlg_2010.vcxproj.filters │ │ │ ├── View.h │ │ │ ├── res │ │ │ │ ├── MemDlg.ico │ │ │ │ └── toolbar.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── ReadMe.html │ │ ├── TabBrowser │ │ │ ├── AboutDlg.h │ │ │ ├── AddressCombo.h │ │ │ ├── BrowserView.h │ │ │ ├── CustomTabView.h │ │ │ ├── MainFrm.h │ │ │ ├── OpenDlg.h │ │ │ ├── TabBrowser.cpp │ │ │ ├── TabBrowser.h │ │ │ ├── TabBrowser.rc │ │ │ ├── TabBrowser_2005.sln │ │ │ ├── TabBrowser_2005.vcproj │ │ │ ├── TabBrowser_2010.sln │ │ │ ├── TabBrowser_2010.vcxproj │ │ │ ├── TabBrowser_2010.vcxproj.filters │ │ │ ├── WindowsDlg.h │ │ │ ├── res │ │ │ │ ├── Go.bmp │ │ │ │ ├── PageImage.bmp │ │ │ │ ├── TabBrowser.ico │ │ │ │ ├── TabToolbar.bmp │ │ │ │ ├── Toolbar.bmp │ │ │ │ └── Toolbar_Big.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── WTLExplorer │ │ │ ├── ExplorerCombo.h │ │ │ ├── MainFrm.cpp │ │ │ ├── ShellMgr.cpp │ │ │ ├── ShellMgr.h │ │ │ ├── WTLExplorer.cpp │ │ │ ├── WTLExplorer.rc │ │ │ ├── WTLExplorer_2005.sln │ │ │ ├── WTLExplorer_2005.vcproj │ │ │ ├── WTLExplorer_2010.sln │ │ │ ├── WTLExplorer_2010.vcxproj │ │ │ ├── WTLExplorer_2010.vcxproj.filters │ │ │ ├── mainfrm.h │ │ │ ├── res │ │ │ │ ├── Toolbar.bmp │ │ │ │ ├── WTLExplorer.ico │ │ │ │ ├── go.bmp │ │ │ │ └── go1.bmp │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── Wizard97Test │ │ │ ├── Wizard │ │ │ ├── FolderDialogStatusText.h │ │ │ ├── TestWizard.cpp │ │ │ ├── TestWizard.h │ │ │ ├── TestWizardCompletionPage.cpp │ │ │ ├── TestWizardCompletionPage.h │ │ │ ├── TestWizardFilePreviewPage.cpp │ │ │ ├── TestWizardFilePreviewPage.h │ │ │ ├── TestWizardInfo.cpp │ │ │ ├── TestWizardInfo.h │ │ │ ├── TestWizardOutputPage.cpp │ │ │ ├── TestWizardOutputPage.h │ │ │ ├── TestWizardPathFilterPage.cpp │ │ │ ├── TestWizardPathFilterPage.h │ │ │ ├── TestWizardSheet.cpp │ │ │ ├── TestWizardSheet.h │ │ │ ├── TestWizardWelcomePage.cpp │ │ │ └── TestWizardWelcomePage.h │ │ │ ├── Wizard97Test.cpp │ │ │ ├── Wizard97Test.h │ │ │ ├── Wizard97Test.rc │ │ │ ├── Wizard97Test_2005.sln │ │ │ ├── Wizard97Test_2005.vcproj │ │ │ ├── Wizard97Test_2010.sln │ │ │ ├── Wizard97Test_2010.vcxproj │ │ │ ├── Wizard97Test_2010.vcxproj.filters │ │ │ ├── help │ │ │ ├── Context.h │ │ │ ├── Context.txt │ │ │ ├── TestWizard_Completion.html │ │ │ ├── TestWizard_Completion.png │ │ │ ├── TestWizard_Output.html │ │ │ ├── TestWizard_Output.png │ │ │ ├── TestWizard_PathFilter.html │ │ │ ├── TestWizard_PathFilter.png │ │ │ ├── TestWizard_PreviewFileList.html │ │ │ ├── TestWizard_PreviewFileList.png │ │ │ ├── TestWizard_Welcome.html │ │ │ ├── TestWizard_Welcome.png │ │ │ ├── Wizard97Test.hhc │ │ │ ├── Wizard97Test.hhk │ │ │ ├── Wizard97Test.hhp │ │ │ ├── Wizard97Test.html │ │ │ ├── readme-help.txt │ │ │ └── style.css │ │ │ ├── res │ │ │ ├── Wizard97Test.ico │ │ │ ├── header.bmp │ │ │ └── watermark.bmp │ │ │ ├── resource.h │ │ │ ├── resource.hm │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── lib │ │ └── native │ │ │ └── include │ │ │ ├── atlapp.h │ │ │ ├── atlcrack.h │ │ │ ├── atlctrls.h │ │ │ ├── atlctrlw.h │ │ │ ├── atlctrlx.h │ │ │ ├── atlddx.h │ │ │ ├── atldlgs.h │ │ │ ├── atldwm.h │ │ │ ├── atlfind.h │ │ │ ├── atlframe.h │ │ │ ├── atlgdi.h │ │ │ ├── atlmisc.h │ │ │ ├── atlprint.h │ │ │ ├── atlres.h │ │ │ ├── atlribbon.h │ │ │ ├── atlscrl.h │ │ │ ├── atlsplit.h │ │ │ ├── atltheme.h │ │ │ ├── atluser.h │ │ │ └── atlwinx.h │ │ ├── license │ │ └── license.txt │ │ ├── tools │ │ ├── AppWizard │ │ │ ├── Files │ │ │ │ ├── HTML │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AppType.htm │ │ │ │ │ │ ├── UIFeatures.htm │ │ │ │ │ │ └── default.htm │ │ │ │ ├── Images │ │ │ │ │ ├── WTL10AppWiz.png │ │ │ │ │ ├── WTL10AppWiz_Background.png │ │ │ │ │ └── spacer.gif │ │ │ │ ├── Scripts │ │ │ │ │ └── 1033 │ │ │ │ │ │ └── default.js │ │ │ │ ├── Templates │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AboutDlg.cpp │ │ │ │ │ │ ├── AboutDlg.h │ │ │ │ │ │ ├── ChildFrm.cpp │ │ │ │ │ │ ├── ChildFrm.h │ │ │ │ │ │ ├── Frame.cpp │ │ │ │ │ │ ├── Frame.h │ │ │ │ │ │ ├── MainDlg.cpp │ │ │ │ │ │ ├── MainDlg.h │ │ │ │ │ │ ├── Ribbon.h │ │ │ │ │ │ ├── Ribbon.xml │ │ │ │ │ │ ├── Templates.inf │ │ │ │ │ │ ├── View.cpp │ │ │ │ │ │ ├── View.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── root.cpp │ │ │ │ │ │ ├── root.h │ │ │ │ │ │ ├── root.ico │ │ │ │ │ │ ├── root.idl │ │ │ │ │ │ ├── root.rc │ │ │ │ │ │ ├── root.rgs │ │ │ │ │ │ ├── rootDoc.ico │ │ │ │ │ │ ├── rootidl.h │ │ │ │ │ │ ├── rootps.def │ │ │ │ │ │ ├── rootps.mk │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── toolbar.bmp │ │ │ │ ├── WTL10AppWiz.ico │ │ │ │ ├── WTL10AppWiz.vsdir │ │ │ │ └── WTL10AppWiz.vsz │ │ │ └── Setup.js │ │ └── install.ps1 │ │ └── wtl.10.0.10320.nupkg ├── pingme.txt ├── stm.pdf ├── windirstat.sln └── windirstat │ ├── COM_helpers.cpp │ ├── COM_helpers.h │ ├── ChildrenHeapManager.cpp │ ├── ChildrenHeapManager.h │ ├── LOGICAL_FOCUS_enum.h │ ├── PageGeneral.cpp │ ├── PageGeneral.h │ ├── PageTreemap.cpp │ ├── PageTreemap.h │ ├── ScopeGuard.cpp │ ├── ScopeGuard.h │ ├── TreeListControl.cpp │ ├── TreeListControl.h │ ├── colorbutton.cpp │ ├── colorbutton.h │ ├── datastructures.cpp │ ├── datastructures.h │ ├── directory_enumeration.cpp │ ├── directory_enumeration.h │ ├── dirstatdoc.cpp │ ├── dirstatdoc.h │ ├── dirstatview.cpp │ ├── dirstatview.h │ ├── globalhelpers.cpp │ ├── globalhelpers.h │ ├── gpl-2.0.txt │ ├── graphview.cpp │ ├── graphview.h │ ├── hwnd_funcs.cpp │ ├── hwnd_funcs.h │ ├── macros_that_scare_small_children.h │ ├── mainframe.cpp │ ├── mainframe.h │ ├── mountpoints.cpp │ ├── mountpoints.h │ ├── nt_kernel_support.h │ ├── options.cpp │ ├── options.h │ ├── ownerdrawnlistcontrol.h │ ├── packages.config │ ├── res │ ├── bitmap1.bmp │ ├── icon1.ico │ ├── junctionpoint.bmp │ ├── license.txt │ ├── windirstat.manifest │ └── windirstat.rc2 │ ├── resource.h │ ├── signum.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stringformatting.cpp │ ├── stringformatting.h │ ├── treemap.cpp │ ├── treemap.h │ ├── typeview.cpp │ ├── typeview.h │ ├── windirstat.common.settings │ ├── windirstat.cpp │ ├── windirstat.h │ ├── windirstat.rc │ ├── windirstat.vcproj │ ├── windirstat.vcxproj │ ├── windirstat.vcxproj.filters │ ├── xyslider.cpp │ └── xyslider.h ├── designInsight.txt ├── designPlansGoingForward.txt ├── developmentScreenshots ├── InsertItemSlowness.PNG ├── KernelCPUUsage.PNG ├── SAL_caught_a_bug.PNG ├── SAL_caught_a_bug_2.PNG ├── SAL_pre_satisfies_caught_a_bug.PNG ├── clever_optimization.PNG ├── concrt_not_leak.PNG ├── concrt_not_leak_2.PNG ├── concrt_not_leak_3.PNG ├── concrt_not_leak_4.PNG ├── explorerDirEnumStart.PNG ├── fifty_nine_quadrillion.PNG ├── little_time)in_api.PNG ├── openMP_whoops.PNG ├── tenIterationsOfFastest_FindFirstFile&FindNextFile.PNG ├── there'sTheProblem.PNG ├── unDecorator__getTemplateArgumentList.PNG ├── usage_recurseCollectExtensionData.PNG └── wtf_WPA.PNG ├── exceptions_design_choicestxt.txt ├── filesystem-docs-n-stuff ├── !Search to the Rescue! - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── 2845.EffectiveOnstageTechPresentations_21D8649D.png ├── 5 Appendix A_ Product Behavior.pdf ├── 5.4.MFT_Analysis.ppt ├── A Fistful of Dongles_ Give Me $FILE_NAME or Give Me Death.pdf ├── A Formal Logic for Digital Investigations_CSCAN-OA-80.pdf ├── A Primer on Temporary Internet Files - IEInternals - Site Home - MSDN Blogs.pdf ├── A few of my favorite things-debug_commands.pdf ├── A file can go by multiple names, but two files can't have the same name - The Old New Thing - Site Home - MSDN Blogs.pdf ├── A step back in time with Windows 8′s File History _ Ars Technica.pdf ├── Analyzing Storage Performance using the Windows Performance Analysis Toolkit (WPT) - Windows Storage Team - Site Home - MSDN Blogs.pdf ├── Best practices for NTFS compression in Windows.pdf ├── Blogs - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf ├── Blow the dust out of the connector - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Booting from GPT.pdf ├── Breaking down the _Cl_ in !irp - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── CLI326_ WinFS - File System Integration and Security - Tim Sneath - Site Home - MSDN Blogs.pdf ├── CSI Debugging - Uncovering the cause of a Server Hang - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── Calling the Windows APIs for Large Files - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf ├── Case Study - Software Restriction Policies and Large EXE Files - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── Change Journals (Windows).pdf ├── Chapter 18 - Choosing a File System.pdf ├── Converting File Times - 64 bit math using only built-in DOS commands - Breazile's Blog - Site Home - MSDN Blogs.pdf ├── Creating, Modifying, and Deleting a Change Journal (Windows).pdf ├── Dangerous setting is dangerous_ This is why you shouldn't turn off write cache buffer flushing - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Data compression techniques and trade offs - SQL Server Storage Engine - Site Home - MSDN Blogs.pdf ├── Debugging a problem_ Audio stops working after an XP SP2 install - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf ├── Deleted renamed partitions, broken file systems, you name it-cgsecurity.pdf ├── Designing a Shadow Copy Strategy_ Storage Services; Remote File Systems; Local File Systems.pdf ├── Disk Concepts and Troubleshooting.pdf ├── Disk Defragmentation – Background and Engineering the Windows 7 Improvements - Engineering Windows 7 - Site Home - MSDN Blogs.pdf ├── Disk Partition Alignment (Sector Alignment) for SQL Server_ Part 4_ Essentials (Cheat Sheet).pdf ├── Disk Partition Alignment (Sector Alignment)_ Make the Case_ Save Hundreds of Thousands of Dollars.pdf ├── Disk Partitioning Offset - Amit's blog - Site Home - MSDN Blogs.pdf ├── Effective technical presentations_ a mind-map - Esoteric - Site Home - MSDN Blogs.pdf ├── Effects of Compression on Moving and Copying Files.pdf ├── Enabling large disks and large sectors in Windows 8 - Building Windows 8 - Site Home - MSDN Blogs.pdf ├── Engineering is about tradeoffs_ How hard will you work to save 68KB of disk space_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Error formatting external hard drive - Aidan Nolan's [MSFT] SharePoint Blog - Site Home - MSDN Blogs.pdf ├── ExtractFromDataRun_ExtractFromDatarun.pdf ├── F-INSIGHT-NTFS-Log-TrackerEnglish.pdf ├── Fast Food Forensics_ Parsing MFT Entries.pdf ├── File Compression and Decompression (Windows).pdf ├── File Systems.pdf ├── Follow-up_ Windows Desktop Search - Engineering Windows 7 - Site Home - MSDN Blogs.pdf ├── Fsutil usn.pdf ├── GID on NTFS File System - Services for UNIX - Interoperability - Site Home - MSDN Blogs.pdf ├── General_ How to improve legacy OS performance (helps virtual machine performance also) - All topics fundamental - Site Home - MSDN Blogs.pdf ├── Generally speaking, yanking the power plug unexpectedly should not be part of your business process - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Guidance for sizing NTFS volumes! - Windows Storage Server - Site Home - TechNet Blogs.pdf ├── Hard Links and Junctions (Windows).pdf ├── Help with the study of the structure of NTFS - Conference iXBT.pdf ├── How NTFS reserves space for its Master File Table (MFT).pdf ├── How To Deadlock Yourself (Don’t Do This) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── How Windows Starts Up (Part the second) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── How Windows Starts Up (part 1 of 4) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── How a project max path and solution name length is calculated - Sara Ford's Weblog - Site Home - MSDN Blogs.pdf ├── How do I delete bytes from the beginning of a file_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── How do I get information about the target of a symbolic link_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── How does Explorer deal with recent files that were renamed_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── How does Explorer detect whether your program supports long file names.pdf ├── How long does it take to create a 16TB file_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── How to bypass the security warning _Unknown Publisher_ with the checkbox _Always Ask Before Opening this File_ - We know IE! - Site Home - MSDN Blogs.pdf ├── How to do atomic writes in a file - Antimail - Site Home - MSDN Blogs.pdf ├── How to locate and correct disk space problems on NTFS volumes.pdf ├── INDXParse_ A suite of tools for inspecting NTFS artifacts - williballenthin.pdf ├── Idempotent Photographical Categorization - Writing ...pdf ├── If NTFS is a robust journaling file system, why do you have to be careful when using it with a USB thumb drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── If you cancel an operation while it's in progress, then it's not surprising that it's only half-done - The Old New Thing - Site Home - MSDN Blogs.pdf ├── If you let people read a file, then they can copy it - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Improving your organization’s security and performance with the Microsoft Desktop Optimization Pack.pdf ├── Inside Win2K NTFS, Part 1.pdf ├── Internals of Database Snapshot - Blogs from Suhas - Site Home - MSDN Blogs.pdf ├── It rather involved being on the other side of this airtight hatchway_ Creating problematic files in a directory.pdf ├── Keeping an Eye onYour NTFS Drives_the Windows 2000 Change Journal Explained-- MSJ, September 1999.pdf ├── Kernel Stack Overflows - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── MFT vs Super Timeline_ Part 1 _ Sketchymoose's Blog.pdf ├── Master Boot Record.pdf ├── Master File Table (Windows).pdf ├── Maxtor OneTouch External Drive and Huge Files - Kirk Evans Blog - Site Home - MSDN Blogs.pdf ├── Memory Mapped File Quirks [Greg] - BCL Team Blog - Site Home - MSDN Blogs.pdf ├── Microspeak_ bubble up - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Moving a file does not recalculate inherited permissions - The Old New Thing - Site Home - MSDN Blogs.pdf ├── NTFS $I30 Index Attributes_ Evidence of Deleted and Overwritten Files _ Forensic Methods.pdf ├── NTFS And 4K Disks - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── NTFS Chkdsk Best Practices and Performance.docx ├── NTFS Curiosities (part 2)_ Volumes, volume names and mount points - Antimail - Site Home - MSDN Blogs.pdf ├── NTFS File Lister using $MFT - Windows XP - MSFN Forum.pdf ├── NTFS Health and Chkdsk.pdf ├── NTFS MFT Internals [Archive] - RCE Messageboard's Regroupment.pdf ├── NTFS Reserved File Names.pdf ├── NTFS Tools and Settings_ Local File Systems.pdf ├── NTFS _ ..__Nitin Kushwaha's Techportal__..pdf ├── NTFS filesystems (1).pdf ├── Naming Files, Paths, and Namespaces (Windows).pdf ├── New Capabilities and Features of the NTFS 3.pdf ├── New Technology File System (NTFS) - Forensics Wiki.pdf ├── New white paper providing guidance for sizing NTFS volumes - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf ├── Not all short filenames contain a tilde - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Not everybody with a non-Windows partition type is a geek - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Ntfs.sys_xp_fun.pdf ├── OEM Support Tools Phase 3 Service Release 2 Availability.pdf ├── OSR's ntfsd List_ Conceptual _-_ NTFS $DATA runlist for huge compressed files, with multiple Extension MFT Records.pdf ├── Overview and History of NTFS.pdf ├── Performance Story about Traceflag T1118 and the cluster registry checkpoint service - Ewan Fairweather - Site Home - MSDN Blogs.pdf ├── Playing with NTFS File Streams - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf ├── Preventing 'Last Access' Chatter - Windows Embedded Blog - Site Home - MSDN Blogs.pdf ├── Project 8 for CNIT 121_ NTFS Data Runs (25 points).pdf ├── Protecting user files with File History - Building Windows 8 - Site Home - MSDN Blogs.pdf ├── Read-Only Filegroups and Compression.pdf ├── Recovering Windows NT After a Boot Failure on an NTFS Drive.pdf ├── RedWolf Computer Forensics - Computer Forensics_Unlock Passwords_E-Discovery - Software.pdf ├── Redesigning chkdsk and the new NTFS health model - Building Windows 8 - Site Home - MSDN Blogs.pdf ├── Rescuing a corrupt NTFS partition (and giving Linux an n-th chance) - Saving the world, one bug at a time - Site Home - MSDN Blogs.pdf ├── Reverse Engineering the Microsoft exFAT FileSYSTEM.pdf ├── STO123_WH06.ppt ├── Sector size and MFT FILE Record size_Hexacorn.pdf ├── Self-Healing NTFS.pdf ├── Shadow copies - a peek under the hood - Antimail - Site Home - MSDN Blogs.pdf ├── Should You Compress Data On Your SSD_ - Freeing Up Capacity On An SSD With NTFS Compression.pdf ├── Shrinking the gap_ carving NTFS-compressed files _ ForensicFocus.pdf ├── Sparse File Errors_ 1450 or 665 due to file fragmentation_ Fixes and Workarounds - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf ├── Sparse Files (Windows).pdf ├── Sparse Files and Disk Quotas (Windows).pdf ├── Stories of anticipating dead computers_ Windows Home Server - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Suggestion Box 3 - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Suggestion Box 3, short answers (part 2 of who knows how many) - The Old New Thing - Site Home - MSDN Blogs.pdf ├── The Case of Anti-Virus filter drive interference with File Stream Restore - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf ├── The Default Cluster Size for the NTFS and FAT File Systems.pdf ├── The Patch Cache and Freeing Space - Heath Stewart's blog - Site Home - MSDN Blogs.pdf ├── The Structure of NTFS.pdf ├── The apocryphal history of file system tunnelling - The Old New Thing - Site Home - MSDN Blogs.pdf ├── The cost of trying too hard_ Splay trees - The Old New Thing - Site Home - MSDN Blogs.pdf ├── The myth of the 16TB limit - Brendan on Windows Home Server - Site Home - MSDN Blogs.pdf ├── The way to stop people from copying files to a folder is to use NTFS security, not to block drag_drop - The Old New Thing - Site Home - MSDN Blogs.pdf ├── There's something about Rat Poker - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Thin Provisioning Performance Test - NTFS (LOGO).pdf ├── Things I've written that have amused other people, Episode 9 - The Old New Thing - Site Home - MSDN Blogs.pdf ├── UNISA Chatter – Operating System Concepts_ Part 11 … File System Concepts - Willy's Reflections - Site Home - MSDN Blogs.pdf ├── Understanding File System Minifilter and Legacy Filter Load Order - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── Understanding NTFS Compression - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── Using Python to parse and present Windows 64 bit timestamps _ Integriography_ A Journal of Broken Locks, Ethics, and Computer Forensics.pdf ├── VDI-in-a-Box Analysis Results_dig4n6.pdf ├── Viewing Junctions with ‘dir’ - Windows PowerShell Blog - Site Home - MSDN Blogs.pdf ├── Volatility Labs_ MoVP II - 2.pdf ├── WFP is my new best friend - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf ├── Wait, but why can I GetProcAddress for IsDialogMessage_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Walking a Buffer of Change Journal Records (Windows).pdf ├── We're currently using FILE_FLAG_NO_BUFFERING and FILE_FLAG_WRITE_THROUGH, but we would like our WriteFile to go even faster - The Old New Thing - Site Home - MSDN Blogs.pdf ├── What is the programmatic equivalent to unchecking the box to prevent a file from having its contents indexed_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── What is the quickest way to get the file system type on a volume_ - Antimail - Site Home - MSDN Blogs.pdf ├── What the various registry data types mean is different from how they are handled - The Old New Thing - Site Home - MSDN Blogs.pdf ├── What's New in NTFS.pdf ├── What's the deal with the System Volume Information folder_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── When people ask to disable drag and drop, they often are trying to disable accidental drag and drop - The Old New Thing - Site Home - MSDN Blogs.pdf ├── When programs grovel into undocumented structures...pdf ├── When you compress a drive, some files are exempted, but you can force it, and then it's your problem - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Where Did My Disk I_O Go_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf ├── Where is this CRC that is allegedly invalid on my hard drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Who hogs down my CPU_ - Antimail - Site Home - MSDN Blogs.pdf ├── Who really knows Windows 8.1.pdf ├── Who really knows Windows 8_ - Oliver's Blog - Site Home - MSDN Blogs.pdf ├── Why are the Compression and Encryption options check boxes instead of radio buttons_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why are there two copies of Notepad_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why do NTFS and Explorer disagree on filename sorting_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why do my file properties sometimes show an Archive check box and sometimes an Advanced button_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why do timestamps change when I copy files to a floppy_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why does Windows Compressed Folders (Zip folders) reject paths that begin with a slash_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why does copying a file to my USB thumb drive say that the parameter is incorrect_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why does it take so long to create a fixed size virtual hard disk_ - Ben Armstrong - Site Home - MSDN Blogs.pdf ├── Why does my asynchronous I_O complete synchronously_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why does my single-byte write take forever_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why does the Recycle Bin have different file system names on FAT and NTFS_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why doesn't Explorer have an interface for creating hard links_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why doesn't Explorer let you create a file whose name begins with a dot_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why doesn't the Low Disk Space warning balloon show up as soon as I run low on disk space - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Why is my packed record structure and CompareMem function failing_.pdf ├── Why is the file size reported incorrectly for files that are still being written to_ - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Windows $MFT and NTFS Metadata Extractor Tool.pdf ├── Windows 2000 File Systems.doc ├── Windows 7 CD_DVD Burning « SecureArtisan.pdf ├── Windows 8.1 File System Performance Down.pdf ├── Windows 8_ Updates and Maintenance - Oliver's Blog - Site Home - MSDN Blogs.pdf ├── Windows Home Server Technical Brief - Drive Extender.docx ├── Windows Incident Response_ MFT Analysis.pdf ├── Windows Server 2012 File Server Tip_ Disable 8.pdf ├── Windows Server 8 data deduplication_ What you need to know - TechRepublic.pdf ├── Windows XP May Cause Extra SMB Notify Change Traffic.pdf ├── You can create an infinitely recursive directory tree - The Old New Thing - Site Home - MSDN Blogs.pdf ├── You'd think that with the name scratch, people wouldn't expect it to be around for a long time - The Old New Thing - Site Home - MSDN Blogs.pdf ├── Your program loads libraries by their short name and you don't even realize it - The Old New Thing - Site Home - MSDN Blogs.pdf ├── anti-forensic-rootkits_BH-JP-06-Bilby-up.pdf ├── corrupted disk partition, Start of MFT rotated 16 bytes - Microsoft Community.pdf ├── get-file-info_ A tool for inspecting NTFS MFT records - williballenthin.pdf ├── implications of subkeys-2002-March.txt ├── jschicht.RawDir_RawDir.pdf ├── most_important │ ├── 07-FileSystemsExtra6_NTFS_BW.pdf │ ├── A Quick Look at $MFT Resident Data on Advanced Format Disks _ Trace Evidence.pdf │ ├── An NTFS Parser Lib - CodeProject.pdf │ ├── Boot Sector.pdf │ ├── Debugging story_ Slowness due to NTFS short file (8.pdf │ ├── DigitalResidue's Forensics_ Windows File System.pdf │ ├── Filesystem_Journal_Analysis.pptx │ ├── Getting to known your NTFS INDX Records.pptx │ ├── Hacking Exposed Computer Forensics Blog_ NTFS Triforce - A deeper look inside the artifacts.pdf │ ├── How NTFS Works_ Local File Systems.pdf │ ├── How to disable 8.3 file name creation on NTFS.pdf │ ├── Incident Response with NTFS INDX Buffers – Part 2_ The Internal Structures of a File Name Attribute _ M-unition.pdf │ ├── MSHD.pptx │ ├── NTFS Internals.doc │ ├── NTFS Misreports Free Space_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf │ ├── NTFS On-Disk Structure-11.7.pdf │ ├── NTFS Performance with Numerous Long Filenames.pdf │ ├── NTFS curiosities (Part I)_ Short file names - Antimail - Site Home - MSDN Blogs.pdf │ ├── NTFS forensics.pdf │ ├── NTFS.ppt │ ├── NTFSFS.ppt │ ├── Ntfs Misreporting Free Space (Part 2) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf │ ├── NtfsDisable8dot3NameCreation_ Core Services.pdf │ ├── SASAG-2012-NTFS.pptx │ ├── The Four Stages of NTFS File Growth - Ask the Core Team - Site Home - TechNet Blogs.pdf │ ├── Too many files causing RAM pressure_ (a.k.a.pdf │ ├── WIN_2000_FILE_SYSTEMS.pdf │ ├── Why do some file operations take file names and others take handles_ - The Old New Thing - Site Home - MSDN Blogs.pdf │ ├── Why does FindFirstFile find short names_ - The Old New Thing - Site Home - MSDN Blogs.pdf │ ├── Why doesn't Explorer show recursive directory size as an optional column_ - The Old New Thing - Site Home - MSDN Blogs.pdf │ ├── Why doesn't the file system have a function that tells you the number of files in a directory_ - The Old New Thing - Site Home - MSDN Blogs.pdf │ ├── Windows NTFS Master File Table (MFT) Analysis – Gerben Kleijn.pdf │ ├── ntfs_cheat_sheets.pdf │ ├── ntfs_lab_4.pdf │ ├── ntfsdoc.pdf │ ├── vorlesung_forensik_ws11-12_kap06_ntfs-handout.pdf │ ├── windowsvolumeapis1.pdf │ └── wk8.ppt ├── ntfs_1.PNG ├── ntfs_2.PNG ├── ntfs_3.PNG ├── ntfs_4.PNG ├── ntfs_5.PNG ├── ntfs_6.PNG ├── privvoxy_malware_w4kfu's bl0g.pdf ├── williballenthin_INDXParse · GitHub.pdf └── wp.NT_Orphan_Files.en_us.pdf ├── git_issues_dummy_file ├── idea.txt ├── invert_compose.txt ├── perf_testing.txt ├── stress_progs └── populateDir │ ├── populateDir.sln │ └── populateDir │ ├── Header.h │ ├── populateDir.cpp │ ├── populateDir.vcxproj │ └── populateDir.vcxproj.filters ├── stress_scripts ├── parallel_stress.py ├── populateDir.py └── populateDirWithSingleFiletype.py ├── test_how_a_really_fucking_horrible_expression_in_SequoiaView_is_parsed.txt ├── things to investigate.txt ├── weird_code_gen ├── debug_mode │ ├── weird_code_gen_asm.PNG │ ├── weird_code_gen_cpp.PNG │ ├── weird_code_gen_side_by_side_1.PNG │ └── weird_code_gen_side_by_side_2.PNG └── release_mode │ ├── weird_code_gen_side_by_side_1.PNG │ ├── weird_code_gen_side_by_side_2.PNG │ ├── weird_code_gen_side_by_side_3.PNG │ ├── weird_code_gen_side_by_side_4.PNG │ ├── weird_code_gen_side_by_side_5.PNG │ ├── weird_code_gen_side_by_side_6.PNG │ ├── weird_code_gen_side_by_side_7.PNG │ └── weird_code_gen_side_by_side_8.PNG └── wtff.PNG /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: ariccio 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /BugsToBeFixed.txt: -------------------------------------------------------------------------------- 1 | "lastchild" has a rect with coordinates (-1, -1, -1, -1)? 2 | 3 | 4 | can we get the size (minimum width of column to display the name of the object) without a call to draw it?? 5 | 6 | 7 | the Directory List header is not always drawn, immediatley after scanning is complete -------------------------------------------------------------------------------- /DoSomeWork_Ticks_Benchmark.txt: -------------------------------------------------------------------------------- 1 | ticks: 0-> 4:21:50, 2 | 4:25:36 3 | =0:03:46 4 | 5 | ticks:100-> 4:34:35, 6 | 4:37:58 7 | =0:03:23 8 | 9 | ticks:999-> 4:42:17, 10 | 4:45:10 11 | =0:02:53 -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/.hgignore: -------------------------------------------------------------------------------- 1 | glob:*.exe 2 | glob:*.7z 3 | glob:*.msi 4 | glob:SciTE* 5 | glob:todo.tdl 6 | glob:Debug.*\* 7 | glob:Release.*\* 8 | glob:arclite\7z\* 9 | glob:lzo\include\* 10 | glob:lzo\lib\* 11 | glob:lzo\src\* 12 | glob:openssl\include\* 13 | glob:openssl\lib\* 14 | glob:openssl\src\* 15 | glob:sfx\* 16 | syntax: glob 17 | *.vcxproj.user 18 | *.sdf 19 | *.sln 20 | *.suo 21 | *.opensdf 22 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/.hgtags: -------------------------------------------------------------------------------- 1 | 4cd924b72a88dc94af8ccf52deed340e298c354b 1.2.0 2 | c6c0fa76ec1e2c91253437f8cb5b4df4bb140d18 1.2.1 3 | b1be99e0e670a2d309ec8fa29d9dbb2ea1d088d4 ntfsfile 5.0.1 4 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/col/AnsiString.h: -------------------------------------------------------------------------------- 1 | #ifndef _COL_ANSI_STRING_H 2 | #define _COL_ANSI_STRING_H 3 | 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | namespace col { 12 | 13 | #define __A_ANSI_STRING__ 14 | #include "col/ArrayBase.h" 15 | #undef __A_ANSI_STRING__ 16 | 17 | } /* namespace */ 18 | 19 | #endif /* _COL_ANSI_STRING_H */ 20 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/col/ObjectArray.h: -------------------------------------------------------------------------------- 1 | #ifndef _COL_OBJECT_ARRAY_H 2 | #define _COL_OBJECT_ARRAY_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | namespace col { 9 | 10 | #define __A_OBJECT_ARRAY__ 11 | #include "col/ArrayBase.h" 12 | #undef __A_OBJECT_ARRAY__ 13 | 14 | } /* namespace */ 15 | 16 | #endif /* _COL_OBJECT_ARRAY_H */ 17 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/col/PlainArray.h: -------------------------------------------------------------------------------- 1 | #ifndef _COL_PLAIN_ARRAY_H 2 | #define _COL_PLAIN_ARRAY_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | namespace col { 9 | 10 | #define __A_PLAIN_ARRAY__ 11 | #include "col/ArrayBase.h" 12 | #undef __A_PLAIN_ARRAY__ 13 | 14 | } /* namespace */ 15 | 16 | #endif /* _COL_PLAIN_ARRAY_H */ 17 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/col/UnicodeString.h: -------------------------------------------------------------------------------- 1 | #ifndef _COL_UNICODE_STRING_H 2 | #define _COL_UNICODE_STRING_H 3 | 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | namespace col { 12 | 13 | #define __A_UNICODE_STRING__ 14 | #include "col/ArrayBase.h" 15 | #undef __A_UNICODE_STRING__ 16 | 17 | } /* namespace */ 18 | 19 | #endif /* _COL_UNICODE_STRING_H */ 20 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/common/iniparse.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Ini { 4 | 5 | typedef map Section; 6 | class File: public map { 7 | public: 8 | wstring get(const wstring& section_name, const wstring& key_name); 9 | void parse(const wstring& text); 10 | }; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/common/numutils.cpp: -------------------------------------------------------------------------------- 1 | #include "utils.hpp" 2 | 3 | int round(double d) { 4 | double a = fabs(d); 5 | int res = static_cast(a); 6 | double frac = a - res; 7 | if (frac >= 0.5) 8 | res++; 9 | if (d >= 0) 10 | return res; 11 | else 12 | return -res; 13 | } 14 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/defrag/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | CMAKE_MINIMUM_REQUIRED(VERSION 2.6) 2 | PROJECT(defrag) 3 | SET(src ${CMAKE_CURRENT_SOURCE_DIR}) 4 | SET(top ${src}/..) 5 | IF(DEFINED MSVC) 6 | INCLUDE(${top}/cmake/MSVC.cmake) 7 | ENDIF(DEFINED MSVC) 8 | INCLUDE_DIRECTORIES(${src} ${top}) 9 | ADD_EXECUTABLE(defrag main.cpp defragment.cpp volume.cpp utils.cpp) 10 | TARGET_LINK_LIBRARIES(${PROJECT_NAME} mpr) 11 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/defrag/defragment.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void defragment(const UnicodeString& file_name); 4 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/defrag/volume.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct NtfsVolume { 4 | UnicodeString name; 5 | DWORD serial; 6 | unsigned cluster_size; 7 | HANDLE handle; 8 | NtfsVolume(): handle(INVALID_HANDLE_VALUE), serial(0) { 9 | } 10 | ~NtfsVolume() { 11 | close(); 12 | } 13 | void close() { 14 | if (handle != INVALID_HANDLE_VALUE) { 15 | CHECK_SYS(CloseHandle(handle)); 16 | handle = INVALID_HANDLE_VALUE; 17 | } 18 | name.clear(); 19 | serial = 0; 20 | } 21 | void open(const UnicodeString& volume_name); 22 | }; 23 | 24 | UnicodeString get_real_path(const UnicodeString& fp); 25 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/distrib.bat: -------------------------------------------------------------------------------- 1 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86 2 | 3 | nmake -nologo RELEASE=1 clean 4 | nmake -nologo RELEASE=1 distrib installer 5 | @if errorlevel 1 goto error 6 | @copy Release.x86\*.7z . 7 | @copy Release.x86\*.msi . 8 | nmake -nologo RELEASE=1 clean 9 | 10 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86_amd64 11 | 12 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 13 | nmake -nologo RELEASE=1 PLATFORM=x64 distrib installer 14 | @if errorlevel 1 goto error 15 | @copy Release.x64\*.7z . 16 | @copy Release.x64\*.msi . 17 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 18 | 19 | @goto end 20 | 21 | :error 22 | @echo TERMINATED WITH ERRORS 23 | 24 | :end 25 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/farsdk/farcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/farsdk/farcolor.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/farsdk/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/farsdk/plugin.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/headers.cpp: -------------------------------------------------------------------------------- 1 | #include "headers.hpp" 2 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/headers.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | #include 10 | #include 11 | #include 12 | 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | using namespace std; 21 | 22 | #include "plugin.hpp" 23 | #include "farcolor.hpp" 24 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/icon.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "update.ico" 2 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/installer/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/installer/banner.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/installer/dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/installer/dialog.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/installer/exclam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/installer/exclam.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/installer/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/installer/info.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/installer/installer.wxi: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/options.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct HttpOptions { 4 | bool use_proxy; 5 | wstring proxy_server; 6 | unsigned proxy_port; 7 | unsigned proxy_auth_scheme; 8 | wstring proxy_user_name; 9 | wstring proxy_password; 10 | HttpOptions(); 11 | }; 12 | 13 | class Options { 14 | public: 15 | bool use_full_install_ui; 16 | bool update_stable_builds; 17 | bool logged_install; 18 | wstring install_properties; 19 | HttpOptions http; 20 | bool cache_enabled; 21 | unsigned cache_max_size; 22 | wstring cache_dir; 23 | bool open_changelog; 24 | Options(); 25 | void load(); 26 | void save(); 27 | }; 28 | 29 | extern Options g_options; 30 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/plugin.def: -------------------------------------------------------------------------------- 1 | LIBRARY <(MODULE)> BASE=0x64800000 2 | EXPORTS 3 | GetGlobalInfoW 4 | SetStartupInfoW 5 | GetPluginInfoW 6 | OpenW 7 | ConfigureW 8 | ExitFARW 9 | ProcessSynchroEventW 10 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/plugin.h.h: -------------------------------------------------------------------------------- 1 | #define PLUGIN_NAME L"<(NAME)>" 2 | #define PLUGIN_VERSION MAKEFARVERSION(<(VER_MAJOR)>, <(VER_MINOR)>, <(VER_PATCH)>, 0, VS_RELEASE) 3 | #ifdef x64 4 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)> x64" 5 | #else 6 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)>" 7 | #endif 8 | #define PLUGIN_AUTHOR L"<(AUTHOR)>" 9 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/project.ini: -------------------------------------------------------------------------------- 1 | NAME = MsiUpdate 2 | MODULE = msiupdate 3 | VER_MAJOR = 1 4 | VER_MINOR = 4 5 | VER_PATCH = 2 6 | AUTHOR = Oleg Makovski 7 | HOME_URL = http://farplug.googlecode.com/ 8 | SUPPORT_URL = http://forum.farmanager.com/viewtopic.php?t=4844 9 | UPDATE_URL = http://forum.farmanager.com/viewtopic.php?t=4843 10 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/trayicon.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class TrayIcon: public MessageWindow, public Icon { 4 | private: 5 | static const WORD c_icon_id = 1; 6 | static const unsigned c_timeout = 30 * 1000; 7 | NOTIFYICONDATAW nid; 8 | bool win2k; 9 | protected: 10 | virtual LRESULT window_proc(UINT msg, WPARAM w_param, LPARAM l_param); 11 | public: 12 | TrayIcon(const wstring& window_name, const wstring& title, const wstring& text); 13 | virtual ~TrayIcon(); 14 | }; 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/ui.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class ProgressMonitor { 4 | private: 5 | HANDLE h_scr; 6 | wstring con_title; 7 | unsigned __int64 t_start; 8 | unsigned __int64 t_curr; 9 | unsigned __int64 t_next; 10 | unsigned __int64 t_freq; 11 | protected: 12 | unsigned __int64 time_elapsed() const { 13 | return (t_curr - t_start) / t_freq; 14 | } 15 | virtual void do_update_ui() = 0; 16 | public: 17 | ProgressMonitor(bool lazy = true); 18 | virtual ~ProgressMonitor(); 19 | void update_ui(bool force = false); 20 | }; 21 | 22 | const wchar_t** get_size_suffixes(); 23 | const wchar_t** get_speed_suffixes(); 24 | 25 | bool config_dialog(Options& options); 26 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/update.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Update { 4 | 5 | enum Command { 6 | cmdClean, 7 | cmdExecute, 8 | }; 9 | 10 | void init(); 11 | void clean(); 12 | void execute(bool ask); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/msiupdate/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/msiupdate/update.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/Renewal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://code.google.com/p/farplug/downloads/list 5 | //farplug.googlecode.com/files/ntfsfile_(\d+)\.(\d+)\.(\d+)_uni_x64\.7z 6 | //farplug.googlecode.com/files/ntfsfile_(\d+)\.(\d+)\.(\d+)_uni\.7z 7 | 8 | 9 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/compress_files.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | 5 | void plugin_compress_files( const std::vector& file_list, const CompressFilesParams& params, Log& log ); 6 | bool show_compress_files_dialog( CompressFilesParams& params ); 7 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/defragment.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class IDefragProgress { 4 | public: 5 | unsigned __int64 total_clusters; 6 | unsigned __int64 moved_clusters; 7 | unsigned extents_before; 8 | unsigned extents_after; 9 | virtual void update_defrag_ui( bool force = false ) = 0; 10 | }; 11 | 12 | void defragment( const std::string& file_name, IDefragProgress& progress ); 13 | void defragment( const std::vector& file_list, Log& log ); 14 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/distrib.bat: -------------------------------------------------------------------------------- 1 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86 2 | 3 | nmake -nologo RELEASE=1 clean 4 | nmake -nologo RELEASE=1 distrib installer 5 | @if errorlevel 1 goto error 6 | @copy Release.x86\*.7z . 7 | @copy Release.x86\*.msi . 8 | nmake -nologo RELEASE=1 clean 9 | 10 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86_amd64 11 | 12 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 13 | nmake -nologo RELEASE=1 PLATFORM=x64 distrib installer 14 | @if errorlevel 1 goto error 15 | @copy Release.x64\*.7z . 16 | @copy Release.x64\*.msi . 17 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 18 | 19 | @goto end 20 | 21 | :error 22 | @echo TERMINATED WITH ERRORS 23 | 24 | :end 25 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/farsdk/farcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/farsdk/farcolor.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/farsdk/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/farsdk/plugin.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/filever.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void plugin_show_file_version( const std::string& file_name ); 4 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/headers.cpp: -------------------------------------------------------------------------------- 1 | #include "headers.hpp" -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/installer/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/installer/banner.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/installer/dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/installer/dialog.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/installer/exclam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/installer/exclam.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/installer/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/ntfsfile/installer/info.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/installer/installer.wxi: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct LogRecord { 4 | std::string object; 5 | std::string message; 6 | }; 7 | 8 | struct Log : public std::vector < LogRecord > { 9 | void add( const std::string& object, const std::string& message ) { 10 | LogRecord log_rec; 11 | log_rec.object = object; 12 | log_rec.message = message; 13 | std::vector::add( log_rec ); 14 | } 15 | void show( ); 16 | }; 17 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/plugin.def: -------------------------------------------------------------------------------- 1 | LIBRARY <(MODULE)> BASE=0x61000000 2 | EXPORTS 3 | GetGlobalInfoW 4 | SetStartupInfoW 5 | GetPluginInfoW 6 | OpenW 7 | ClosePanelW 8 | GetOpenPanelInfoW 9 | GetFindDataW 10 | FreeFindDataW 11 | SetDirectoryW 12 | ConfigureW 13 | ProcessPanelInputW 14 | ProcessSynchroEventW 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/plugin.h.h: -------------------------------------------------------------------------------- 1 | #define PLUGIN_NAME L"<(NAME)>" 2 | #define PLUGIN_VERSION MAKEFARVERSION(<(VER_MAJOR)>, <(VER_MINOR)>, <(VER_PATCH)>, 0, VS_RELEASE) 3 | #ifdef x64 4 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)> x64" 5 | #else 6 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)>" 7 | #endif 8 | #define PLUGIN_AUTHOR L"<(AUTHOR)>" 9 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/ntfsfile/project.ini: -------------------------------------------------------------------------------- 1 | NAME = NTFS File Information 2 | MODULE = ntfsfile 3 | VER_MAJOR = 5 4 | VER_MINOR = 5 5 | VER_PATCH = 2 6 | AUTHOR = Oleg Makovski 7 | HOME_URL = http://farplug.googlecode.com/ 8 | SUPPORT_URL = http://forum.farmanager.com/viewtopic.php?t=2051 9 | UPDATE_URL = http://forum.farmanager.com/viewtopic.php?t=2050 10 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/tools/convcp.cpp: -------------------------------------------------------------------------------- 1 | #include "common.hpp" 2 | 3 | int wmain(int argc, wchar_t* argv[]) { 4 | BEGIN_ERROR_HANDLER; 5 | if (argc != 4) 6 | FAIL_MSG(L"Usage: convcp in_file out_file codepage"); 7 | unsigned code_page; 8 | wstring text = load_file(argv[1]); 9 | save_file(argv[2], text, str_to_int(argv[3])); 10 | return 0; 11 | END_ERROR_HANDLER; 12 | return 1; 13 | } 14 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/tools/makefile: -------------------------------------------------------------------------------- 1 | CPPFLAGS = -nologo -EHsc -I..\common -DUNICODE user32.lib advapi32.lib ole32.lib 2 | 3 | build: 4 | $(CPP) $(CPPFLAGS) gendep.cpp 5 | $(CPP) $(CPPFLAGS) msgc.cpp 6 | $(CPP) $(CPPFLAGS) preproc.cpp 7 | $(CPP) $(CPPFLAGS) farver.cpp 8 | $(CPP) $(CPPFLAGS) convcp.cpp 9 | del /q *.obj 10 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/Renewal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://code.google.com/p/farplug/downloads/list 5 | //farplug.googlecode.com/files/wmexplorer_(\d+)\.(\d+)\.(\d+)_uni_x64\.7z 6 | //farplug.googlecode.com/files/wmexplorer_(\d+)\.(\d+)\.(\d+)_uni\.7z 7 | 8 | 9 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/distrib.bat: -------------------------------------------------------------------------------- 1 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86 2 | 3 | nmake -nologo RELEASE=1 clean 4 | nmake -nologo RELEASE=1 distrib installer 5 | @if errorlevel 1 goto error 6 | @copy Release.x86\*.7z . 7 | @copy Release.x86\*.msi . 8 | nmake -nologo RELEASE=1 clean 9 | 10 | @call "%VCINSTALLDIR%\vcvarsall.bat" x86_amd64 11 | 12 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 13 | nmake -nologo RELEASE=1 PLATFORM=x64 distrib installer 14 | @if errorlevel 1 goto error 15 | @copy Release.x64\*.7z . 16 | @copy Release.x64\*.msi . 17 | nmake -nologo RELEASE=1 PLATFORM=x64 clean 18 | 19 | @goto end 20 | 21 | :error 22 | @echo TERMINATED WITH ERRORS 23 | 24 | :end 25 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/farsdk/farcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/farsdk/farcolor.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/farsdk/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/farsdk/plugin.hpp -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/file_info.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define FILE_SIZE(find_data) ((((unsigned __int64) (find_data).nFileSizeHigh) << 32) + (find_data).nFileSizeLow) 4 | 5 | struct FileInfo { 6 | std::string file_name; 7 | uintptr_t attr; 8 | FILETIME creation_time; 9 | FILETIME access_time; 10 | FILETIME write_time; 11 | unsigned __int64 size; 12 | unsigned child_cnt; 13 | FileInfo() { 14 | } 15 | FileInfo(const WIN32_FIND_DATAW& find_data); 16 | FileInfo(const CE_FIND_DATA& find_data); 17 | FileInfo(const PluginPanelItem& find_data); 18 | bool is_dir() const; 19 | }; 20 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/headers.cpp: -------------------------------------------------------------------------------- 1 | #include "headers.hpp" 2 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/headers.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | #include 7 | #include 8 | 9 | #include "rapi2.h" 10 | #include "ceutil.h" 11 | #include "replfilt.h" 12 | 13 | #include "plugin.hpp" 14 | #include "farcolor.hpp" 15 | 16 | #include "col/AnsiString.h" 17 | #include "col/std::string.h" 18 | #include "col/PlainArray.h" 19 | #include "col/std::vector.h" 20 | using namespace col; 21 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/installer/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/installer/banner.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/installer/dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/installer/dialog.jpg -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/installer/exclam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/installer/exclam.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/installer/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/FarManager_farplug/farplug/wmexplorer/installer/info.ico -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/installer/installer.wxi: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/pinfo.h.h: -------------------------------------------------------------------------------- 1 | #define PLUGIN_NAME L"<(NAME)>" 2 | #define PLUGIN_VERSION MAKEFARVERSION(<(VER_MAJOR)>, <(VER_MINOR)>, <(VER_PATCH)>, 0, VS_RELEASE) 3 | #ifdef x64 4 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)> x64" 5 | #else 6 | #define PLUGIN_DESCRIPTION L"<(NAME)> for Far Manager <(FAR_VER_MAJOR)>" 7 | #endif 8 | #define PLUGIN_AUTHOR L"<(AUTHOR)>" 9 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/plugin.def: -------------------------------------------------------------------------------- 1 | LIBRARY <(MODULE)> BASE=0x74000000 2 | EXPORTS 3 | GetGlobalInfoW 4 | SetStartupInfoW 5 | GetPluginInfoW 6 | OpenW 7 | GetOpenPanelInfoW 8 | ClosePanelW 9 | GetFindDataW 10 | FreeFindDataW 11 | SetDirectoryW 12 | GetFilesW 13 | PutFilesW 14 | DeleteFilesW 15 | MakeDirectoryW 16 | ConfigureW 17 | ProcessPanelInputW 18 | ExitFARW 19 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/farplug/wmexplorer/project.ini: -------------------------------------------------------------------------------- 1 | NAME = WM Explorer 2 | MODULE = wmexplorer 3 | VER_MAJOR = 1 4 | VER_MINOR = 12 5 | VER_PATCH = 2 6 | AUTHOR = Oleg Makovski 7 | HOME_URL = http://farplug.googlecode.com/ 8 | SUPPORT_URL = http://forum.farmanager.com/viewtopic.php?t=2827 9 | UPDATE_URL = http://forum.farmanager.com/viewtopic.php?t=2826 10 | -------------------------------------------------------------------------------- /Reference code/FarManager_farplug/licence_info.txt: -------------------------------------------------------------------------------- 1 | code in farplug is licensed under BSD 3-Clause licence. http://opensource.org/licenses/BSD-3-Clause -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/FixList.h: -------------------------------------------------------------------------------- 1 | // Bugfix for Linux and NT 4.0 drives prior to NTFS 3.0 or 2 | // files written by Linux NTFS drivers 3 | 4 | #include "ntfs_struct.h" 5 | 6 | 7 | // limit: 2^32 files 8 | 9 | // LinkedList 10 | struct LINKITEM 11 | { 12 | unsigned int data; 13 | unsigned int entry; 14 | LINKITEM *next; 15 | 16 | #ifdef TRACING 17 | unsigned long long num; 18 | #endif 19 | }; 20 | 21 | 22 | void AddToFixList( int entry, int data ); 23 | void CreateFixList( ); 24 | void ProcessFixList( PDISKHANDLE disk ); 25 | -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/NTFS-Search.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/NTFS-Search.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/NTFS-Search-OSR/NTFS-Search/NTFS-Search.ico -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/NTFS-Search.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/NTFS-Search-OSR/NTFS-Search/NTFS-Search.rc -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/SimplePattern.h: -------------------------------------------------------------------------------- 1 | // Simple- really 2 | 3 | struct SEARCHP 4 | { 5 | int mode; 6 | wchar_t* string; 7 | int len; 8 | wchar_t* extra; 9 | int extralen; 10 | int totallen; 11 | }; 12 | 13 | SEARCHP* StartSearch(wchar_t* string, int len); 14 | int SearchStr(SEARCHP* pattern, wchar_t* string, int len); 15 | int EndSearch(SEARCHP* pattern); -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/NTFS-Search-OSR/NTFS-Search/small.ico -------------------------------------------------------------------------------- /Reference code/NTFS-Search-OSR/NTFS-Search/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // NTFSearch.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/NTFSfastFind/NTFSfastfind.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/NTFSfastFind/NTFSfastfind.pdn -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/NTFSfastFind/NTFSfastfind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/NTFSfastFind/NTFSfastfind.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/NTFSfastFind/std_pre.h: -------------------------------------------------------------------------------- 1 | #ifndef STD_PRE_H 2 | #define STD_PRE_H 3 | #else 4 | #endif 5 | 6 | #define TRACE_OUT(x) std::endl << "\t\t" << #x << " = `" << x << "` " -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFS Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.scribd.com/doc/2187280/NTFS-Documentation 3 | IconFile=http://s6.scribdassets.com/favicon.ico 4 | IconIndex=1 5 | -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/dataruns.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | margin-bottom: 0em; 3 | } 4 | 5 | ul { 6 | margin-top: 0em; 7 | padding-top: 0em; 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/emailntfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/emailntfs.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/glossary.css: -------------------------------------------------------------------------------- 1 | a:link, a:visited { 2 | text-decoration: underline; 3 | color: #069; 4 | background-color: transparent; 5 | } 6 | 7 | a:hover { 8 | color: #fff; 9 | background-color: #069; 10 | } 11 | 12 | a.toolbar { 13 | color: #069; 14 | background-color: #cc9; 15 | padding: 2px 10px 2px 10px; 16 | text-decoration: none; 17 | } 18 | 19 | dl { 20 | margin-top: 0px; 21 | } 22 | -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/ntfsdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/ntfsdoc.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/ntfsicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/ntfsicon.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/valid-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/valid-css.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/valid-html401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/NTFSdoc/style/valid-html401.png -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/The Sleuth Kit.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.sleuthkit.org/sleuthkit/index.php 3 | IconFile=http://www.sleuthkit.org/favicon.ico 4 | IconIndex=1 5 | -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image10.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image11.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image12.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image2.jpg -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image23.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image24.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image3.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image4.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image5.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image6.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image7.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image8.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/image9.gif -------------------------------------------------------------------------------- /Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/ntfsfastfind-v2.9-src/NTFSfastFind-v2.9/extra-info-on-ntfs/ntfs/index.html -------------------------------------------------------------------------------- /Reference code/osImageTool/ComboBoxControl.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __COMBOBOXCONTROL_H__ 8 | 9 | #include 10 | #include "stringutils.h" 11 | 12 | class ComboBoxControl { 13 | public: 14 | ComboBoxControl(CComboBox* cb); 15 | 16 | void Initialize(const StringList& list); 17 | 18 | void SetSelection(int index); 19 | void SetText(const std::string& text); 20 | bool GetSelection(int& index) const; 21 | bool GetText(std::string& text) const; 22 | 23 | private: 24 | CComboBox* m_cb; 25 | }; 26 | 27 | #define __COMBOBOXCONTROL_H__ 28 | #endif 29 | -------------------------------------------------------------------------------- /Reference code/osImageTool/Configuration.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __CONFIGURATION_H__ 8 | 9 | #include 10 | 11 | class Configuration { 12 | public: 13 | Configuration(); 14 | ~Configuration(); 15 | 16 | bool RegisterSelf(); 17 | 18 | std::string ProgrammeApath; 19 | std::string ApplicationRoot; 20 | std::string BootloaderName; 21 | std::string ProgrammeAcommand; 22 | 23 | bool bCheckFilesize; 24 | }; 25 | 26 | extern Configuration g_cfg; 27 | #define __CONFIGURATION_H__ 28 | #endif 29 | -------------------------------------------------------------------------------- /Reference code/osImageTool/ErrorHandler.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __ERRORHANDLER_H__ 8 | 9 | #include 10 | #include "stringutils.h" 11 | 12 | class ErrorHandler { 13 | public: 14 | void Display(); 15 | void Set(const std::string& msg); 16 | private: 17 | StringList m_errors; 18 | }; 19 | std::string LastError(); 20 | std::string LastError(DWORD dwErrorCode); 21 | 22 | extern ErrorHandler g_err; 23 | 24 | #define __ERRORHANDLER_H__ 25 | #endif 26 | -------------------------------------------------------------------------------- /Reference code/osImageTool/LinearFileImageWriter.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __LinearFileIMAGEWRITER_H__ 8 | 9 | #include 10 | #include "vectorutils.h" 11 | #include "FileOsImageWriter.h" 12 | 13 | class LinearFileImageWriter : public FileOsImageWriter { 14 | public: 15 | LinearFileImageWriter(const std::string& filename, DWORD filestart, DWORD baseoffset); 16 | 17 | virtual bool WriteData(DWORD dwOffset, const ByteVector& buffer); 18 | 19 | private: 20 | DWORD m_filestart; 21 | }; 22 | 23 | #define __LinearFileIMAGEWRITER_H__ 24 | #endif 25 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB0ImageReader.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | #include "NB0ImageReader.h" 9 | 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | #include "debug.h" 14 | 15 | NB0ImageReader::NB0ImageReader(const std::string& filename, DWORD offset/*=0*/) 16 | : LinearFileImageReader(filename, 0x80000000, 0x40000, offset) 17 | { 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB0ImageReader.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __NB0IMAGEREADER_H__ 8 | 9 | #include "LinearFileImageReader.h" 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | 14 | class NB0ImageReader : public LinearFileImageReader { 15 | public: 16 | NB0ImageReader(const std::string& filename, DWORD offset=0); 17 | }; 18 | 19 | #define __NB0IMAGEREADER_H__ 20 | #endif 21 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB1FileOsImageWriter.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | 9 | #include "NB1FileOsImageWriter.h" 10 | #include "debug.h" 11 | 12 | NB1FileOsImageWriter::NB1FileOsImageWriter(const std::string& filename, DWORD baseoffset) 13 | : LinearFileImageWriter(filename, 0x80040000, baseoffset) 14 | { 15 | } 16 | 17 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB1FileOsImageWriter.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __NB1FILEOSIMAGEWRITER_H__ 8 | 9 | #include 10 | #include "vectorutils.h" 11 | #include "LinearFileImageWriter.h" 12 | 13 | class NB1FileOsImageWriter : public LinearFileImageWriter { 14 | public: 15 | NB1FileOsImageWriter(const std::string& filename, DWORD baseoffset=0); 16 | }; 17 | 18 | #define __NB1FILEOSIMAGEWRITER_H__ 19 | #endif 20 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB1OsImageReader.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | #include "NB1OsImageReader.h" 9 | 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | #include "debug.h" 14 | 15 | NB1OsImageReader::NB1OsImageReader(const std::string& filename, DWORD offset/*=0*/) 16 | : LinearFileImageReader(filename, 0x80040000, 0x01ec0000, offset) 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NB1OsImageReader.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __NB1OSIMAGEREADER_H__ 8 | 9 | #include "LinearFileImageReader.h" 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | 14 | class NB1OsImageReader : public LinearFileImageReader { 15 | public: 16 | NB1OsImageReader(const std::string& filename, DWORD offset=0); 17 | }; 18 | 19 | #define __NB1OSIMAGEREADER_H__ 20 | #endif 21 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NBFOsImageReader.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | #include "NBFOsImageReader.h" 9 | 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | #include "debug.h" 14 | 15 | NBFOsImageReader::NBFOsImageReader(const std::string& filename, DWORD offset/*=0*/) 16 | : LinearFileImageReader(filename, 0x7fffffe0, 0x1f00020, offset) 17 | { 18 | } 19 | 20 | -------------------------------------------------------------------------------- /Reference code/osImageTool/NBFOsImageReader.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __NBFOSIMAGEREADER_H__ 8 | 9 | #include "LinearFileImageReader.h" 10 | #include 11 | #include 12 | #include "vectorutils.h" 13 | 14 | class NBFOsImageReader : public LinearFileImageReader { 15 | public: 16 | NBFOsImageReader(const std::string& filename, DWORD offset=0); 17 | }; 18 | 19 | #define __NBFOSIMAGEREADER_H__ 20 | #endif 21 | -------------------------------------------------------------------------------- /Reference code/osImageTool/OSImageWriter.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | 9 | #include "OsImageWriter.h" 10 | 11 | // -- no functions 12 | 13 | 14 | -------------------------------------------------------------------------------- /Reference code/osImageTool/OsImageCopier.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __OSIMAGECOPIER_H__ 8 | 9 | #include "OSImageToolDlg.h" 10 | #include "OsImageReader.h" 11 | #include "OsImageWriter.h" 12 | 13 | class OsImageCopier { 14 | public: 15 | OsImageCopier(COSImageToolDlg *dlg); 16 | 17 | bool copy(OsImageReader *reader, OsImageWriter *writer); 18 | 19 | private: 20 | COSImageToolDlg *m_dlg; 21 | 22 | void UpdateStatistics(DWORD t0, DWORD t1, DWORD offset); 23 | }; 24 | 25 | #define __OSIMAGECOPIER_H__ 26 | #endif 27 | -------------------------------------------------------------------------------- /Reference code/osImageTool/OsImageReader.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | 9 | #include "OsImageReader.h" 10 | #include "debug.h" 11 | 12 | // - no functions, abstract class 13 | 14 | OsImageReader::~OsImageReader() 15 | { 16 | } 17 | 18 | -------------------------------------------------------------------------------- /Reference code/osImageTool/OsImageReader.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __OSIMAGEREADER_H__ 8 | 9 | #include 10 | #include 11 | #include "vectorutils.h" 12 | 13 | class OsImageReader { 14 | public: 15 | virtual ~OsImageReader(); 16 | 17 | virtual bool Open()=0; 18 | virtual bool Close()=0; 19 | 20 | virtual bool ReadData(DWORD dwOffset, DWORD dwSize, ByteVector& buffer)=0; 21 | }; 22 | 23 | #define __OSIMAGEREADER_H__ 24 | #endif 25 | -------------------------------------------------------------------------------- /Reference code/osImageTool/OsImageWriter.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __OSIMAGEWRITER_H__ 8 | 9 | #include 10 | #include "vectorutils.h" 11 | 12 | class OsImageWriter { 13 | public: 14 | virtual ~OsImageWriter() {} 15 | 16 | virtual bool Open()=0; 17 | virtual bool Close()=0; 18 | 19 | virtual bool CheckSpace()=0; 20 | virtual bool WriteData(DWORD dwOffset, const ByteVector& buffer)=0; 21 | }; 22 | 23 | #define __OSIMAGEWRITER_H__ 24 | #endif 25 | -------------------------------------------------------------------------------- /Reference code/osImageTool/SdCardDevice.cpp: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #include "stdafx.h" 8 | 9 | #include "SdCardDevice.h" 10 | #include "debug.h" 11 | 12 | SdCardDevice::~SdCardDevice() 13 | { 14 | // ... calling virtual function does not seem to work from 15 | // ... destructor 16 | 17 | // Close(); 18 | } 19 | 20 | 21 | std::string SdCardDevice::GetFriendlyName() 22 | { 23 | std::string name; 24 | GetFriendlyName(name); 25 | return name; 26 | } 27 | -------------------------------------------------------------------------------- /Reference code/osImageTool/dllversion.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __DLLVERSION_H__ 8 | 9 | #define ITSDLL_VERSION 3 10 | 11 | void CheckITSDll(); 12 | 13 | #define __DLLVERSION_H__ 14 | #endif 15 | -------------------------------------------------------------------------------- /Reference code/osImageTool/res/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Index of /~itsme/cvs-xdadevtools/OSImageTool/res 5 | 6 | 7 |

Index of /~itsme/cvs-xdadevtools/OSImageTool/res

8 | 13 | 14 | -------------------------------------------------------------------------------- /Reference code/osImageTool/res/osimagetool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/osImageTool/res/osimagetool.ico -------------------------------------------------------------------------------- /Reference code/osImageTool/res/osimagetool.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // OSImageTool.RC2 - resources Microsoft Visual C++ does not edit directly 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error this file is not editable by Microsoft Visual C++ 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Add manually edited resources here... 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | -------------------------------------------------------------------------------- /Reference code/osImageTool/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // OSImageTool.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /Reference code/osImageTool/vectorutils.h: -------------------------------------------------------------------------------- 1 | /* (C) 2003 XDA Developers 2 | * Author: Willem Jan Hengeveld 3 | * Web: http://www.xda-developers.com/ 4 | * 5 | * $Header$ 6 | */ 7 | #ifndef __VECTORUTILS_H_ 8 | 9 | #include 10 | #include 11 | 12 | typedef std::vector ByteVector; 13 | 14 | #define vectorptr(v) (&(v)[0]) 15 | #define iteratorptr(v) (&(*v)) 16 | 17 | #define __VECTORUTILS_H_ 18 | #endif 19 | -------------------------------------------------------------------------------- /Reference code/test_datastructures/short_exp/FixList.h: -------------------------------------------------------------------------------- 1 | // Bugfix for Linux and NT 4.0 drives prior to NTFS 3.0 or 2 | // files written by Linux NTFS drivers 3 | 4 | #include "ntfs_struct.h" 5 | 6 | 7 | // limit: 2^32 files 8 | 9 | // LinkedList 10 | struct LINKITEM 11 | { 12 | unsigned int data; 13 | unsigned int entry; 14 | LINKITEM *next; 15 | 16 | #ifdef TRACING 17 | unsigned long long num; 18 | #endif 19 | }; 20 | 21 | 22 | void AddToFixList( int entry, int data ); 23 | void CreateFixList( ); 24 | void ProcessFixList( PDISKHANDLE disk ); 25 | -------------------------------------------------------------------------------- /Reference code/test_datastructures/short_exp/NTFS-Search.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Reference code/test_datastructures/short_exp/SimplePattern.h: -------------------------------------------------------------------------------- 1 | // Simple- really 2 | 3 | struct SEARCHP 4 | { 5 | int mode; 6 | wchar_t* string; 7 | int len; 8 | wchar_t* extra; 9 | int extralen; 10 | int totallen; 11 | }; 12 | 13 | SEARCHP* StartSearch(wchar_t* string, int len); 14 | int SearchStr(SEARCHP* pattern, wchar_t* string, int len); 15 | int EndSearch(SEARCHP* pattern); -------------------------------------------------------------------------------- /Reference code/test_datastructures/short_exp/short_exp.cpp/short_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/Reference code/test_datastructures/short_exp/short_exp.cpp/short_exp.cpp -------------------------------------------------------------------------------- /Reference code/test_datastructures/short_exp/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // NTFSearch.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | 6 | #include "stdafx.h" 7 | 8 | // TODO: reference any additional headers you need in STDAFX.H 9 | // and not in this file 10 | -------------------------------------------------------------------------------- /WTL_Developer's_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WTL_Developer's_Guide.pdf -------------------------------------------------------------------------------- /WinDirStat/.hg.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/.hg.7z -------------------------------------------------------------------------------- /WinDirStat/TODO.txt: -------------------------------------------------------------------------------- 1 | TODO.txt - What still has to been done to WinDirStat 2 | 3 | ->Fuzz the persistence code; what if data in registry is scrambled? -------------------------------------------------------------------------------- /WinDirStat/altWinDirStat.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/altWinDirStat.smproj -------------------------------------------------------------------------------- /WinDirStat/packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/.signature.p7s -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Aero/res/Aero.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Aero/res/Aero.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Aero/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Aero/res/toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Aero/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Aero.rc 4 | // 5 | #define IDD_ABOUTBOX 100 6 | #define IDR_MAINFRAME 128 7 | #define IDC_APPICON 1000 8 | #define IDC_TEXT 1001 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 201 15 | #define _APS_NEXT_COMMAND_VALUE 32775 16 | #define _APS_NEXT_CONTROL_VALUE 1002 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Aero/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // Aero.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/Alpha.h: -------------------------------------------------------------------------------- 1 | // Alpha.h 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/Alpha.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/Alpha.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/toolbar_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/res/toolbar_old.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Alpha.rc 4 | // 5 | #define IDD_ABOUTBOX 100 6 | #define IDR_MAINFRAME 128 7 | #define IDR_MAINFRAME_OLD 129 8 | 9 | // Next default values for new objects 10 | // 11 | #ifdef APSTUDIO_INVOKED 12 | #ifndef APSTUDIO_READONLY_SYMBOLS 13 | #define _APS_NEXT_RESOURCE_VALUE 201 14 | #define _APS_NEXT_COMMAND_VALUE 32772 15 | #define _APS_NEXT_CONTROL_VALUE 1000 16 | #define _APS_NEXT_SYMED_VALUE 102 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Alpha/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // Alpha.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/BmpView/res/BmpView.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/BmpView/res/BmpView.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/BmpView/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/BmpView/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/BmpView/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // BmpView.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/GuidGen/aboutdlg.h: -------------------------------------------------------------------------------- 1 | class CAboutDlg : public CDialogImpl 2 | { 3 | public: 4 | enum { IDD = IDD_ABOUTBOX }; 5 | 6 | BEGIN_MSG_MAP(CAboutDlg) 7 | MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) 8 | COMMAND_ID_HANDLER(IDOK, OnCloseCmd) 9 | COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd) 10 | END_MSG_MAP() 11 | 12 | LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) 13 | { 14 | CenterWindow(GetParent()); 15 | return TRUE; 16 | } 17 | 18 | LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) 19 | { 20 | EndDialog(wID); 21 | return 0; 22 | } 23 | }; 24 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/GuidGen/res/GuidGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/GuidGen/res/GuidGen.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/GuidGen/stdatl.cpp: -------------------------------------------------------------------------------- 1 | // stdatl.cpp : source file that includes just the standard includes 2 | // GuidGen.pch will be the pre-compiled header 3 | // stdatl.obj will contain the pre-compiled type information 4 | 5 | #include "stdatl.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/HelloDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/HelloDoc.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/MDI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/MDI.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/bounce.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/res/bounce.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MDIDocVw/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/aboutdlg.h: -------------------------------------------------------------------------------- 1 | class CAboutDlg : public CDialogImpl 2 | { 3 | public: 4 | enum { IDD = IDD_ABOUTDLG }; 5 | 6 | BEGIN_MSG_MAP(CAboutDlg) 7 | MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) 8 | COMMAND_ID_HANDLER(IDOK, OnCloseCmd) 9 | COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd) 10 | END_MSG_MAP() 11 | 12 | LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) 13 | { 14 | CenterWindow(GetParent()); 15 | return (LRESULT)TRUE; 16 | } 17 | 18 | LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) 19 | { 20 | EndDialog(wID); 21 | return 0; 22 | } 23 | }; 24 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/MTPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/MTPad.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/MTPadDoc.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/printpre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/res/printpre.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad/stdatl.cpp: -------------------------------------------------------------------------------- 1 | #include "stdatl.h" 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/mtpad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/mtpad.rc -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/ClosePreviewHH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/ClosePreviewHH.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/GoToNextHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/GoToNextHS.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/GoToPreviousHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/GoToPreviousHS.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/MTPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/MTPad.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/MTPadDoc.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/PortraitLandscapeHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/PortraitLandscapeHS.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/PrintPreviewL.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/PrintPreviewL.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/SelectAllS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/SelectAllS.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/UndoS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/UndoS.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/printpre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/res/printpre.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MTPad7/stdatl.cpp: -------------------------------------------------------------------------------- 1 | #include "stdatl.h" 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/View.h: -------------------------------------------------------------------------------- 1 | // View.h : interface of the CView class 2 | // 3 | ///////////////////////////////////////////////////////////////////////////// 4 | 5 | #pragma once 6 | 7 | class CView : public CWindowImpl 8 | { 9 | public: 10 | DECLARE_WND_CLASS(NULL) 11 | 12 | BOOL PreTranslateMessage(MSG* pMsg) 13 | { 14 | pMsg; 15 | return FALSE; 16 | } 17 | 18 | BEGIN_MSG_MAP(CView) 19 | MESSAGE_HANDLER(WM_PAINT, OnPaint) 20 | END_MSG_MAP() 21 | 22 | LRESULT OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) 23 | { 24 | CPaintDC dc(m_hWnd); 25 | 26 | //TODO: Add your drawing code here 27 | 28 | return 0; 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/res/MemDlg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/res/MemDlg.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/res/toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by MemDlg.rc 4 | // 5 | 6 | 7 | #define IDD_ABOUTBOX 100 8 | #define IDR_MAINFRAME 128 9 | #define ID_APP_ABOUT_MEM 32775 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 201 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 102 18 | #define _APS_NEXT_COMMAND_VALUE 32776 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/MemDlg/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // MemDlg.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/TabBrowser.h: -------------------------------------------------------------------------------- 1 | // TabBrowser.h 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Go.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/PageImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/PageImage.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/TabBrowser.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/TabBrowser.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/TabToolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/TabToolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Toolbar_Big.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/res/Toolbar_Big.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/TabBrowser/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // TabBrowser.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/WTLExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/WTLExplorer.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/go.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/go1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/res/go1.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/WTLExplorer/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // WTLExplorer.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/Wizard/TestWizardCompletionPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/Wizard/TestWizardCompletionPage.cpp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/Wizard97Test.h: -------------------------------------------------------------------------------- 1 | // Wizard97Test.h 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/Context.h: -------------------------------------------------------------------------------- 1 | #include "..\resource.hm" 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Completion.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Output.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Wizard - Select Output Page 4 | 5 | 6 | 7 | 8 | 9 |

Test Wizard - Select Output Page

10 | 11 |

Explanation about the wizard page...

12 | 13 | 14 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Output.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PathFilter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Wizard - Path and Filter Page 4 | 5 | 6 | 7 | 8 | 9 |

Test Wizard - Path and Filter Page

10 | 11 |

Explanation about the wizard page...

12 | 13 | 14 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PathFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PathFilter.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PreviewFileList.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Wizard - Preview File List Page 4 | 5 | 6 | 7 | 8 | 9 |

Test Wizard - Preview File List Page

10 | 11 |

Explanation about the wizard page...

12 | 13 | 14 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PreviewFileList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_PreviewFileList.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Welcome.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Wizard - Welcome Page 4 | 5 | 6 | 7 | 8 | 9 |

Test Wizard - Welcome Page

10 |

11 | The first page of the New EP Scene Wizard is a welcome page. 12 | It gives a brief description of the steps in the wizard. 13 |

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/TestWizard_Welcome.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/readme-help.txt: -------------------------------------------------------------------------------- 1 | To compile the HtmlHelp file into the .chm, use the free HTML Help Workshop from Microsoft. 2 | Currently, you can download this from 3 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hwMicrosoftHTMLHelpDownloads.asp 4 | or 5 | http://go.microsoft.com/fwlink/?LinkId=14188 6 | or 7 | http://www.microsoft.com/downloads/details.aspx?FamilyID=00535334-c8a6-452f-9aa0-d597d16580cc&DisplayLang=en 8 | or 9 | http://download.microsoft.com/download/0/a/9/0a939ef6-e31c-430f-a3df-dfae7960d564/htmlhelp.exe -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/help/style.css: -------------------------------------------------------------------------------- 1 | body { font-family: Verdana; font-size:10pt;} 2 | td { font-family: Verdana; font-size:10pt;} 3 | li { font-size:10pt;} 4 | h1 { font-size:14pt; font-weight:bold;} 5 | h2 { font-size:12pt; font-weight:bold;} 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/Wizard97Test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/Wizard97Test.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/header.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/watermark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/res/watermark.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/Samples/Wizard97Test/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // Wizard97Test.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/WTL10AppWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/WTL10AppWiz.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/WTL10AppWiz_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/WTL10AppWiz_Background.png -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Images/spacer.gif -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/AboutDlg.cpp: -------------------------------------------------------------------------------- 1 | // aboutdlg.cpp : implementation of the CAboutDlg class 2 | // 3 | ///////////////////////////////////////////////////////////////////////////// 4 | 5 | #include "stdafx.h" 6 | #include "resource.h" 7 | 8 | #include "aboutdlg.h" 9 | 10 | LRESULT CAboutDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) 11 | { 12 | CenterWindow(GetParent()); 13 | return TRUE; 14 | } 15 | 16 | LRESULT CAboutDlg::OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) 17 | { 18 | EndDialog(wID); 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/root.h: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].h 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/root.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/root.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/root.idl: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].idl : IDL source for [!output PROJECT_NAME].exe 2 | // 3 | 4 | // This file will be processed by the MIDL tool to 5 | // produce the type library ([!output PROJECT_NAME].tlb) and marshalling code. 6 | 7 | import "oaidl.idl"; 8 | import "ocidl.idl"; 9 | 10 | [ 11 | uuid([!output WTL_LIBID]), 12 | version(1.0), 13 | helpstring("[!output PROJECT_NAME] 1.0 Type Library") 14 | ] 15 | library [!output SAFE_PROJECT_NAME]Lib 16 | { 17 | importlib("stdole32.tlb"); 18 | importlib("stdole2.tlb"); 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/root.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | NoRemove AppID 4 | { 5 | {[!output WTL_APPID]} = s '[!output PROJECT_NAME]' 6 | '[!output PROJECT_NAME].EXE' 7 | { 8 | val AppID = s {[!output WTL_APPID]} 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/rootDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/rootDoc.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/rootidl.h: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].idl : IDL source for [!output PROJECT_NAME].exe 2 | // 3 | 4 | // Add interface and coclass declarations in this file 5 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/rootps.def: -------------------------------------------------------------------------------- 1 | 2 | LIBRARY "[!output PROJECT_NAME]PS" 3 | 4 | DESCRIPTION 'Proxy/Stub DLL' 5 | 6 | EXPORTS 7 | DllGetClassObject @1 PRIVATE 8 | DllCanUnloadNow @2 PRIVATE 9 | GetProxyDllInfo @3 PRIVATE 10 | DllRegisterServer @4 PRIVATE 11 | DllUnregisterServer @5 PRIVATE 12 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // [!output PROJECT_NAME].pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | [!if WTL_COM_SERVER] 7 | 8 | #ifdef _ATL_STATIC_REGISTRY 9 | #include 10 | #endif //_ATL_STATIC_REGISTRY 11 | [!endif] 12 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/Templates/1033/toolbar.bmp -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/WTL10AppWiz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/WTL10AppWiz.ico -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/WTL10AppWiz.vsdir: -------------------------------------------------------------------------------- 1 | WTL10AppWiz.vsz| |WTL10 Application Wizard|1|An application that uses the Windows Template Library.| |6777|4096|#1154 2 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/tools/AppWizard/Files/WTL10AppWiz.vsz: -------------------------------------------------------------------------------- 1 | VSWIZARD 7.0 2 | Wizard=VsWizard.VsWizardEngine 3 | 4 | Param="WIZARD_NAME = WTLAppWiz" 5 | Param="WIZARD_VERSION = 7.0" 6 | Param="ABSOLUTE_PATH = ." 7 | Param="FALLBACK_LCID = 1033" 8 | -------------------------------------------------------------------------------- /WinDirStat/packages/wtl.10.0.10320/wtl.10.0.10320.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/packages/wtl.10.0.10320/wtl.10.0.10320.nupkg -------------------------------------------------------------------------------- /WinDirStat/pingme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/pingme.txt -------------------------------------------------------------------------------- /WinDirStat/stm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/stm.pdf -------------------------------------------------------------------------------- /WinDirStat/windirstat/TreeListControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/windirstat/TreeListControl.h -------------------------------------------------------------------------------- /WinDirStat/windirstat/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WinDirStat/windirstat/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/windirstat/res/bitmap1.bmp -------------------------------------------------------------------------------- /WinDirStat/windirstat/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/windirstat/res/icon1.ico -------------------------------------------------------------------------------- /WinDirStat/windirstat/res/junctionpoint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/WinDirStat/windirstat/res/junctionpoint.bmp -------------------------------------------------------------------------------- /WinDirStat/windirstat/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /designInsight.txt: -------------------------------------------------------------------------------- 1 | Not all CItems are directories! 2 | 3 | IT_FILEs don't need m_readJobs, m_readJobDone, m_children, m_ticksWorked, m_done, m_files, m_subdirs 4 | 5 | m_readJobs = 4 bytes 6 | m_readJobDone = <1 byte 7 | m_done = <1 byte 8 | = <1 byte 9 | m_children = 20 bytes 10 | m_ticksWorked = 4 bytes 11 | m_files = 4 bytes 12 | m_subdirs = 4 bytes 13 | ----------------------------------- 14 | = 37 bytes! 15 | 16 | 17 | class CItem size (88) 18 | -37 19 | -------------------- 20 | = new size 51 21 | 22 | 23 | 24 | Each color in typeview needs only a single bitmap! Why redraw them each time? -------------------------------------------------------------------------------- /developmentScreenshots/InsertItemSlowness.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/InsertItemSlowness.PNG -------------------------------------------------------------------------------- /developmentScreenshots/KernelCPUUsage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/KernelCPUUsage.PNG -------------------------------------------------------------------------------- /developmentScreenshots/SAL_caught_a_bug.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/SAL_caught_a_bug.PNG -------------------------------------------------------------------------------- /developmentScreenshots/SAL_caught_a_bug_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/SAL_caught_a_bug_2.PNG -------------------------------------------------------------------------------- /developmentScreenshots/SAL_pre_satisfies_caught_a_bug.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/SAL_pre_satisfies_caught_a_bug.PNG -------------------------------------------------------------------------------- /developmentScreenshots/clever_optimization.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/clever_optimization.PNG -------------------------------------------------------------------------------- /developmentScreenshots/concrt_not_leak.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/concrt_not_leak.PNG -------------------------------------------------------------------------------- /developmentScreenshots/concrt_not_leak_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/concrt_not_leak_2.PNG -------------------------------------------------------------------------------- /developmentScreenshots/concrt_not_leak_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/concrt_not_leak_3.PNG -------------------------------------------------------------------------------- /developmentScreenshots/concrt_not_leak_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/concrt_not_leak_4.PNG -------------------------------------------------------------------------------- /developmentScreenshots/explorerDirEnumStart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/explorerDirEnumStart.PNG -------------------------------------------------------------------------------- /developmentScreenshots/fifty_nine_quadrillion.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/fifty_nine_quadrillion.PNG -------------------------------------------------------------------------------- /developmentScreenshots/little_time)in_api.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/little_time)in_api.PNG -------------------------------------------------------------------------------- /developmentScreenshots/openMP_whoops.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/openMP_whoops.PNG -------------------------------------------------------------------------------- /developmentScreenshots/tenIterationsOfFastest_FindFirstFile&FindNextFile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/tenIterationsOfFastest_FindFirstFile&FindNextFile.PNG -------------------------------------------------------------------------------- /developmentScreenshots/there'sTheProblem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/there'sTheProblem.PNG -------------------------------------------------------------------------------- /developmentScreenshots/unDecorator__getTemplateArgumentList.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/unDecorator__getTemplateArgumentList.PNG -------------------------------------------------------------------------------- /developmentScreenshots/usage_recurseCollectExtensionData.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/usage_recurseCollectExtensionData.PNG -------------------------------------------------------------------------------- /developmentScreenshots/wtf_WPA.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/developmentScreenshots/wtf_WPA.PNG -------------------------------------------------------------------------------- /exceptions_design_choicestxt.txt: -------------------------------------------------------------------------------- 1 | Note to self: maybe exceptions are a GOOD model for error handling in parts of the rendering code? -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/!Search to the Rescue! - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/!Search to the Rescue! - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/2845.EffectiveOnstageTechPresentations_21D8649D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/2845.EffectiveOnstageTechPresentations_21D8649D.png -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/5 Appendix A_ Product Behavior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/5 Appendix A_ Product Behavior.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/5.4.MFT_Analysis.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/5.4.MFT_Analysis.ppt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A Fistful of Dongles_ Give Me $FILE_NAME or Give Me Death.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A Fistful of Dongles_ Give Me $FILE_NAME or Give Me Death.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A Formal Logic for Digital Investigations_CSCAN-OA-80.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A Formal Logic for Digital Investigations_CSCAN-OA-80.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A Primer on Temporary Internet Files - IEInternals - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A Primer on Temporary Internet Files - IEInternals - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A few of my favorite things-debug_commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A few of my favorite things-debug_commands.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A file can go by multiple names, but two files can't have the same name - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A file can go by multiple names, but two files can't have the same name - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/A step back in time with Windows 8′s File History _ Ars Technica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/A step back in time with Windows 8′s File History _ Ars Technica.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Analyzing Storage Performance using the Windows Performance Analysis Toolkit (WPT) - Windows Storage Team - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Analyzing Storage Performance using the Windows Performance Analysis Toolkit (WPT) - Windows Storage Team - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Best practices for NTFS compression in Windows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Best practices for NTFS compression in Windows.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Blogs - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Blogs - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Blow the dust out of the connector - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Blow the dust out of the connector - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Booting from GPT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Booting from GPT.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Breaking down the _Cl_ in !irp - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Breaking down the _Cl_ in !irp - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/CLI326_ WinFS - File System Integration and Security - Tim Sneath - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/CLI326_ WinFS - File System Integration and Security - Tim Sneath - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/CSI Debugging - Uncovering the cause of a Server Hang - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/CSI Debugging - Uncovering the cause of a Server Hang - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Calling the Windows APIs for Large Files - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Calling the Windows APIs for Large Files - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Case Study - Software Restriction Policies and Large EXE Files - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Case Study - Software Restriction Policies and Large EXE Files - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Change Journals (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Change Journals (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Chapter 18 - Choosing a File System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Chapter 18 - Choosing a File System.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Converting File Times - 64 bit math using only built-in DOS commands - Breazile's Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Converting File Times - 64 bit math using only built-in DOS commands - Breazile's Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Creating, Modifying, and Deleting a Change Journal (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Creating, Modifying, and Deleting a Change Journal (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Dangerous setting is dangerous_ This is why you shouldn't turn off write cache buffer flushing - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Dangerous setting is dangerous_ This is why you shouldn't turn off write cache buffer flushing - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Data compression techniques and trade offs - SQL Server Storage Engine - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Data compression techniques and trade offs - SQL Server Storage Engine - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Debugging a problem_ Audio stops working after an XP SP2 install - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Debugging a problem_ Audio stops working after an XP SP2 install - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Deleted renamed partitions, broken file systems, you name it-cgsecurity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Deleted renamed partitions, broken file systems, you name it-cgsecurity.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Designing a Shadow Copy Strategy_ Storage Services; Remote File Systems; Local File Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Designing a Shadow Copy Strategy_ Storage Services; Remote File Systems; Local File Systems.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Disk Concepts and Troubleshooting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Disk Concepts and Troubleshooting.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Disk Defragmentation – Background and Engineering the Windows 7 Improvements - Engineering Windows 7 - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Disk Defragmentation – Background and Engineering the Windows 7 Improvements - Engineering Windows 7 - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Disk Partition Alignment (Sector Alignment) for SQL Server_ Part 4_ Essentials (Cheat Sheet).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Disk Partition Alignment (Sector Alignment) for SQL Server_ Part 4_ Essentials (Cheat Sheet).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Disk Partition Alignment (Sector Alignment)_ Make the Case_ Save Hundreds of Thousands of Dollars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Disk Partition Alignment (Sector Alignment)_ Make the Case_ Save Hundreds of Thousands of Dollars.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Disk Partitioning Offset - Amit's blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Disk Partitioning Offset - Amit's blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Effective technical presentations_ a mind-map - Esoteric - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Effective technical presentations_ a mind-map - Esoteric - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Effects of Compression on Moving and Copying Files.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Effects of Compression on Moving and Copying Files.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Enabling large disks and large sectors in Windows 8 - Building Windows 8 - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Enabling large disks and large sectors in Windows 8 - Building Windows 8 - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Engineering is about tradeoffs_ How hard will you work to save 68KB of disk space_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Engineering is about tradeoffs_ How hard will you work to save 68KB of disk space_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Error formatting external hard drive - Aidan Nolan's [MSFT] SharePoint Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Error formatting external hard drive - Aidan Nolan's [MSFT] SharePoint Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ExtractFromDataRun_ExtractFromDatarun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ExtractFromDataRun_ExtractFromDatarun.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/F-INSIGHT-NTFS-Log-TrackerEnglish.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/F-INSIGHT-NTFS-Log-TrackerEnglish.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Fast Food Forensics_ Parsing MFT Entries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Fast Food Forensics_ Parsing MFT Entries.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/File Compression and Decompression (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/File Compression and Decompression (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/File Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/File Systems.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Follow-up_ Windows Desktop Search - Engineering Windows 7 - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Follow-up_ Windows Desktop Search - Engineering Windows 7 - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Fsutil usn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Fsutil usn.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/GID on NTFS File System - Services for UNIX - Interoperability - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/GID on NTFS File System - Services for UNIX - Interoperability - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/General_ How to improve legacy OS performance (helps virtual machine performance also) - All topics fundamental - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/General_ How to improve legacy OS performance (helps virtual machine performance also) - All topics fundamental - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Generally speaking, yanking the power plug unexpectedly should not be part of your business process - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Generally speaking, yanking the power plug unexpectedly should not be part of your business process - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Guidance for sizing NTFS volumes! - Windows Storage Server - Site Home - TechNet Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Guidance for sizing NTFS volumes! - Windows Storage Server - Site Home - TechNet Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Hard Links and Junctions (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Hard Links and Junctions (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Help with the study of the structure of NTFS - Conference iXBT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Help with the study of the structure of NTFS - Conference iXBT.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How NTFS reserves space for its Master File Table (MFT).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How NTFS reserves space for its Master File Table (MFT).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How To Deadlock Yourself (Don’t Do This) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How To Deadlock Yourself (Don’t Do This) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How Windows Starts Up (Part the second) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How Windows Starts Up (Part the second) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How Windows Starts Up (part 1 of 4) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How Windows Starts Up (part 1 of 4) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How a project max path and solution name length is calculated - Sara Ford's Weblog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How a project max path and solution name length is calculated - Sara Ford's Weblog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How do I delete bytes from the beginning of a file_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How do I delete bytes from the beginning of a file_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How do I get information about the target of a symbolic link_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How do I get information about the target of a symbolic link_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How does Explorer deal with recent files that were renamed_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How does Explorer deal with recent files that were renamed_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How does Explorer detect whether your program supports long file names.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How does Explorer detect whether your program supports long file names.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How long does it take to create a 16TB file_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How long does it take to create a 16TB file_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How to bypass the security warning _Unknown Publisher_ with the checkbox _Always Ask Before Opening this File_ - We know IE! - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How to bypass the security warning _Unknown Publisher_ with the checkbox _Always Ask Before Opening this File_ - We know IE! - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How to do atomic writes in a file - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How to do atomic writes in a file - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/How to locate and correct disk space problems on NTFS volumes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/How to locate and correct disk space problems on NTFS volumes.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/INDXParse_ A suite of tools for inspecting NTFS artifacts - williballenthin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/INDXParse_ A suite of tools for inspecting NTFS artifacts - williballenthin.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Idempotent Photographical Categorization - Writing ...pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Idempotent Photographical Categorization - Writing ...pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/If NTFS is a robust journaling file system, why do you have to be careful when using it with a USB thumb drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/If NTFS is a robust journaling file system, why do you have to be careful when using it with a USB thumb drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/If you cancel an operation while it's in progress, then it's not surprising that it's only half-done - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/If you cancel an operation while it's in progress, then it's not surprising that it's only half-done - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/If you let people read a file, then they can copy it - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/If you let people read a file, then they can copy it - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Improving your organization’s security and performance with the Microsoft Desktop Optimization Pack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Improving your organization’s security and performance with the Microsoft Desktop Optimization Pack.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Inside Win2K NTFS, Part 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Inside Win2K NTFS, Part 1.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Internals of Database Snapshot - Blogs from Suhas - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Internals of Database Snapshot - Blogs from Suhas - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/It rather involved being on the other side of this airtight hatchway_ Creating problematic files in a directory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/It rather involved being on the other side of this airtight hatchway_ Creating problematic files in a directory.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Keeping an Eye onYour NTFS Drives_the Windows 2000 Change Journal Explained-- MSJ, September 1999.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Keeping an Eye onYour NTFS Drives_the Windows 2000 Change Journal Explained-- MSJ, September 1999.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Kernel Stack Overflows - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Kernel Stack Overflows - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/MFT vs Super Timeline_ Part 1 _ Sketchymoose's Blog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/MFT vs Super Timeline_ Part 1 _ Sketchymoose's Blog.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Master Boot Record.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Master Boot Record.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Master File Table (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Master File Table (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Maxtor OneTouch External Drive and Huge Files - Kirk Evans Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Maxtor OneTouch External Drive and Huge Files - Kirk Evans Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Memory Mapped File Quirks [Greg] - BCL Team Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Memory Mapped File Quirks [Greg] - BCL Team Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Microspeak_ bubble up - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Microspeak_ bubble up - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Moving a file does not recalculate inherited permissions - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Moving a file does not recalculate inherited permissions - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS $I30 Index Attributes_ Evidence of Deleted and Overwritten Files _ Forensic Methods.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS $I30 Index Attributes_ Evidence of Deleted and Overwritten Files _ Forensic Methods.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS And 4K Disks - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS And 4K Disks - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS Chkdsk Best Practices and Performance.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS Chkdsk Best Practices and Performance.docx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS Curiosities (part 2)_ Volumes, volume names and mount points - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS Curiosities (part 2)_ Volumes, volume names and mount points - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS File Lister using $MFT - Windows XP - MSFN Forum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS File Lister using $MFT - Windows XP - MSFN Forum.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS Health and Chkdsk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS Health and Chkdsk.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS MFT Internals [Archive] - RCE Messageboard's Regroupment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS MFT Internals [Archive] - RCE Messageboard's Regroupment.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS Reserved File Names.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS Reserved File Names.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS Tools and Settings_ Local File Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS Tools and Settings_ Local File Systems.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS _ ..__Nitin Kushwaha's Techportal__..pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS _ ..__Nitin Kushwaha's Techportal__..pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/NTFS filesystems (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/NTFS filesystems (1).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Naming Files, Paths, and Namespaces (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Naming Files, Paths, and Namespaces (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/New Capabilities and Features of the NTFS 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/New Capabilities and Features of the NTFS 3.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/New Technology File System (NTFS) - Forensics Wiki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/New Technology File System (NTFS) - Forensics Wiki.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/New white paper providing guidance for sizing NTFS volumes - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/New white paper providing guidance for sizing NTFS volumes - The Storage Team at Microsoft - File Cabinet Blog - Site Home - TechNet Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Not all short filenames contain a tilde - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Not all short filenames contain a tilde - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Not everybody with a non-Windows partition type is a geek - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Not everybody with a non-Windows partition type is a geek - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Ntfs.sys_xp_fun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Ntfs.sys_xp_fun.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/OEM Support Tools Phase 3 Service Release 2 Availability.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/OEM Support Tools Phase 3 Service Release 2 Availability.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/OSR's ntfsd List_ Conceptual _-_ NTFS $DATA runlist for huge compressed files, with multiple Extension MFT Records.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/OSR's ntfsd List_ Conceptual _-_ NTFS $DATA runlist for huge compressed files, with multiple Extension MFT Records.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Overview and History of NTFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Overview and History of NTFS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Performance Story about Traceflag T1118 and the cluster registry checkpoint service - Ewan Fairweather - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Performance Story about Traceflag T1118 and the cluster registry checkpoint service - Ewan Fairweather - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Playing with NTFS File Streams - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Playing with NTFS File Streams - Calvin Hsia's WebLog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Preventing 'Last Access' Chatter - Windows Embedded Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Preventing 'Last Access' Chatter - Windows Embedded Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Project 8 for CNIT 121_ NTFS Data Runs (25 points).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Project 8 for CNIT 121_ NTFS Data Runs (25 points).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Protecting user files with File History - Building Windows 8 - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Protecting user files with File History - Building Windows 8 - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Read-Only Filegroups and Compression.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Read-Only Filegroups and Compression.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Recovering Windows NT After a Boot Failure on an NTFS Drive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Recovering Windows NT After a Boot Failure on an NTFS Drive.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/RedWolf Computer Forensics - Computer Forensics_Unlock Passwords_E-Discovery - Software.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/RedWolf Computer Forensics - Computer Forensics_Unlock Passwords_E-Discovery - Software.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Redesigning chkdsk and the new NTFS health model - Building Windows 8 - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Redesigning chkdsk and the new NTFS health model - Building Windows 8 - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Rescuing a corrupt NTFS partition (and giving Linux an n-th chance) - Saving the world, one bug at a time - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Rescuing a corrupt NTFS partition (and giving Linux an n-th chance) - Saving the world, one bug at a time - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Reverse Engineering the Microsoft exFAT FileSYSTEM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Reverse Engineering the Microsoft exFAT FileSYSTEM.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/STO123_WH06.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/STO123_WH06.ppt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Sector size and MFT FILE Record size_Hexacorn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Sector size and MFT FILE Record size_Hexacorn.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Self-Healing NTFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Self-Healing NTFS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Shadow copies - a peek under the hood - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Shadow copies - a peek under the hood - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Should You Compress Data On Your SSD_ - Freeing Up Capacity On An SSD With NTFS Compression.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Should You Compress Data On Your SSD_ - Freeing Up Capacity On An SSD With NTFS Compression.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Shrinking the gap_ carving NTFS-compressed files _ ForensicFocus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Shrinking the gap_ carving NTFS-compressed files _ ForensicFocus.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Sparse File Errors_ 1450 or 665 due to file fragmentation_ Fixes and Workarounds - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Sparse File Errors_ 1450 or 665 due to file fragmentation_ Fixes and Workarounds - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Sparse Files (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Sparse Files (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Sparse Files and Disk Quotas (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Sparse Files and Disk Quotas (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Stories of anticipating dead computers_ Windows Home Server - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Stories of anticipating dead computers_ Windows Home Server - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Suggestion Box 3 - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Suggestion Box 3 - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Suggestion Box 3, short answers (part 2 of who knows how many) - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Suggestion Box 3, short answers (part 2 of who knows how many) - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The Case of Anti-Virus filter drive interference with File Stream Restore - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The Case of Anti-Virus filter drive interference with File Stream Restore - CSS SQL Server Engineers - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The Default Cluster Size for the NTFS and FAT File Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The Default Cluster Size for the NTFS and FAT File Systems.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The Patch Cache and Freeing Space - Heath Stewart's blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The Patch Cache and Freeing Space - Heath Stewart's blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The Structure of NTFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The Structure of NTFS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The apocryphal history of file system tunnelling - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The apocryphal history of file system tunnelling - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The cost of trying too hard_ Splay trees - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The cost of trying too hard_ Splay trees - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The myth of the 16TB limit - Brendan on Windows Home Server - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The myth of the 16TB limit - Brendan on Windows Home Server - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/The way to stop people from copying files to a folder is to use NTFS security, not to block drag_drop - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/The way to stop people from copying files to a folder is to use NTFS security, not to block drag_drop - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/There's something about Rat Poker - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/There's something about Rat Poker - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Thin Provisioning Performance Test - NTFS (LOGO).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Thin Provisioning Performance Test - NTFS (LOGO).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Things I've written that have amused other people, Episode 9 - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Things I've written that have amused other people, Episode 9 - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/UNISA Chatter – Operating System Concepts_ Part 11 … File System Concepts - Willy's Reflections - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/UNISA Chatter – Operating System Concepts_ Part 11 … File System Concepts - Willy's Reflections - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Understanding File System Minifilter and Legacy Filter Load Order - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Understanding File System Minifilter and Legacy Filter Load Order - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Understanding NTFS Compression - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Understanding NTFS Compression - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Using Python to parse and present Windows 64 bit timestamps _ Integriography_ A Journal of Broken Locks, Ethics, and Computer Forensics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Using Python to parse and present Windows 64 bit timestamps _ Integriography_ A Journal of Broken Locks, Ethics, and Computer Forensics.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/VDI-in-a-Box Analysis Results_dig4n6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/VDI-in-a-Box Analysis Results_dig4n6.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Viewing Junctions with ‘dir’ - Windows PowerShell Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Viewing Junctions with ‘dir’ - Windows PowerShell Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Volatility Labs_ MoVP II - 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Volatility Labs_ MoVP II - 2.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/WFP is my new best friend - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/WFP is my new best friend - Larry Osterman's WebLog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Wait, but why can I GetProcAddress for IsDialogMessage_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Wait, but why can I GetProcAddress for IsDialogMessage_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Walking a Buffer of Change Journal Records (Windows).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Walking a Buffer of Change Journal Records (Windows).pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/We're currently using FILE_FLAG_NO_BUFFERING and FILE_FLAG_WRITE_THROUGH, but we would like our WriteFile to go even faster - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/We're currently using FILE_FLAG_NO_BUFFERING and FILE_FLAG_WRITE_THROUGH, but we would like our WriteFile to go even faster - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/What is the programmatic equivalent to unchecking the box to prevent a file from having its contents indexed_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/What is the programmatic equivalent to unchecking the box to prevent a file from having its contents indexed_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/What is the quickest way to get the file system type on a volume_ - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/What is the quickest way to get the file system type on a volume_ - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/What the various registry data types mean is different from how they are handled - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/What the various registry data types mean is different from how they are handled - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/What's New in NTFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/What's New in NTFS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/What's the deal with the System Volume Information folder_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/What's the deal with the System Volume Information folder_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/When people ask to disable drag and drop, they often are trying to disable accidental drag and drop - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/When people ask to disable drag and drop, they often are trying to disable accidental drag and drop - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/When programs grovel into undocumented structures...pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/When programs grovel into undocumented structures...pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/When you compress a drive, some files are exempted, but you can force it, and then it's your problem - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/When you compress a drive, some files are exempted, but you can force it, and then it's your problem - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Where Did My Disk I_O Go_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Where Did My Disk I_O Go_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Where is this CRC that is allegedly invalid on my hard drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Where is this CRC that is allegedly invalid on my hard drive_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Who hogs down my CPU_ - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Who hogs down my CPU_ - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Who really knows Windows 8.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Who really knows Windows 8.1.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Who really knows Windows 8_ - Oliver's Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Who really knows Windows 8_ - Oliver's Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why are the Compression and Encryption options check boxes instead of radio buttons_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why are the Compression and Encryption options check boxes instead of radio buttons_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why are there two copies of Notepad_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why are there two copies of Notepad_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why do NTFS and Explorer disagree on filename sorting_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why do NTFS and Explorer disagree on filename sorting_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why do my file properties sometimes show an Archive check box and sometimes an Advanced button_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why do my file properties sometimes show an Archive check box and sometimes an Advanced button_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why do timestamps change when I copy files to a floppy_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why do timestamps change when I copy files to a floppy_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does Windows Compressed Folders (Zip folders) reject paths that begin with a slash_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does Windows Compressed Folders (Zip folders) reject paths that begin with a slash_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does copying a file to my USB thumb drive say that the parameter is incorrect_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does copying a file to my USB thumb drive say that the parameter is incorrect_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does it take so long to create a fixed size virtual hard disk_ - Ben Armstrong - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does it take so long to create a fixed size virtual hard disk_ - Ben Armstrong - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does my asynchronous I_O complete synchronously_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does my asynchronous I_O complete synchronously_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does my single-byte write take forever_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does my single-byte write take forever_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why does the Recycle Bin have different file system names on FAT and NTFS_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why does the Recycle Bin have different file system names on FAT and NTFS_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why doesn't Explorer have an interface for creating hard links_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why doesn't Explorer have an interface for creating hard links_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why doesn't Explorer let you create a file whose name begins with a dot_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why doesn't Explorer let you create a file whose name begins with a dot_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why doesn't the Low Disk Space warning balloon show up as soon as I run low on disk space - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why doesn't the Low Disk Space warning balloon show up as soon as I run low on disk space - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why is my packed record structure and CompareMem function failing_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why is my packed record structure and CompareMem function failing_.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Why is the file size reported incorrectly for files that are still being written to_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Why is the file size reported incorrectly for files that are still being written to_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows $MFT and NTFS Metadata Extractor Tool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows $MFT and NTFS Metadata Extractor Tool.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows 2000 File Systems.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows 2000 File Systems.doc -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows 7 CD_DVD Burning « SecureArtisan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows 7 CD_DVD Burning « SecureArtisan.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows 8.1 File System Performance Down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows 8.1 File System Performance Down.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows 8_ Updates and Maintenance - Oliver's Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows 8_ Updates and Maintenance - Oliver's Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows Home Server Technical Brief - Drive Extender.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows Home Server Technical Brief - Drive Extender.docx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows Incident Response_ MFT Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows Incident Response_ MFT Analysis.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows Server 2012 File Server Tip_ Disable 8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows Server 2012 File Server Tip_ Disable 8.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows Server 8 data deduplication_ What you need to know - TechRepublic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows Server 8 data deduplication_ What you need to know - TechRepublic.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Windows XP May Cause Extra SMB Notify Change Traffic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Windows XP May Cause Extra SMB Notify Change Traffic.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/You can create an infinitely recursive directory tree - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/You can create an infinitely recursive directory tree - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/You'd think that with the name scratch, people wouldn't expect it to be around for a long time - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/You'd think that with the name scratch, people wouldn't expect it to be around for a long time - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/Your program loads libraries by their short name and you don't even realize it - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/Your program loads libraries by their short name and you don't even realize it - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/anti-forensic-rootkits_BH-JP-06-Bilby-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/anti-forensic-rootkits_BH-JP-06-Bilby-up.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/corrupted disk partition, Start of MFT rotated 16 bytes - Microsoft Community.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/corrupted disk partition, Start of MFT rotated 16 bytes - Microsoft Community.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/get-file-info_ A tool for inspecting NTFS MFT records - williballenthin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/get-file-info_ A tool for inspecting NTFS MFT records - williballenthin.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/implications of subkeys-2002-March.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/implications of subkeys-2002-March.txt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/jschicht.RawDir_RawDir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/jschicht.RawDir_RawDir.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/07-FileSystemsExtra6_NTFS_BW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/07-FileSystemsExtra6_NTFS_BW.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/A Quick Look at $MFT Resident Data on Advanced Format Disks _ Trace Evidence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/A Quick Look at $MFT Resident Data on Advanced Format Disks _ Trace Evidence.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/An NTFS Parser Lib - CodeProject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/An NTFS Parser Lib - CodeProject.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Boot Sector.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Boot Sector.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Debugging story_ Slowness due to NTFS short file (8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Debugging story_ Slowness due to NTFS short file (8.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/DigitalResidue's Forensics_ Windows File System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/DigitalResidue's Forensics_ Windows File System.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Filesystem_Journal_Analysis.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Filesystem_Journal_Analysis.pptx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Getting to known your NTFS INDX Records.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Getting to known your NTFS INDX Records.pptx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Hacking Exposed Computer Forensics Blog_ NTFS Triforce - A deeper look inside the artifacts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Hacking Exposed Computer Forensics Blog_ NTFS Triforce - A deeper look inside the artifacts.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/How NTFS Works_ Local File Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/How NTFS Works_ Local File Systems.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/How to disable 8.3 file name creation on NTFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/How to disable 8.3 file name creation on NTFS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Incident Response with NTFS INDX Buffers – Part 2_ The Internal Structures of a File Name Attribute _ M-unition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Incident Response with NTFS INDX Buffers – Part 2_ The Internal Structures of a File Name Attribute _ M-unition.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/MSHD.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/MSHD.pptx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS Internals.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS Internals.doc -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS Misreports Free Space_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS Misreports Free Space_ - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS On-Disk Structure-11.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS On-Disk Structure-11.7.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS Performance with Numerous Long Filenames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS Performance with Numerous Long Filenames.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS curiosities (Part I)_ Short file names - Antimail - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS curiosities (Part I)_ Short file names - Antimail - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS forensics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS forensics.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFS.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFS.ppt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NTFSFS.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NTFSFS.ppt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Ntfs Misreporting Free Space (Part 2) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Ntfs Misreporting Free Space (Part 2) - Ntdebugging Blog - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/NtfsDisable8dot3NameCreation_ Core Services.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/NtfsDisable8dot3NameCreation_ Core Services.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/SASAG-2012-NTFS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/SASAG-2012-NTFS.pptx -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/The Four Stages of NTFS File Growth - Ask the Core Team - Site Home - TechNet Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/The Four Stages of NTFS File Growth - Ask the Core Team - Site Home - TechNet Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Too many files causing RAM pressure_ (a.k.a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Too many files causing RAM pressure_ (a.k.a.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/WIN_2000_FILE_SYSTEMS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/WIN_2000_FILE_SYSTEMS.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Why do some file operations take file names and others take handles_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Why do some file operations take file names and others take handles_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Why does FindFirstFile find short names_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Why does FindFirstFile find short names_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Why doesn't Explorer show recursive directory size as an optional column_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Why doesn't Explorer show recursive directory size as an optional column_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Why doesn't the file system have a function that tells you the number of files in a directory_ - The Old New Thing - Site Home - MSDN Blogs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Why doesn't the file system have a function that tells you the number of files in a directory_ - The Old New Thing - Site Home - MSDN Blogs.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/Windows NTFS Master File Table (MFT) Analysis – Gerben Kleijn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/Windows NTFS Master File Table (MFT) Analysis – Gerben Kleijn.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/ntfs_cheat_sheets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/ntfs_cheat_sheets.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/ntfs_lab_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/ntfs_lab_4.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/ntfsdoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/ntfsdoc.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/vorlesung_forensik_ws11-12_kap06_ntfs-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/vorlesung_forensik_ws11-12_kap06_ntfs-handout.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/windowsvolumeapis1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/windowsvolumeapis1.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/most_important/wk8.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/most_important/wk8.ppt -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_1.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_2.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_3.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_4.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_5.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/ntfs_6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/ntfs_6.PNG -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/privvoxy_malware_w4kfu's bl0g.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/privvoxy_malware_w4kfu's bl0g.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/williballenthin_INDXParse · GitHub.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/williballenthin_INDXParse · GitHub.pdf -------------------------------------------------------------------------------- /filesystem-docs-n-stuff/wp.NT_Orphan_Files.en_us.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/filesystem-docs-n-stuff/wp.NT_Orphan_Files.en_us.pdf -------------------------------------------------------------------------------- /git_issues_dummy_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/git_issues_dummy_file -------------------------------------------------------------------------------- /idea.txt: -------------------------------------------------------------------------------- 1 | store item width in some sort of cache? 2 | 3 | display NTFS compression ratio? No need to store additional data, just look up on demand? Store in cache in m_vi? 4 | 5 | Allocate space for each name string returned by FindFilesLoop (files AND directories), then copy into that space! The only difference is that the pointer held in COwnerDrawnListItem COULD NOT be an owning pointer. 6 | CExtensionListControl::m_exts could store all the extension names, 7 | CItemBranch::(some_new_member) could store all file/directory names 8 | CDriveList needs to be totally refactored! It stores the items in some MFC voodoo! -------------------------------------------------------------------------------- /stress_progs/populateDir/populateDir/Header.h: -------------------------------------------------------------------------------- 1 | //std::int64_t stdRecurseFind( _In_ std::wstring dir, _In_ bool isLargeFetch, _In_ bool isBasicInfo, _Inout_ std::vector& files ); 2 | //std::int64_t descendDirectory( _Inout_ WIN32_FIND_DATA& fData, _In_ std::wstring& normSzDir, _In_ bool isLargeFetch, _In_ bool isBasicInfo, _Inout_ std::vector& files ); 3 | //size_t stdWork( _In_ std::wstring arg, _In_ bool isLargeFetch, _In_ bool isBasicInfo, _Inout_ std::vector& files ); 4 | 5 | const LARGE_INTEGER help_QueryPerformanceCounter( ); 6 | const LARGE_INTEGER help_QueryPerformanceFrequency( ); -------------------------------------------------------------------------------- /weird_code_gen/debug_mode/weird_code_gen_asm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/debug_mode/weird_code_gen_asm.PNG -------------------------------------------------------------------------------- /weird_code_gen/debug_mode/weird_code_gen_cpp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/debug_mode/weird_code_gen_cpp.PNG -------------------------------------------------------------------------------- /weird_code_gen/debug_mode/weird_code_gen_side_by_side_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/debug_mode/weird_code_gen_side_by_side_1.PNG -------------------------------------------------------------------------------- /weird_code_gen/debug_mode/weird_code_gen_side_by_side_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/debug_mode/weird_code_gen_side_by_side_2.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_1.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_2.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_3.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_4.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_5.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_6.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_7.PNG -------------------------------------------------------------------------------- /weird_code_gen/release_mode/weird_code_gen_side_by_side_8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/weird_code_gen/release_mode/weird_code_gen_side_by_side_8.PNG -------------------------------------------------------------------------------- /wtff.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariccio/altWinDirStat/41dd067ce29d15113625759836b20911479008cb/wtff.PNG --------------------------------------------------------------------------------