I believe, you already have an active SRQ with Marco Brauner at NIG, right?
Did you try to reinstall the SIT software?
Did you configure the Windows Firewall as well?
Further suggestions:
In the NISignalProbe block the following commands are used to access specific parameters and/or to modify simulation states -> set_param and get_param.
At first you should check whether Matlab is probably installed or configured.
Type in your matlab command window the following commands:
help get_param
help set_param
If both are found by Matlab, open a blank Simulink system and simply code a constant and a gain block.
Disable the block reduction attribute.
Afterwards save the MDL file into the active directory and switch back to the command window and use the following commands:
set_param ('ModelName','SimulationCommand','start');
set_param ('ModelName/Constant','Value','4');
set_param ('ModelName/Gain','Gain','2');
get_param (ModelName/Gain','Gain')
result = 2;
set_param ('ModelName','SimulationCommand','pause');
set_param ('ModelName','SimulationCommand','start');
set_param ('ModelName','SimulationCommand','stop');
If this is working, ensure that port 6011 isn't used twice and if you havn't reinstalled the SIT software, do it.
If the above quotet commands are not working, please refer to the support of Mathworks.
Thanks,
ThSa