module Mixlib::ShellOut::Windows

def _run_under_cmd(command)

http://ss64.com/nt/syntax-esc.html
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