Hey,
I noticed that when you try to execute make driver_load on a different drive than C on Windows, it complains about LaunchBuildEnv.cmd not being a valid command/file.
To fix this, I had to change the cd commands to include /D, which forces a drive change.
From the cd documentation:
Use the /D switch to change current drive in addition to changing current
directory for a drive.
In short:
cd C:\ewdk\ -> cd /D C:\ewdk\.
cd %1 -> cd /D %1