Run the script inside the virtual machine, but called from VM

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.

+4
source share
1 answer

, - ssh- . ssh .

, :

ssh user@NAT-IP command

, :

 ssh user@NAT-IP

, NAT.

+4

Source: https://habr.com/ru/post/1570303/


All Articles