﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
13131,"Python SDK not installed on Windows -- vboxapisetup.py expects VBOX_INSTALL_PATH, not VBOX_MSI_INSTALL_PATH",vekt,,"vboxapisetup.py expects the VBOX_INSTALL_PATH environment variable but the Windows installer creates VBOX_MSI_INSTALL_PATH.

vboxsetup.py could be updated to check both environment variables

{{{
vboxDest = os.environ.get('VBOX_INSTALL_PATH', None) # Non-Windows.
if vboxDest is None:
  vboxDest = os.environ.get('VBOX_MSI_INSTALL_PATH', None) # Windows.
}}}

or the Windows installer could create the VBOX_INSTALL_PATH environment variable.",defect,closed,installer,VirtualBox 4.3.12,fixed,,,all,Windows
