Hallo, I want to distribute the software. A serial number is to be transferred. The software should be installed in the background. Updates will be disabled.
Has an idea as I realized with AutoIT?
Has an idea as I realized with AutoIT?
_splash("PhotoShopCS5.1","install") DirCreate("c:\LDTemp\") $error = 0 _splash_next("wait") $error = RunWait("SWP_Adobe_PhotoShopCS5.1.exe /s /D""c:\LDTemp\""", "c:\LDTemp", @SW_HIDE) _splash_next("Installieren") $error = RunWait("c:\LDTemp\Setup.exe /UL1031 /V""SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx""", "c:\LDTemp", @SW_HIDE) _splash_next("fertig: " & $error) sleep(2000) DirRemove("c:\LDTemp",1) Exit $errorThanks