diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/UnpackagePortableCaseProgressDialog.java b/Core/src/org/sleuthkit/autopsy/casemodule/UnpackagePortableCaseProgressDialog.java index dd535b268d..914f88afb1 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/UnpackagePortableCaseProgressDialog.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/UnpackagePortableCaseProgressDialog.java @@ -173,7 +173,7 @@ class UnpackagePortableCaseProgressDialog extends javax.swing.JDialog implements throw new TskCoreException("Error finding 7-Zip executable"); // NON-NLS } - String outputFolderSwitch = "-o" + String.format("\"%s\"",outputFolder); // NON-NLS + String outputFolderSwitch = String.format("\"-o%s\"",outputFolder); // NON-NLS ProcessBuilder procBuilder = new ProcessBuilder(); procBuilder.command( String.format("\"%s\"",sevenZipExe.getAbsolutePath()), diff --git a/Core/src/org/sleuthkit/autopsy/report/modules/portablecase/PortableCaseReportModuleSettings.java b/Core/src/org/sleuthkit/autopsy/report/modules/portablecase/PortableCaseReportModuleSettings.java index 1f37b7fd9d..05f1fdbc54 100755 --- a/Core/src/org/sleuthkit/autopsy/report/modules/portablecase/PortableCaseReportModuleSettings.java +++ b/Core/src/org/sleuthkit/autopsy/report/modules/portablecase/PortableCaseReportModuleSettings.java @@ -83,6 +83,7 @@ public class PortableCaseReportModuleSettings implements ReportModuleSettings { this.chunkSize = ChunkSize.NONE; this.allTagsSelected = true; this.allSetsSelected = true; + this.shouldIncludeApplication = false; } PortableCaseReportModuleSettings(List setNames, List tagNames, @@ -93,6 +94,7 @@ public class PortableCaseReportModuleSettings implements ReportModuleSettings { this.chunkSize = chunkSize; this.allTagsSelected = allTagsSelected; this.allSetsSelected = allSetsSelected; + this.shouldIncludeApplication = false; } @Override diff --git a/docs/doxygen-user/keyword_search.dox b/docs/doxygen-user/keyword_search.dox index 0625459cf3..c950659bc7 100644 --- a/docs/doxygen-user/keyword_search.dox +++ b/docs/doxygen-user/keyword_search.dox @@ -59,7 +59,7 @@ that exist in a location that Autopsy can understand. To add support for more la and move them to the right location. The following steps breakdown this process for you:
    -
  1. Navigate to https://github.com/tesseract-ocr/tesseract/wiki/Data-Files. +
  2. Navigate to https://tesseract-ocr.github.io/tessdoc/Data-Files.
  3. Under the section titled "Data Files for Version 4.00 (November 29, 2016)" you will find a table containing files that represent each language. These files have the extension ".traineddata".
  4. To download the desired language, click on the links in the far right-hand column of the table. You may download as many as you like. Note that you must only choose from this table. Language files under any other sections are not guaranteed to work in Autopsy.
  5. Once you've downloaded your language files, simply drag and drop them into the "AppData\Roaming\autopsy\ocr_language_packs" folder under your user folder.