First off I wanted to say your APP is AWESOME!!! Thank you so much for taking the time to make something like this! Now I am not sure if this question has already been asked but... Is it possible to create a SILENT Install with Auto Start up for the All-In-One Integrator?
You can just make an installer for the UnCleaner.exe with innosetup or NSIS. but you would need to also install .NET Framework v4.0.
then just add "C:\Program Files\UnCleaner\UnCleaner.exe" /jcautoclean to run in registry correct? I already have .NET Framework v4.0 installing with my iso so this will be perfect!
Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\Windows\CurrentVersion\Run] "UnCleaner"="\"C:\\Program Files\\UnCleaner\\UnCleaner.exe\" /jcautoclean" I use RegFromApp by Nirsoft to grab entries
Quick question... you may know what to do.. I am using inno setup Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "Uncleaner"; ValueData: ""C:\Program Files\UnCleaner\UnCleaner.exe" /jcautoclean" Notice the ValueData: ""C:\Program Files\UnCleaner\UnCleaner.exe" /jcautoclean" I need the " " part... but I can't compile it with those whats another way to add them? Edit: Got it: Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "Uncleaner"; ValueData: """{app}\UnCleaner\UnCleaner.exe"" ""/jcautoclean"""
Root: HKLM; SubKey: SOFTWARE\MICROSOFT\Windows\CurrentVersion\Run; ValueType: string; ValueName: UnCleaner; ValueData: "\""C:\Program Files\UnCleaner\UnCleaner.exe\"" /jcautoclean" I use IsTool you can just import the registry file P.S. we are going off subject here perhaps you should wait to see if Josh Cell can incorporate into his installer.
Ya that would be nice! lol because I just noticed it also installs x64 bit on my machine and i wanted to add this to x86 machines also so it would be better if he does it or else id need both versions of the exe.
I can add the silent install support on v1.7 version.. The EXE is Multi-Architecture.. It will work in x86 / x64 without any problem.
Please create silent install id also like to be able to have it auto run at startup maybe /s /a /s = silent /a = auto start up What ever you want dude! your the man!
Finally I'm looking to this application now.. I'll release an single portable EXE of 1.7 BETA 1 here soon Thanks for the patience.