module Mixlib::ShellOut::Windows
def _run_under_cmd(command)
https://github.com/opscode/mixlib-shellout/pull/2#issuecomment-4837859
cmd does not parse multiple quotes well unless the whole thing is wrapped up in quotes.
def _run_under_cmd(command) [ ENV['COMSPEC'], "cmd /c \"#{command}\"" ] end