Skip to content

Commit

Permalink
Changed command arguments for new version of winpmem
Browse files Browse the repository at this point in the history
  • Loading branch information
botherder committed Aug 23, 2021
1 parent eb3751f commit a93990e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acquisition/memory_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (a *Acquisition) GenerateMemoryDump() error {
return fmt.Errorf("failed to create winpmem: %v", err)
}

cmdArgs := []string{"--format", "raw", "--output", a.MemoryPath}
cmdArgs := []string{filepath.Join(a.MemoryPath, "physmem.raw")}

err = exec.Command(winpmemPath, cmdArgs...).Run()
if err != nil {
Expand Down

0 comments on commit a93990e

Please sign in to comment.