jakey2846 wrote:
- Code: Select all
TMP=C:\
Your problem is the TMP is set to the root directory of your system drive, but the windows user BOB is not allowed to create files/directories there.
Solution: set TMP to a folder where BOB is allowed to write
Sadly the function is localized in windows, should you have a non-english one you'll have to google how to find it:
- click to open start menu
- type environment
- select Edit environment variables for your account
- in the upper box double-click TMP and change the C:\ to %USERPROFILE%\AppData\Local\Temp
- OK and OK (and maybe a restart of windows is needed)
This should fix it.