[Solved] What’s wrong in this batch/command script? [closed]
The solution to your issue was provided in the comments by LotPings, the syntax is Set /P “VariableName=PromptMessage” not Set /P “%Variable%=PromptMessage”. Here’s a modified example of your script: @Echo Off Set /P “password=Please enter the correct code in order to continue: ” ClS Echo Loading… Timeout 5 /NoBreak > Nul ClS If Not “%password%”==”Puzzle” … Read more