See if this post answers your question: "Run from Command Line".
That post describes how to run the processor directly which requires that the model has been meshed and "Analysis > Analysis > Check Model" beforehand. My current batch file includes the commands to solid mesh the model, check model, and perform the analysis. The batch file looks like this (refer to the previous post for a description):
--------------------------------------------------------
:: solid mesh and run the simulation
:: use a drive substitution for the folder with the ADSK Sim Mech software
subst K: /d
subst K: "C:\Program Files\Autodesk\Simulation 2014"
:: use a drive substitution for the folder with the model
subst J: /d
subst J: "C:\Users\jholtz\Documents\Simulations\Knowledge Base\mesh and run"
:: use a variable for the name of the model.
:: DO NOT include spaces on either side of the = sign
set "file=mesh and run test model.fem"
:: mesh each design scenario as necessary
:: -d # is the design scenario to mesh. 0 indicates "last active"
:: -f is the .FEM file
:: -pf indicates to mesh parts based on the .FEM file
:: -ui-progress indicates to show the meshing progress dialog
:: -z 1 indicates to solid mesh the parts that have not been meshed
K:\algormeshrun.exe -- -d 1 -f "J:\%file%" -pf -ui-progress -z 1
K:\algormeshrun.exe -- -d 2 -f "J:\%file%" -pf -ui-progress -z 1
K:\algormeshrun.exe -- -d 3 -f "J:\%file%" -pf -ui-progress -z 1
K:\algormeshrun.exe -- -d 4 -f "J:\%file%" -pf -ui-progress -z 1
:: run the analysis
:: -s indicates the design scenarios to analyze. All; Active; n,m,o; or n-m
K:\algor.exe -s All "J:\%file%"
--------------------------------------------------------