I need to run the Windows program thousands of times inside the virtual machine, VM (I use the VMWare player) and call it different parameters each time. I wonder if this can be done from VM, I mean that what I need to do inside the virtual machine, for example,
cd c:\temp
executable ARG1 ARG2
(where ARG1 and ARG2 are variable input parameters), I want to know if I can do this by calling this from a VM from Linux, something like
bash: ./vmwareplayer [call previous msdos script with arguments ARG1 and ARG2]
Or, if possible with other types of virtual machines.
source
share