returned non-zero exit status 1152
Published: February 7, 2017 - 5:12 PM
I am preparing a package for a Casio emulator, and I am stuck on error 1152 (= "Cannot start more than one instance of the specified program.").
For manual installation, I use the following command:
setup.exe /L"1036" /S /V" /QN ISX_INSTALLKEY=XXXX"
I don't know if I made a mistake with the quotation marks in the run? Or is that unrelated?
Error :
CalledProcessError: Command '('casio\\fx-Manager_PLUS\\GRAPH_35+\\setup.exe /L\\"1036\\" /S /V\\" /QN ISX_INSTALLKEY=XXXX\\"',)' returned non-zero exit status 1152
For manual installation, I use the following command:
setup.exe /L"1036" /S /V" /QN ISX_INSTALLKEY=XXXX"
I don't know if I made a mistake with the quotation marks in the run? Or is that unrelated?
Code: Select all
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------
from setuphelpers import *
uninstallstring=''
uninstallkey=['{92A68E3F-F40B-472C-9F93-2729EBBF08DA}']
def install():
print('Installation de Casio 35+ Manager+')
run(r'casio\fx-Manager_PLUS\GRAPH_35+\setup.exe /L\"1036\" /S /V\" /QN ISX_INSTALLKEY=XXXX\"')Error :
CalledProcessError: Command '('casio\\fx-Manager_PLUS\\GRAPH_35+\\setup.exe /L\\"1036\\" /S /V\\" /QN ISX_INSTALLKEY=XXXX\\"',)' returned non-zero exit status 1152