Batch file not working
So the toppic from this treath says enough I think, 
I got this inside of my Startup.bat and the console showing me the default name from the game self and nothing more 
So I don't know what I'm doing wrong, 

@echo off
:start

RustDedicated.exe -batchmode 

+server.port 28015 ^
+server.level Porcedural Map ^
+server.seeds 3000 ^
+server.worldsize 4000 ^
+server.maxplayers 10 ^
+server.hostname TestServer ^
+server.description TestServer so don't join it yet! ^
+server.url ^
+server.headerimage ^
+server.identity TestServer1 ^
+rcon.port 28016 ^
+rcon.password Spikey-125 ^
+rcon.web 1 ^

@echo.
@echo Restarting Server.................
timeout /t 10
@echo. goto start​
R u sure its under server files folder? Also, remember that it takes time for server to initialize, but it must be showing smth like "mono path ****" etc


And level with name "Porcedural map " does not exist - its Procedural  map


And seed is server.seed , not seedS
And there must be ^ after batchmode
In response to 2CHEVSKII ():
R u sure its under server files folder? Also, remember that it takes time for server to initialize,...
Yes my server is saved onto a extern harddrive I didn't knew the ^ was necessery on the edge from the batchmode, 
But I just changed those things that you saids and some things of it is working online the +server.maxplayers aren't working dunno why
And alos the server name doesn't work either 
Anything with spaces needs to have quotation marks around it. So server.level, server.description, potentially server.hostname, etc. will not work as you have it above. There is also no level named "Porcedural Map", it would be "Procedural Map", though setting that isn't necessary as that is default.
I also dont see any point of having url/headerimage since u dont specify them. 
The ^ stuff concatenates two lines into one, cuz cmd syntax takes one line as one command and proceeds them one by one. 
So
this ^
line 
will be equal to 
this line
Yes it working right now thank you guys for your expirence