cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
SPFPlus
Level 3

User registration during install

How do I create a user registration form during an install and send that information to our server? Is there a simple way to do this with Installshield?
Labels (1)
0 Kudos
(3) Replies
RobertDickau
Flexera Alumni

The closest thing I can think of is using the XCopyFile function, which can accept a URL that in turn contains request parameters that the server can record...
0 Kudos
SPFPlus
Level 3

How would you use the XcopyFile function to accomplish this?

By the looks of it, we need to create some custom actions to do this? I thought there would be a "standard" template which we can use because this sort of stuff is so common in any installations nowadays......
0 Kudos
RobertDickau
Flexera Alumni

Something like this (I haven't tried it for a while), perhaps:
XCopyFile(
"http://example.com/target.html?param1=hello&param2=there",
"C:\\faketarget", COMP_NORMAL);
Come to think of it, please see the CopyFile help topic, which has a similar example.
0 Kudos