VERIFYING THIS DOWNLOAD
=======================

Never run a PowerShell script from the internet without checking it is the
file you think it is. Here is how.

1. CHECK THE CHECKSUM
---------------------
Open PowerShell in the folder you extracted this into and run:

    Get-FileHash .\OneDrive-Removal-Suite.ps1 -Algorithm SHA256

Compare the Hash it prints with the value in SHA256SUMS.txt. They must
match exactly. If they do not, delete the file and download it again from
https://webpcdesigns.com/downloads/onedrive-removal

2. READ IT
----------
It is plain text. Open OneDrive-Removal-Suite.ps1 in Notepad and read it.
Every action it takes is a named step with a plain-English description.
If a line does not make sense to you, do not run it - email us and ask.

3. DRY RUN IT
-------------
    powershell -ExecutionPolicy Bypass -File .\OneDrive-Removal-Suite.ps1 -DryRun

This prints everything it would do and changes nothing. Read that output
before doing a real run.

4. WINDOWS WILL WARN YOU
------------------------
The file is not code-signed, so Windows may mark it as blocked after
download. That is expected for any unsigned script. To clear the mark:

    Unblock-File .\OneDrive-Removal-Suite.ps1

Only do that after steps 1 to 3.
