In cell (1, 1) I paste way to file.
Sub Command()
Shell "cmd.exe /c CertUtil -hashfile " & Range("A1") & " SHA512 > d:\files.txt"
End Sub
When I push Run button, macro opens command prompt and use command "certutil -hashfile". But I can create macro which can only save the result to text file. Is it possible to write the result of the command prompt into a cell? Or change directory of txt file to * folder with this xls with macro *\files.txt (if I replace folder with xls & txt files)?
Can find an answer.