Command lines for Licence Key
Hi, I can deploy silently a software with command line, but after when I want to open the software, it askes me the licence key.
Do you now the command lines to put my serial number in this, for than I can deploy completly the software silently?
Thank you!
0 Comments
[ + ] Show comments
Answers (4)
Answer Summary:
Please log in to answer
Posted by:
TheAustinDave
9 years ago
Posted by:
SMal.tmcc
9 years ago
what software specifically? there are many variations for this type of input.
as example:
setup.exe /s /v /qn SERIALNUMBER=1122334455
msiexec /qn /i myinstaller.msi SERIALNUMBER=1122334455
as example:
setup.exe /s /v /qn SERIALNUMBER=1122334455
msiexec /qn /i myinstaller.msi SERIALNUMBER=1122334455
Comments:
-
Thank SMal.tmcc, it's for Minitab 17. - moba-junior 9 years ago
Posted by:
SMal.tmcc
9 years ago
Minitab uses a license manager whether networked or standalone. It just points to itself in a standalone setting and should be unique for every machine. I recommend a license server this is what we use and you just point it to the server with the license server switch
for minitab tab the licensing.msi file inside the setup.exe uses the switch MINITAB_LICENSE_FILE=@yourlicenseserver or if you are using other then default port MINITAB_LICENSE_FILE="27000@yourlicenseserver"
-<Setup>
-<Product Name="Minitab17">
<PackageRef Path="Core\Core.msi"/>
<PackageRef Path="LanguagePacks\en-US\LanguagePack.msi"/>
<PackageRef Path="LicenseAgreement\en-US\LicenseAgreement.msi"/>
<PackageRef Path="License\MU\Licensing.msi"/>
</Product>
-<Product Name="Bootstrapper">
<PackageRef Path="Bootstrapper\Bootstrapper.msi"/>
</Product>
-<Product Name="SoftwareManager">
<PackageRef Path="SoftwareManager\SoftwareManager.msi"/>
</Product>
</Setup
for minitab tab the licensing.msi file inside the setup.exe uses the switch MINITAB_LICENSE_FILE=@yourlicenseserver or if you are using other then default port MINITAB_LICENSE_FILE="27000@yourlicenseserver"
Posted by:
moba-junior
9 years ago