Using SQL Plus, you can run a script with the \"@\" operator from the command line, as in:
c:\\>sqlplus username/password@databasename @\
Have you tried something like this?
sqlplus username/password@database < "EXECUTE some_proc /"
Seems like in UNIX you can do:
sqlplus username/password@database <
But I'm not sure what the windows equivalent of that would be.