File Checksum Integrity Verifier: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(Created page with "To find the checksum of a file in Windows. = Install = <pre>Install-Module -Name PsFCIV</pre> == Version == <pre>Get-Command -Module PsFCIV</pre> = Usage = <pre>Import-Module PsFCIV</pre> <pre>Start-PsFCIV -Path C:\Users\username\Downloads -Include *.out -XML files.xml -HashAlgorithm MD5, SHA1, SHA256</pre> View the result in the XML file files.xml = Uninstall = <pre>Uninstall-Module PsFCIV<pre> Category : Windows Category : Windows PowerShell")
 
m (David moved page File Checksum to File Checksum Integrity Verifier without leaving a redirect)
 
(2 intermediate revisions by the same user not shown)
Line 14: Line 14:


= Uninstall =
= Uninstall =
<pre>Uninstall-Module PsFCIV<pre>
<pre>Uninstall-Module PsFCIV</pre>
 
= Reference =
[https://www.pkisolutions.com/tools/psfciv/ PowerShell File Checksum Integrity Verifier]


[[Category : Windows]] [[Category : Windows PowerShell]]
[[Category : Windows]] [[Category : Windows PowerShell]]

Latest revision as of 23:38, 21 December 2023

To find the checksum of a file in Windows.

Install

Install-Module -Name PsFCIV

Version

Get-Command -Module PsFCIV

Usage

Import-Module PsFCIV
Start-PsFCIV -Path C:\Users\username\Downloads -Include *.out -XML files.xml -HashAlgorithm MD5, SHA1, SHA256

View the result in the XML file files.xml

Uninstall

Uninstall-Module PsFCIV

Reference

PowerShell File Checksum Integrity Verifier