├── .gitattributes ├── .gitignore ├── CHANGELOG.TXT ├── LICENSE.txt ├── PYTHON-BUILD-TOOLS.txt ├── README-DE.TXT ├── README-FR.TXT ├── README-RU.TXT ├── README.md ├── ScheduledTask.xml ├── erroraction.cmd ├── erroraction_config.cmd ├── erroraction_config ├── command_runner │ ├── __init__.py │ └── elevate.py ├── cxsetup.py ├── erroraction_config.ico ├── erroraction_config.py ├── erroraction_config.ui ├── nuitkahelper.py └── setup_erroraction_config.py ├── fix_badsectors.cmd ├── smartd.conf ├── smartmontools for Windows includes.iss ├── smartmontools for Windows main.iss ├── smartmontools for Windows strings.iss └── unattended ├── erroraction_config.cmd └── smartd.conf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/CHANGELOG.TXT -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PYTHON-BUILD-TOOLS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/PYTHON-BUILD-TOOLS.txt -------------------------------------------------------------------------------- /README-DE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/README-DE.TXT -------------------------------------------------------------------------------- /README-FR.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/README-FR.TXT -------------------------------------------------------------------------------- /README-RU.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/README-RU.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/README.md -------------------------------------------------------------------------------- /ScheduledTask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/ScheduledTask.xml -------------------------------------------------------------------------------- /erroraction.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction.cmd -------------------------------------------------------------------------------- /erroraction_config.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config.cmd -------------------------------------------------------------------------------- /erroraction_config/command_runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/command_runner/__init__.py -------------------------------------------------------------------------------- /erroraction_config/command_runner/elevate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/command_runner/elevate.py -------------------------------------------------------------------------------- /erroraction_config/cxsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/cxsetup.py -------------------------------------------------------------------------------- /erroraction_config/erroraction_config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/erroraction_config.ico -------------------------------------------------------------------------------- /erroraction_config/erroraction_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/erroraction_config.py -------------------------------------------------------------------------------- /erroraction_config/erroraction_config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/erroraction_config.ui -------------------------------------------------------------------------------- /erroraction_config/nuitkahelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/nuitkahelper.py -------------------------------------------------------------------------------- /erroraction_config/setup_erroraction_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/erroraction_config/setup_erroraction_config.py -------------------------------------------------------------------------------- /fix_badsectors.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/fix_badsectors.cmd -------------------------------------------------------------------------------- /smartd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/smartd.conf -------------------------------------------------------------------------------- /smartmontools for Windows includes.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/smartmontools for Windows includes.iss -------------------------------------------------------------------------------- /smartmontools for Windows main.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/smartmontools for Windows main.iss -------------------------------------------------------------------------------- /smartmontools for Windows strings.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/smartmontools for Windows strings.iss -------------------------------------------------------------------------------- /unattended/erroraction_config.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/unattended/erroraction_config.cmd -------------------------------------------------------------------------------- /unattended/smartd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deajan/smartmontools-win/HEAD/unattended/smartd.conf --------------------------------------------------------------------------------