You have spaces and brackets in your env paths. Try using a shortcut, you can get them by opening a Windows command prompt with cmd and type dir /X Short names will appear before the corresponding directories.
for example, if you have a script to configure your environment:
SET VISUALDIR=C:\Program Files\Microsoft Visual Studio 9.0 SET PATH=%VISUALDIR%\VC\bin;%PATH%
becomes
SET VISUALDIR=C:\PROGRA~1\MICROS~1.0 SET PATH=%VISUALDIR%\VC\bin;%PATH%
If you do not have a script, the erroneous path may be set in the Windows PATH environment variable by default. Then you have to manually modify the PATH variable and apply shortcuts here.
window power
source share