Recently, I started exploring features of Corda 5 version. To have hands-on there few pre-requisite softwares to be installed in your local machine. One of them is Corda CLI on "Installing the Corda CLI" page, where below file has error while running in Windows machine. corda-cli-downloader-5.0.0.0-Hawk1.0.1.zip --> install.ps1 On line 9 the below line is mentioned with single quote in between. The double quote is required to execute successfully. AS-IS Remove-Item '$cliHomeDir\plugins' -Include *.jar TO-BE Remove-Item "$cliHomeDir\plugins" -Include *.jar After changing from single quote to double quote the scripts run without any issues. So, it is request to change the file, so any developer during pre-requisite does not start with analysis of this script.