我使用FCIV(Microsoft File Checksum Integrity Verifier)可执行文件自动计算某些文件的校验和。
我想在powershell脚本中调用此可执行文件。这是我在Powershell中的片段。
& "Path to FCIV.exe" –add "Base Dir" -bp "Base Dir" -r –xml "Path to XML"
此命令基本上为“Base Dir”下的所有文件递归并计算校验和,然后输出到XML文件中。我可以在Powershell提示符下执行此命令。但是当我将这一行添加到脚本并执行脚本时,我得到了这个错误。
–add\*
Error msg : The system cannot find the path specified.
Error code : 3
我已尝试过将FCIV添加到PATH环境变量以及提供文件的完整路径等所有内容。
有关如何克服这个问题的任何建议?