Better paste the contents of your batch file here so we can take a look.
Alright, so first of, I downloaded the ccminer. Then I downloaded bulwark 1.2.0 which has an exe that is seemingly my Bulwark wallet. I copied the address from there.
I extracted the ccminer content and created a .txt file with the following command -o stratum+tcp://blocksuckernation.com:3833 -u WALLET ADDRESS -p c=BWK.
I saved it as a .bat file. and simply named it "mining".
I then launched cmd prompt and changed the directory to where my mining.bat is located and simply entered the file name "mining" in order to run it but it says the command is not recognized.
I figured I must be doing something wrong so I launched the ccminer exe I downloaded from the Bulwark instruction page and it does launch but then appears to connect to a monero mining pool.
Needless to say I'm a complete noob at this but I did read several guides online to try and understand what I'm doing and the intricacies.
Ah ok, all clear now. Just as zorachus99 said, you're not understanding the instructions.
1. You need to create a .bat file, not a .txt file. Rename your .txt to .bat
2. The line you pasted are just the arguments, you still need to add the ccminer command and the algo in front. So it would be:
ccminer -a nist5 -o stratum+tcp://blocksuckernation.com:3833 -u WALLET ADDRESS -p c=BWK
pause
(yes, add pause on another line right after the command)
3. Now you should have a mining.bat file ready to be executed.