Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Installshield and want to set the destionation folder to c:\test. the problem is that the dialog does not allow it. What is the solution for this ?

enter image description here

share|improve this question

2 Answers

up vote 0 down vote accepted

Go to Setup.rul in the OnFirstUIBefore function if I remember correctly and add this lines:

// Create a list for system information.
listInfo = ListCreate (STRINGLIST);

// Get the boot drive.
if (GetSystemInfo (BOOTUPDRIVE, nvResult, svResult) < 0) then
    szError = "Couldn't get BOOTUPDRIVE info.";
else
    TARGETDIR = svResult ^ "Test";
endif;

This guarantees that if the C:\ is not the boot up drive it will be changed to the boot drive.

share|improve this answer

See:

Q104964: HOWTO: Creating a Custom Destination Path

BTW, it is possible that the system doesn't have a C: drive.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.