Content Type
Profiles
Forums
Events
Everything posted by radix
-
overburning unattended cd 790 mb?
radix replied to ZEUS__'s topic in Unattended Windows 2000/XP/2003
It's clear that DOTNETFX contain .NET Framework 1.1 and is present on the installation CD for people who need to install it later (after Windows installation). -
I tried to install zaZA_Setup_en.exe downloaded from filehippo with /s switch and don't work. In installation folder (about 2.7 MB) I founded a log file with some crap error inside. Non-unattended installation works fine.
-
Editing the Blue Setup Screen
radix replied to firefreezer's topic in Unattended Windows 2000/XP/2003
Download this and check Cosmetics section (Setup Billboard Introduction). -
overburning unattended cd 790 mb?
radix replied to ZEUS__'s topic in Unattended Windows 2000/XP/2003
It's safe to delete DOTNETFX (39.1 MB) - old .NET Framework 1.1. -
You don't need AutoIt for this program. rminstall.exe /sp- /verysilent /norestart
-
I don't know how. Use this batch file for that job : @echo off start /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestart start /wait regedit.exe /s settings.reg mkdir "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3" copy "%allusersprofile%\Start Menu\Programs\(Default)\ConvertXToDVD 3.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\ConvertXToDVD 3.lnk" copy "%allusersprofile%\Start Menu\Programs\(Default)\Uninstall ConvertXToDVD.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\Uninstall ConvertXToDVD.lnk" rmdir /s /q "%allusersprofile%\Start Menu\Programs\(Default)" exit or this (without Settings.reg): @echo off start /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestart mkdir "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3" copy "%allusersprofile%\Start Menu\Programs\(Default)\ConvertXToDVD 3.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\ConvertXToDVD 3.lnk" copy "%allusersprofile%\Start Menu\Programs\(Default)\Uninstall ConvertXToDVD.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\Uninstall ConvertXToDVD.lnk" rmdir /s /q "%allusersprofile%\Start Menu\Programs\(Default)" exit
-
Is php code? must i create an archive with .php extension and execute it? when execute it? before install daemons tools? Can i create a registry entry for to avoid the install or execution of SRSAI? Is most easy install daemons complete and after remove the spyware? I hope you understand me. Sorry for my english again. Thanks. Hi The file [NSIS].nsi extracted with Universal Extractor is corrupt. If you are a master in coding Null Soft ya you can repack Daemon Tools. My code is AutoIt.
-
Nothing wrong in my previous code. Problem is with editing the post. On AutoIt forum they have a special codebox for AutoIt script. The codebox from this forum is not 100% proper for this type of code. I understanded this yesterday. Download the attachment file. Install AutoIt and compile the file(r. click->compile). You don't need to install AutoIt on all machines. Just run the compiled exe file. Fiery_uninstaller.au3
-
If AutoIt can be used in this situation, compile this: $sUninstall = 'C:\\PROGRA~1\\COMMON~1\\INSTAL~1\\engine\\6\\INTEL3~1\\ctor.dll,LaunchSetup ' & _ '"C:\\Program Files\\InstallShield Installation Information\\{35C30793-32F4-11D6-A043-00E081105A80}\\setup.exe" remove' ShellExecute('RunDll32.exe', $sUninstall) WinWait("Confirm File Deletion", "") WinActivate("Confirm File Deletion", "") ControlClick("Confirm File Deletion", "", "Button1") and run.
-
I found this topic.
-
I think this guy need a how to.
-
Just Link
-
You're welcome
-
Hi Why don't you read the instructions posted by guys from M$? After I read the instructions posted on Aaron Stebner's blog, I made dotNET silent installers for both Windows XP 32 bit and 64 bit. dotNET2.0 dotNET3.0 Try to open these links with I.E. Sizes: .net2.0SP1&.net3.0SP1&.net3.5 x86 = 39.6 MB .net2.0SP1&.net3.0SP1&.net3.5 x64 = 54.5 MB Both installed without errors. Batch script sample for x86 installer: @echo off start /wait msiexec.exe /i netfx20sp1\Netfx20a_x86.msi /qb! /norestart VSEXTUI=1 start /wait msiexec.exe /i netfx30sp1\WIC_X86_ENU.exe /quiet /nobackup /norestart start /wait msiexec.exe /i netfx30sp1\XPSEPSC-x86-en-US.exe /quiet /nobackup /norestart start /wait msiexec.exe /i netfx30sp1\MSXML\msxml6.msi /qb! /norestart start /wait msiexec.exe /i netfx30sp1\RGB9RAST_x86.msi /qb! /norestart start /wait msiexec.exe /i netfx30sp1\Netfx30a_x86.msi /qb! /norestart VSEXTUI=1 start /wait msiexec.exe /i netfx35\vs_setup.msi /qb! /norestart VSEXTUI=1 exit
-
Hi You need to repack this installer to make it completly silent. Download these tools: innounp Inno Setup - Install Inno Setup. - Unrar innounp and copy it in the same folder with VSO installer. Now unpack installer using a command like this: C:\test020\innounp.exe -x -m -a C:\test020\vsoConvertXtoDVD3_setup.exe Open install_script.iss and make this steps: - Add a name for the output file on OutputBaseFilename (on top of the script), but without extension - Delete the entire line which contains "GetVideoStandard" from [Registry] - Delete those two lines under [Run] section - From [icons] I deleted the third line (quicklaunch icon) - From [Tasks] I removed the last two lines Save it and exit. Compile install_script.iss (r. click->Compile). New installer is in Output folder. Add these entries to a reg file (save it as settings.reg): Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\VSO\ConvertXtoDVD\3.0] "LicenseKey"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-X" [HKEY_CURRENT_USER\Software\VSO\ConvertXtoDVD\3.0\settings] "Gen_BypassPromptForUpdateDialog"="FALSE" "Gen_CheckForUpdate"="FALSE" Run from batch file: @echo off start /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestart start /wait regedit.exe /s settings.reg exit Note: You can add informations from settings.reg into install_script.iss on [Registry] section.
-
And who stop you to remove that switch (maybe need unpack and repack without switch).
-
You can register very easy on future installation of Adobe CS3 products, by making backup of these: %allusersprofile%\FLEXnet (two files inside) %programfiles%\Common Files\Adobe\Adobe PCD\cache\cache.db (single file) after an installation and registration. But will work on the same machine or on a machine with identical hardware. Tested by me with Photoshop CS3.
-
Yes
-
The new addon inside Daemon Tools is SRSAI.exe. I have installed SPTD from T13 with add /q switch and Daemon Tools from RunOnce with this script: Opt("TrayIconDebug", 1) Opt("SendKeyDelay", 200) ; Executable file name $EXECUTABLE = "daemon4121-lite.exe" ; Run Daemon Tools on Windows startup $autostart = 0 ; Detect the Operating System type (32 bit or 64 bit) $OS = _OSBit() If $OS = 32 Then ; Installation folder $INSTALLLOCATION = @ProgramFilesDir & "\DAEMON Tools Lite" If FileExists($INSTALLLOCATION & "\daemon.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of DAEMON Tools before using this script", 4) Exit EndIf ; Disable the default internet browser (to prevent SRSAI.exe to open it) $DefBrowser = RegRead("HKCR\HTTP\shell\open\command\", "") RegDelete("HKCR\HTTP\shell\open\command\", "") ; Read from registry which is the home page of Internet Explorer (to restore it after the installation of DAEMON Tools Lite) $HomePage = RegRead("HKCU\Software\Microsoft\Internet Explorer\Main", "Start Page") ; Run the installer Run($EXECUTABLE & " /S") ; Start checking for a window with "Please select a language." text inside AdlibEnable('_Adlib') ; Kill SRSAI.exe process ProcessWait("SRSAI.exe") $PID = ProcessExists("SRSAI.exe") If $PID Then ProcessClose($PID) EndIf ; Stop checking for a window with "Please select a language." text inside AdlibDisable() Sleep(2000) ; Delete SRSAI.exe file FileDelete($INSTALLLOCATION & "\SRSAI.exe") ; Restore the default internet browser RegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $DefBrowser) ; Restore the home page of Internet Explorer RegWrite("HKCU\Software\Microsoft\Internet Explorer\Main", "", "REG_SZ", $HomePage) ; Block daemon.exe to run on Windows startup If $autostart = 0 Then RegDelete("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "DAEMON Tools Lite") EndIf ; Add uninstall entries RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "DisplayName", "REG_SZ", "DAEMON Tools Lite 4.12.1") RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "UninstallString", "REG_SZ", $INSTALLLOCATION & "\uninst.exe") RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "InstallLocation", "REG_SZ", $INSTALLLOCATION) RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "DisplayIcon", "REG_SZ", $INSTALLLOCATION & "\daemon.exe") EndIf If $OS = 64 Then ; Installation folder $INSTALLLOCATION = @HomeDrive & "\Program Files (x86)\DAEMON Tools Lite" If FileExists($INSTALLLOCATION & "\daemon.exe") Then MsgBox(0x40010, @ScriptName, "Please uninstall previous version of DAEMON Tools before using this script", 4) Exit EndIf ; Disable the default internet browser (to prevent SRSAI.exe to open it) $DefBrowser = RegRead("HKCR\HTTP\shell\open\command\", "") RegDelete("HKCR\HTTP\shell\open\command\", "") ; Read from registry which is the home page of Internet Explorer (to restore it after the installation of DAEMON Tools Lite) $HomePage = RegRead("HKCU\Software\Microsoft\Internet Explorer\Main", "Start Page") ; Run the installer Run($EXECUTABLE & " /S") ; Start checking for a window with "Please select a language." text inside AdlibEnable('_Adlib') ; Kill SRSAI.exe process ProcessWait("SRSAI.exe") $PID = ProcessExists("SRSAI.exe") If $PID Then ProcessClose($PID) EndIf ; Stop checking for a window with "Please select a language." text inside AdlibDisable() Sleep(2000) ; Delete SRSAI.exe file FileDelete($INSTALLLOCATION & "\SRSAI.exe") ; Restore the default internet browser RegWrite("HKCR\HTTP\shell\open\command\", "", "REG_SZ", $DefBrowser) ; Restore the home page of Internet Explorer RegWrite("HKCU\Software\Microsoft\Internet Explorer\Main", "", "REG_SZ", $HomePage) ; Block daemon.exe to run on Windows startup If $autostart = 0 Then RegDelete("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "DAEMON Tools Lite") EndIf ; Add uninstall entries RegWrite("HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "DisplayName", "REG_SZ", "DAEMON Tools Lite 4.12.1") RegWrite("HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "UninstallString", "REG_SZ", $INSTALLLOCATION & "\uninst.exe") RegWrite("HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "InstallLocation", "REG_SZ", $INSTALLLOCATION) RegWrite("HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\DAEMON Tools Lite", "DisplayIcon", "REG_SZ", $INSTALLLOCATION & "\daemon.exe") EndIf Func _Adlib() ; Please select a language. If WinExists("DAEMON Tools Lite 4.12.1", "Please select a language.") Then WinActivate("DAEMON Tools Lite 4.12.1", "Please select a language.") ControlClick("DAEMON Tools Lite 4.12.1", "", "Button1") EndIf EndFunc Func _OSBit() Local $tOS = DllStructCreate("char[256]") Local $aGSWD = DllCall("Kernel32.dll", "int", "GetSystemWow64Directory", "ptr", DllStructGetPtr($tOS), "int", 256) If IsArray($aGSWD) And DllStructGetData($tOS, 1) Then Return 64 Return 32 EndFunc Maybe is useful. Edit again.
-
Yes
-
Check this
-
Bilou_Gateux I sent PM to you.
-
With what? Make it silent installer and choose to extract to %windir%\Cursors\