I want to run a program on a windows 7 salt-minion desktop. Something simple, like just opening notepad, with an argument of a specific txt file to open.
This question was addressed [here](
https://groups.google.com/forum/#!topic/salt-users/fl1B4bCG-Nk), and the solution appeared to be to go into services.msc and in the properties for salt-minion on the windows 7 minion, select "Allow interaction with the desktop". That works in a way, but it doesn't actually run the program on the desktop. For example, if I want to run something simple like notepad, and I send the command
salt 'myWindowsMinion' cmd.run 'start notepad'
Then on my minion, I get a popup on my desktop that says "Interactive Service Detection", and I have to click to allow it to show, which then takes me to a separate environment, to show the notepad screen.
I imagine this is actually expected behavior for the way I'm running it, but is there any way to actually run something on the master, that opens notepad on a windows 7 minion desktop?
I am not worried about any security concerns. I'm pretty new to Saltstack, so I apologize if the answer is fairly obvious.
Thanks