chrisbraines Posted April 5, 2011 Posted April 5, 2011 I hope this has not been asked be for so please except my apologizes if it has.I am trying to install YourUninstaller Pro 2010 silently with this switch /VERYSILENT /SP- /NORESTARTThe Program for most parts installs completely silently but right at the end the Programs main menu appears.I think I am wright in saying that to prevent this from happening the Inno setup script has to be editedUsing the Inno Setup Compiler.I successfully extracted the script which is here but I am not sure what to edit in this script.It think it maybe this found under Run part of this script but again I am not sure on this,so I would be most grateful if someone could put me wright on this.It mite even be possible to register the program as well if anyone has any further ideas on this it would be greatBY REMOVING THESE LINES IT SHOULD BE POSSIBLE TO INSTALL THE PROGRAM USING THIS SWITCH BUT NOT SURE ON THIS ***************************************************************************************************************************************************************** /VERYSILENT /SP- /NORESTART[Run]Filename: "{app}\urmain.exe"; Parameters: "-buildcache"; StatusMsg: "Searching installed applications, this may take a few minutes..."; ----------- Remove ?Filename: "{app}\inimerge.exe"; Parameters: """{app}\uruninstaller.ini"" ""{userappdata}\URSoft\Your Uninstaller\uruninstaller.ini"""; ---------------- Remove ?Filename: "{app}\autoupdater.exe"; Parameters: "/halfsilent 0"; Description: "Check for updates."; ------------------------------------------------------------- Remove ?Filename: "{app}\urmain.exe"; Description: "Run Your Uninstaller!"; ----------------------------------------------------------------------------------------------------- Remove ?Here is the main part of the script;InnoSetupVersion=5.4.2 (a)[Setup]AppName=Your Uninstaller! 2010AppVerName=Your Uninstaller! 2010AppVersion=7.0DefaultDirName={pf}\Your Uninstaller 2010DefaultGroupName=Your Uninstaller 2010OutputBaseFilename=yusetup2010Compression=lzmaPrivilegesRequired=poweruserLicenseFile=embedded\License.rtfWizardImageFile=embedded\WizardImage.bmpWizardSmallImageFile=embedded\WizardSmallImage.bmp[Files]Source: "{tmp}\pskill.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall ignoreversion Source: "{app}\inimerge.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\urmain.exe"; DestDir: "{app}"; BeforeInstall: "CloseProgram"; Flags: ignoreversion Source: "{app}\uninstaller.chm"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\Languages\Arabic.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Belarusian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Bulgarian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Czech.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Danish.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Dutch.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\English.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\French.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\German.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Hungarian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Italian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\korean.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Norwegian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Polish.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Portugues.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Russian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Serbian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Simplified Chinese.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Slovak.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Spanish.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\T-Chinese.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Turkish.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Ukrainian.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\Languages\Vietnamese.lng"; DestDir: "{app}\Languages"; Flags: ignoreversion Source: "{app}\templates\proginfo_ar.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_bg.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_cn.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_da.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_en.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_fr.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_hu.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_it.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_ko.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_pl.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_pt.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_ru.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_sp.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_tr.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_tw.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_uk.tpl"; DestDir: "{app}\templates"; Source: "{app}\templates\proginfo_vn.tpl"; DestDir: "{app}\templates"; Source: "{app}\diskclean.ico"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\crosshair.ani"; DestDir: "{app}"; Flags: ignoreversion Source: "{tmp}\pintaskbar.vbs"; DestDir: "{tmp}"; Flags: deleteafterinstall ignoreversion Source: "{app}\autoupdater.exe"; DestDir: "{app}"; BeforeInstall: "KillAutoUpdater"; Flags: restartreplace ignoreversion Source: "{app}\autoupdater.exe.manifest"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\skipfilenames.dat"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\fos.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\fos.exe.manifest"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\license.rtf"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\update.ini"; DestDir: "{app}"; Source: "{app}\uruninstaller.ini"; DestDir: "{app}"; Flags: ignoreversion Source: "{app}\vcl70.bpl"; DestDir: "{app}"; Source: "{app}\rtl70.bpl"; DestDir: "{app}"; Source: "{app}\vclx70.bpl"; DestDir: "{app}"; Source: "{app}\wintools,1.ini"; DestDir: "{app}"; DestName: "wintools.ini"; MinVersion: 6.0,6.0; Flags: ignoreversion Source: "{app}\wintools,2.ini"; DestDir: "{app}"; DestName: "wintools.ini"; OnlyBelowVersion: 6.0,6.0; Flags: ignoreversion [Registry]Root: HKCU; Subkey: "Software\URSoft\Your Uninstaller!"; ValueName: "InstallPath"; ValueType: String; ValueData: "{app}"; Flags: uninsdeletekey Root: HKCU; Subkey: "Software\URSoft\Your Uninstaller!"; ValueName: "Path"; ValueType: String; ValueData: "{app}\urmain.exe"; Flags: uninsdeletekey Root: HKCR; Subkey: ".exe\shell\YU3"; ValueType: String; ValueData: "Uninstall with Your Uninstaller!"; Flags: uninsdeletekey Root: HKCR; Subkey: ".exe\shell\YU3\command"; ValueType: String; ValueData: "{app}\urmain.exe %1"; Flags: uninsdeletekey Root: HKCR; Subkey: "exefile\shell\YU3"; ValueType: String; ValueData: "Uninstall with Your Uninstaller!"; Flags: uninsdeletekey Root: HKCR; Subkey: "exefile\shell\YU3\command"; ValueType: String; ValueData: "{app}\urmain.exe %1"; Flags: uninsdeletekey **********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************BY REMOVING THESE LINES IT SHOULD BE POSSIBLE TO INSTALL THE PROGRAM USING THIS SWITCH BUT NOT SURE ON THIS/VERYSILENT /SP- /NORESTART[Run]Filename: "{app}\urmain.exe"; Parameters: "-buildcache"; StatusMsg: "Searching installed applications, this may take a few minutes..."; ----Remove ?Filename: "{app}\inimerge.exe"; Parameters: """{app}\uruninstaller.ini"" ""{userappdata}\URSoft\Your Uninstaller\uruninstaller.ini"""; ------------ Remove ?Filename: "{app}\autoupdater.exe"; Parameters: "/halfsilent 0"; Description: "Check for updates."; ----------------------------------------------------------- Remove ?Filename: "{app}\urmain.exe"; Description: "Run Your Uninstaller!"; ------------------------------------------------------------------------------------------------------- Remove ?**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************[UninstallRun]Filename: "{app}\fos.exe"; Parameters: """Your Uninstaller!"" ""{app}\urmain.exe"""; RunOnceId: "FeedBack"; [Icons]Name: "{group}\Your Uninstaller!"; Filename: "{app}\urmain.exe"; WorkingDir: "{app}"; Comment: "Your Uninstaller! - Quickly and easily remove unwanted applications."; Name: "{group}\Your Uninstaller! - Hunter Mode"; Filename: "{app}\urmain.exe"; Parameters: "-hunter"; WorkingDir: "{app}"; Comment: "Hunter Mode - The quickest way to uninstall."; Name: "{group}\Help document"; Filename: "{app}\uninstaller.chm"; WorkingDir: "{app}"; Comment: "Help document of Your Uninstaller!."; Name: "{group}\Uninstall"; Filename: "{uninstallexe}"; WorkingDir: "{app}"; Comment: "Remove Your Uninstaller! from your computer."; Name: "{group}\Visit our site"; Filename: "http://www.ursoftware.com/?ref=setup"; WorkingDir: "{app}"; Comment: "Visit our site on the web"; Name: "{userdesktop}\Your Uninstaller!"; Filename: "{app}\urmain.exe"; WorkingDir: "{app}"; OnlyBelowVersion: 5.0,6.0; Name: "{userdesktop}\Your Unin-staller!"; Filename: "{app}\urmain.exe"; WorkingDir: "{app}"; MinVersion: 5.0,6.01; Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Your Uninstaller!"; Filename: "{app}\urmain.exe"; WorkingDir: "{app}"; Comment: "Your Uninstaller! - Quickly and easily remove unwanted applications."; Tasks: "quicklaunchicon"; [Tasks]Name: "quicklaunchicon"; Description: "Create a &Quick Launch icon"; GroupDescription: "Additional icons"; OnlyBelowVersion: 6.0,6.0; [CustomMessages]en.NameAndVersion=%1 version %2en.AdditionalIcons=Additional icons:en.CreateDesktopIcon=Create a &desktop iconen.CreateQuickLaunchIcon=Create a &Quick Launch iconen.ProgramOnTheWeb=%1 on the Weben.UninstallProgram=Uninstall %1en.LaunchProgram=Launch %1en.AssocFileExtension=&Associate %1 with the %2 file extensionen.AssocingFileExtension=Associating %1 with the %2 file extension...nl.NameAndVersion=%1 versie %2nl.AdditionalIcons=Extra snelkoppelingen:nl.CreateDesktopIcon=Maak een snelkoppeling op het &bureaubladnl.CreateQuickLaunchIcon=Maak een snelkoppeling op de &Snel starten werkbalknl.ProgramOnTheWeb=%1 op het Webnl.UninstallProgram=Verwijder %1nl.LaunchProgram=&Start %1nl.AssocFileExtension=&Koppel %1 aan de %2 bestandsextensienl.AssocingFileExtension=Bezig met koppelen van %1 aan de %2 bestandsextensie...fr.NameAndVersion=%1 version %2fr.AdditionalIcons=Icônes supplémentaires :fr.CreateDesktopIcon=Créer une icône sur le &Bureaufr.CreateQuickLaunchIcon=Créer une icône dans la barre de &Lancement rapidefr.ProgramOnTheWeb=Page d'accueil de %1fr.UninstallProgram=Désinstaller %1fr.LaunchProgram=Exécuter %1fr.AssocFileExtension=&Associer %1 avec l'extension de fichier %2fr.AssocingFileExtension=Associe %1 avec l'extension de fichier %2...dn.NameAndVersion=%1 version %2dn.AdditionalIcons=Ekstra ikoner:dn.CreateDesktopIcon=Lav ikon på skrive&bordetdn.CreateQuickLaunchIcon=Lav &hurtigstart-ikondn.ProgramOnTheWeb=%1 på internettetdn.UninstallProgram=Afinstaller (fjern) %1dn.LaunchProgram=&Kør %1dn.AssocFileExtension=Sammen&kæd %1 med filtypen %2dn.AssocingFileExtension=Sammenkæder %1 med filtypen %2...br.NameAndVersion=%1 versão %2br.AdditionalIcons=Ícones adicionais:br.CreateDesktopIcon=Criar um ícone na Área de &Trabalhobr.CreateQuickLaunchIcon=Criar um ícone na &Barra de Inicialização Rápidabr.ProgramOnTheWeb=%1 na Internetbr.UninstallProgram=Desinstalar %1br.LaunchProgram=Executar %1br.AssocFileExtension=Associar %1 com a e&xtensão de arquivo %2br.AssocingFileExtension=Associando %1 com a extensão de arquivo...fi.NameAndVersion=%1 versio %2fi.AdditionalIcons=Lisäkuvakkeet:fi.CreateDesktopIcon=Lu&o kuvake työpöydällefi.CreateQuickLaunchIcon=Luo kuvake &pikakäynnistyspalkkiinfi.ProgramOnTheWeb=%1 Internetissäfi.UninstallProgram=Poista %1fi.LaunchProgram=&Käynnistä %1fi.AssocFileExtension=&Yhdistä %1 tiedostopäätteeseen %2fi.AssocingFileExtension=Yhdistetään %1 tiedostopäätteeseen %2 ...pt.NameAndVersion=%1 versão %2pt.AdditionalIcons=Ícones adicionais:pt.CreateDesktopIcon=Criar ícone no Ambiente de &Trabalhopt.CreateQuickLaunchIcon=&Criar ícone na barra de Iniciação Rápidapt.ProgramOnTheWeb=%1 na Webpt.UninstallProgram=Desinstalar o %1pt.LaunchProgram=Executar o %1pt.AssocFileExtension=Associa&r o %1 aos ficheiros com a extensão %2pt.AssocingFileExtension=A associar o %1 aos ficheiros com a extensão %2...hg.NameAndVersion=%1 %2 verzióhg.AdditionalIcons=További ikonok:hg.CreateDesktopIcon=Ikon létrehozása az &Asztalonhg.CreateQuickLaunchIcon=Ikon létrehozása a &Gyorsindítás eszköztáronhg.ProgramOnTheWeb=%1 a webenhg.UninstallProgram=%1 eltávolításahg.LaunchProgram=%1 elindításahg.AssocFileExtension=A(z) %1 &társítása a(z) %2 fájlkiterjesztésselhg.AssocingFileExtension=A(z) %1 társítása a(z) %2 fájlkiterjesztéssel...hb.NameAndVersion=%1 âéøñä %2hb.AdditionalIcons=ñéîìåðéí ðåñôéí:hb.CreateDesktopIcon=öåø ÷éöåø ãøê òì &ùåìçï äòáåãähb.CreateQuickLaunchIcon=öåø ñéîìåï áùåøú ääøöä äîäéøähb.ProgramOnTheWeb=%1 áøùúhb.UninstallProgram=äñø àú %1hb.LaunchProgram=äôòì %1hb.AssocFileExtension=&÷ùø àú %1 òí ñéåîú ä÷åáõ %2hb.AssocingFileExtension=î÷ùø àú %1 òí ñéåîú ä÷åáõ %2ca.NameAndVersion=%1 versió %2ca.AdditionalIcons=Icones addicionals:ca.CreateDesktopIcon=Crea una icona a l'&Escriptorica.CreateQuickLaunchIcon=Crea una icona a la &Barra de tasquesca.ProgramOnTheWeb=%1 a Internetca.UninstallProgram=Desinstal·la %1ca.LaunchProgram=Obre %1ca.AssocFileExtension=&Associa %1 amb l'extensió de fitxer %2ca.AssocingFileExtension=Associant %1 amb l'extensió de fitxer %2...nw.NameAndVersion=%1 versjon %2nw.AdditionalIcons=Ekstra-ikoner:nw.CreateDesktopIcon=Lag ikon på &skrivebordetnw.CreateQuickLaunchIcon=Lag et &Hurtigstarts-ikonnw.ProgramOnTheWeb=%1 på nettetnw.UninstallProgram=Avinstaller %1nw.LaunchProgram=Kjør %1nw.AssocFileExtension=&Koble %1 med filetternavnet %2nw.AssocingFileExtension=Kobler %1 med filetternavnet %2...sp.NameAndVersion=%1 versión %2sp.AdditionalIcons=Iconos adicionales:sp.CreateDesktopIcon=Crear un icono en el &escritoriosp.CreateQuickLaunchIcon=Crear un icono de &Inicio Rápidosp.ProgramOnTheWeb=%1 en la Websp.UninstallProgram=Desinstalar %1sp.LaunchProgram=Ejecutar %1sp.AssocFileExtension=&Asociar %1 con la extensión de archivo %2sp.AssocingFileExtension=Asociando %1 con la extensión de archivo %2...po.NameAndVersion=%1 wersja %2po.AdditionalIcons=Dodatkowe ikony:po.CreateDesktopIcon=Utwórz ikonê na &pulpiciepo.CreateQuickLaunchIcon=Utwórz ikonê na pasku &szybkiego uruchamianiapo.ProgramOnTheWeb=Strona WWW programu %1po.UninstallProgram=Deinstalacja programu %1po.LaunchProgram=Uruchom program %1po.AssocFileExtension=&Przypisz program %1 do rozszerzenia pliku %2po.AssocingFileExtension=Przypisywanie programu %1 do rozszerzenia pliku %2...ba.NameAndVersion=%1 %2 bertsioaba.AdditionalIcons=Ikono gehigarriak:ba.CreateDesktopIcon=&Mahaigainean lasterbidea sortuba.CreateQuickLaunchIcon=&Ataza Barran lasterbidea sortuba.ProgramOnTheWeb=%1 sareanba.UninstallProgram=%1 desinstalatuba.LaunchProgram=%1 abiaraziba.AssocFileExtension=&Lotu %1 programa %2 fitxategi luzapenarekinba.AssocingFileExtension=%1 programa %2 fitxategi luzapenarekin lotzen...cz.NameAndVersion=%1 verze %2cz.AdditionalIcons=Další zástupci:cz.CreateDesktopIcon=Vytvoøit zástupce na &plošecz.CreateQuickLaunchIcon=Vytvoøit zástupce na panelu &Snadné spuštìnícz.ProgramOnTheWeb=Aplikace %1 na internetucz.UninstallProgram=Odinstalovat aplikaci %1cz.LaunchProgram=Spustit aplikaci %1cz.AssocFileExtension=Vytvoøit &asociaci mezi soubory typu %2 a aplikací %1cz.AssocingFileExtension=Vytváøí se asociace mezi soubory typu %2 a aplikací %1...ge.NameAndVersion=%1 Version %2ge.AdditionalIcons=Zusätzliche Symbole:ge.CreateDesktopIcon=&Desktop-Symbol erstellenge.CreateQuickLaunchIcon=Symbol in der Schnellstartleiste erstellenge.ProgramOnTheWeb=%1 im Internetge.UninstallProgram=%1 entfernenge.LaunchProgram=%1 startenge.AssocFileExtension=&Registriere %1 mit der %2-Dateierweiterungge.AssocingFileExtension=%1 wird mit der %2-Dateierweiterung registriert...it.NameAndVersion=%1 versione %2it.AdditionalIcons=Icone aggiuntive:it.CreateDesktopIcon=Crea un'icona sul &desktopit.CreateQuickLaunchIcon=Crea un'icona nella barra &Avvio veloceit.ProgramOnTheWeb=%1 sul Webit.UninstallProgram=Disinstalla %1it.LaunchProgram=Avvia %1it.AssocFileExtension=&Associa l'estensione %2 a %1it.AssocingFileExtension=Associazione dell'estensione %2 a %1 in corso...ru.NameAndVersion=%1, âåðñèÿ %2ru.AdditionalIcons=Äîïîëíèòåëüíûå çíà÷êè:ru.CreateDesktopIcon=Ñîçäàòü çíà÷îê íà &Ðàáî÷åì ñòîëåru.CreateQuickLaunchIcon=Ñîçäàòü çíà÷îê â &Ïàíåëè áûñòðîãî çàïóñêàru.ProgramOnTheWeb=Ñàéò %1 â Èíòåðíåòåru.UninstallProgram=Äåèíñòàëëèðîâàòü %1ru.LaunchProgram=Çàïóñòèòü %1ru.AssocFileExtension=Ñâ&ÿçàòü %1 ñ ôàéëàìè, èìåþùèìè ðàñøèðåíèå %2ru.AssocingFileExtension=Ñâÿçûâàíèå %1 ñ ôàéëàìè %2...sl.NameAndVersion=%1 razlièica %2sl.AdditionalIcons=Dodatne ikone:sl.CreateDesktopIcon=Ustvari ikono na &namizjusl.CreateQuickLaunchIcon=Ustvari ikono za &hitri zagonsl.ProgramOnTheWeb=%1 na spletusl.UninstallProgram=Odstrani %1sl.LaunchProgram=Odpri %1sl.AssocFileExtension=&Poveži %1 s pripono %2sl.AssocingFileExtension=Povezujem %1 s pripono %2...cn.NameAndVersion=%1 °æ±¾ %2cn.AdditionalIcons=¸½¼Óͼ±ê£ºcn.CreateDesktopIcon=´´½¨×ÀÃæÍ¼±ê(&D)cn.CreateQuickLaunchIcon=´´½¨¿ìËÙÆô¶¯À¸Í¼±ê(&Q)cn.ProgramOnTheWeb=%1 ÍøÕ¾cn.UninstallProgram=Ð¶ÔØ %1cn.LaunchProgram=ÔËÐÐ %1cn.AssocFileExtension=½« %1 Óë %2 ÎļþÀ©Õ¹Ãû¹ØÁª(&A)cn.AssocingFileExtension=ÕýÔÚ½« %1 Óë %2 ÎļþÀ©Õ¹Ãû¹ØÁª...tw.NameAndVersion=%1 ª©¥» %2tw.AdditionalIcons=ªþ¥[¹Ï¥Ü:tw.CreateDesktopIcon=«Ø¥ß®à±¹Ï¥Ü(&D)tw.CreateQuickLaunchIcon=«Ø¥ß§Ö³t±Ò°Ê¹Ï¥Ü(&Q)tw.ProgramOnTheWeb=%1 ªººô¯¸tw.UninstallProgram=¸Ñ°£¦w¸Ë %1tw.LaunchProgram=±Ò°Ê %1tw.AssocFileExtension=±N %1 »PÀÉ®×°ÆÀɦW %2 ²£¥ÍÃöÁp(&A)tw.AssocingFileExtension=¥¿¦b±N %1 »PÀÉ®×°ÆÀɦW %2 ²£¥ÍÃöÁp...ar.NameAndVersion=%1 ÇáäÓÎÉ %2ar.AdditionalIcons=ÑãæÒ ÅÖÇÝíÉ :ar.CreateDesktopIcon=ÅäÔÇÁ ÃíÞæäÉ Úáì ÓØÍ ÇáãßÊÈ :ar.CreateQuickLaunchIcon=ÅäÔÇÁ ÃíÞæäÉ ÅØáÇÞ ÓÑíÚ ÈÌæÇÑ ÇÈÏÃar.ProgramOnTheWeb=%1 Úáì ÇáÅäÊÑäÊar.UninstallProgram=%1 ÅáÛÇÁ ÊËÈíÊar.LaunchProgram=%1 ÊÔÛíáar.AssocFileExtension=ÅÔÑÇß %1 ãÚ ÅãÊÏÇÏ ãáÝ %2ar.AssocingFileExtension=íÊã ÅÔÑÇß %1 ãÚ ÅãÊÏÇÏ ãáÝ %2 ...[Languages]; These files are stubs; To achieve better results after recompilation, use the real language filesName: "en"; MessagesFile: "embedded\en.isl"; Name: "nl"; MessagesFile: "embedded\nl.isl"; Name: "fr"; MessagesFile: "embedded\fr.isl"; Name: "dn"; MessagesFile: "embedded\dn.isl"; Name: "br"; MessagesFile: "embedded\br.isl"; Name: "fi"; MessagesFile: "embedded\fi.isl"; Name: "pt"; MessagesFile: "embedded\pt.isl"; Name: "hg"; MessagesFile: "embedded\hg.isl"; Name: "hb"; MessagesFile: "embedded\hb.isl"; Name: "ca"; MessagesFile: "embedded\ca.isl"; Name: "nw"; MessagesFile: "embedded\nw.isl"; Name: "sp"; MessagesFile: "embedded\sp.isl"; Name: "po"; MessagesFile: "embedded\po.isl"; Name: "ba"; MessagesFile: "embedded\ba.isl"; Name: "cz"; MessagesFile: "embedded\cz.isl"; Name: "ge"; MessagesFile: "embedded\ge.isl"; Name: "it"; MessagesFile: "embedded\it.isl"; Name: "ru"; MessagesFile: "embedded\ru.isl"; Name: "sl"; MessagesFile: "embedded\sl.isl"; Name: "cn"; MessagesFile: "embedded\cn.isl"; Name: "tw"; MessagesFile: "embedded\tw.isl"; Name: "ar"; MessagesFile: "embedded\ar.isl";
chrisbraines Posted April 8, 2011 Author Posted April 8, 2011 (edited) I may have approached this from the wrong angel after my original post I came up withe the idea to make a winrar SFX file which while is not as good as editing this Script dose provide a easy way to install thisprogram silently.If anyone has been following this thread here is what I have come up with.You will need the following itemsWinRar itselfYourUnistaller2010 setup file which you can download from this Softpedia link http://www.softpedia.com/progDownload/Your-Uninstaller-Download-29334.html PsKill.exe which again you can download from Softpedia at this link http://www.softpedia.com/get/System/System-Miscellaneous/PsKill.shtmlRunHiddenConsole.exe which can be downloaded from these forums at this link http://www.msfn.org/board/topic/49184-tool-hide-console-command-line-windows/You will find it at the bottom of the page.Once all the components have been downloaded you are ready to start.1) First make a command file and name it YourUninstaller2010_Install.cmd Then paste this code into it.@echo offECHO This Batch file will install YourUninstaller 2010 Pro 32k ECHO After the Instalation has finished pskill.exe will be run to preventECHO the program's main Window from opening.ECHO yusetup7.exe /VERYSILENT /SP- /NORESTARTpskill.exe -t urmain.exeExit2) Then make a empty folder on your Desktop and name it YourUninstaller20103) Place all four files into this empty folder pskill.exe RunHiddenConsole.exe YourUninstaller2010_Install.cmd yusetup7.exe4) Using the Windows Explorer open up this folder and select Edit from the menu and then again Select All5) Then right clic and select from the Contex menu Add to arcive6) WinRar will know display the name of the arcive diplayed at the top it should read as follows YourUninstaller2010.rar7) now simply edit the name by removing the .rar file extension and chaning it to .exe YourUninstaller2010.exe8) Leave all other settings unchanged and press OK9) the new arcive will know appear in the same folder with the name of YourUninstaller2010.exe10) Open the new file with WinRar and select Comment from the menu and paste this code into the small window ;The comment below contains SFX script commandsSetup=RunHiddenConsole.exe /w YourUninstaller2010_Install.cmdTempModeSilent=1Overwrite=1Title=YourUninstaller2010 Pro 32kRunHiddenConsole.exe which will hide the command window during the programs instalation11)If like me you are using Windows 7 it may be neccessary to disable the UAC this can be done from the Contol Panel12)and finaly run the new program by selecting Run as Addministrator13)I am sure this is not the best way to install this program but it dose offer a simply method which less advanced members like me can do and please if anyone has any improvments on this any comments would be appreciated Edited April 10, 2011 by Tripredacus removed quote of previous post
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now