Hello,
I am writing a Kix file to install some software, but I want to know if there would be enough room on the users computer before it tries to install.
I can use this in a .bat file:
FOR /F "usebackq tokens=3" %%s IN (`DIR C:\ /-C /-O /W`) DO (
SET FREE_SPACE=%%s
)
ECHO FREE_SPACE is %FREE_SPACE%

But it doesn't work in the Kix file. Is there another way to find the available disk space using Kix?
I'm using Windows 7.

Thanks,
Mark