Move project from Local machine to Network
Posted: Fri Jan 20, 2006 6:55 am
I've been testing InstallAware Studio for a while now.
The scripts I created were approved by my project-manager and I have the approval of purchasing InstallAware.
That brings me up to the next problem.
The time I've been testing InstallAware I've stored the projects on the local disk of my laptop.
The setup containes up to 54 files to be installed, and are stored inside the project like this :
Because these projects will be used by our developers, it is necessary to move the projects (and all of it's files) to our company's network environment.
A couple of questions:
1)
Will the mpr-file load correctly if moved?
2)
How can I quickly change the pathnames [C:\\IAProjects\\...]
without having to change all of the 54 files manually.
3)
Can we use servernames or must we use Drive-letters?
4)
Can we use (compiler) variables to store the sourcepaths ?
like this:
5)
How can I use the projects (and i'ts files) off-line on my laptop, after copying the files (back) to the laptop?
The scripts I created were approved by my project-manager and I have the approval of purchasing InstallAware.
That brings me up to the next problem.
The time I've been testing InstallAware I've stored the projects on the local disk of my laptop.
The setup containes up to 54 files to be installed, and are stored inside the project like this :
Code: Select all
Install Files C:\\IAProjects\\Case_1\\File1.dll to $WINSYSDIR$
Install Files C:\\IAProjects\\Case_1\\File2.dll to $WINSYSDIR$
Install Files C:\\IAProjects\\Case_1\\File3.dll to $WINSYSDIR$
...
Because these projects will be used by our developers, it is necessary to move the projects (and all of it's files) to our company's network environment.
A couple of questions:
1)
Will the mpr-file load correctly if moved?
2)
How can I quickly change the pathnames [C:\\IAProjects\\...]
without having to change all of the 54 files manually.
3)
Can we use servernames or must we use Drive-letters?
Code: Select all
"\\\\Servername\\Projects\\Project_1\\Setupscript\\" or "N\\Projects\\...."
4)
Can we use (compiler) variables to store the sourcepaths ?
like this:
Code: Select all
Set Variable $SOURCEPATH$ to "\\\\Servername\\Projects\\Project_1\\Setupscript\\"
Install Files $SOURCEPATH$\\File1.dll to $WINSYSDIR$
Install Files $SOURCEPATH$\\File2.dll to $WINSYSDIR$
Install Files $SOURCEPATH$\\File3.dll to $WINSYSDIR$
...
5)
How can I use the projects (and i'ts files) off-line on my laptop, after copying the files (back) to the laptop?