From time to time, we have all seen a situation where files were blocked in Windows.
Example below:

Typically, we have been told to unblock the zip file before unzipping, which should unblock the files within.
If the files have already been unzipped, there is a way to Unblock Multiple Files at the same time.
Example 1 - How to unblock everything in the Manitou folder.
Example 2 - How to unblock everything in the Manitou folder AND its subfolders.
The Single Quote Marks must be included.
Example 1 -
- Open Windows Powershell as an Administrator.
- Type cd\ and hit enter.
- Type cd ' . \Program Files (x86)\ ' and hit enter.
- Type cd ' . \Bold Technologies\ ' and hit enter.
- Type cd ' . \Manitou\ ' and hit enter.
- Type dir | Unblock-File and hit enter.
- Check any Executable or DLL in the Manitou folder. They have been unblocked.
Example 2 -
- Open Windows Powershell as an Administrator.
- Type cd\ and hit enter.
- Type cd ' . \Program Files (x86)\ ' and hit enter.
- Type cd ' . \Bold Technologies\ ' and hit enter.
- Type cd ' . \Manitou\ ' and hit enter.
- Type dir -Recurse | Unblock-File and hit enter.
- Check any Executable or DLL in the Manitou folder or any subfolders. They have been unblocked.