I'm using Setup Factory 8.2.1.0.
I'm trying to build my setup.exe within the Windows' command line.
I found the article about "Unattended Build Options" in your website.
I'm using python to call setup factory like this
I got no error when setup factory is auto closed. and I got nothing.
When I use the interface to build, I got setup.exe ok.
BTW, /CONST:<<ini file path>> seems not working
Did I missing somthing import? Thank you!
I'm trying to build my setup.exe within the Windows' command line.
I found the article about "Unattended Build Options" in your website.
I'm using python to call setup factory like this
Code:
def _packSetup(setupFile): _CMD_SETUP = '"%s" /BUILD %s' % (CMD_SETUP, setupFile) try: print _CMD_SETUP #return 0 output = subprocess.check_output(_CMD_SETUP, stderr=subprocess.STDOUT, shell=True) print "xxxxx" print output return 0 except subprocess.CalledProcessError as e: print e.output print "Build setup file Failed" return 1 return 0
Code:
"C:\Program Files (x86)\Setup Factory 8.0\SUF80Design.exe" /BUILD C:\Work\Packager\CCS4Public.sf8
When I use the interface to build, I got setup.exe ok.
BTW, /CONST:<<ini file path>> seems not working
Did I missing somthing import? Thank you!
Comment