Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Hi CEoCEo. I tried your script many times. It works well, but doesn't delete NMIndexingService.exe and NMIndexStoreSvr.exe files. After I changed Delete Media Indexing Services section to look like this: ; Delete Media Indexing Services If $MIS = 0 Then RegDelete("HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "BgMonitor_{79662E04-7C6C-4d9f-84C7-88D8A56B10AA}") RunWait(@COMSPEC & " /c taskkill /f /im NMBgMonitor.exe", "", @SW_HIDE) RunWait(@COMSPEC & " /c taskkill /f /im NMIndexingService.exe", "", @SW_HIDE) RunWait(@COMSPEC & " /c taskkill /f /im NMIndexStoreSvr.exe", "", @SW_HIDE) Sleep(1000) FileDelete(@CommonFilesDir & "\Nero\Lib\NMBgMonitor.exe") FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexingService.exe") FileDelete(@CommonFilesDir & "\Nero\Lib\NMIndexStoreSvr.exe") EndIf all those files was deleted. Can you update your script with the above code? The only problem is that taskkill command doesn't work in XP Home Edition.
  2. Problems here too with SP3 RTM. Will wait for new nLite/WMP11 slipstreamer versions.
  3. So we don't need that right click on D.T. tray icon. arniworx installer need some modifications to install the files in DAEMON Tools Lite folder (not DAEMON Tools). Very simple task.
  4. Something like this: @echo off start /wait Silverlight.exe /q start /wait REG.EXE ADD "HKCU\Software\Microsoft\Silverlight" /v "Activated" /t REG_DWORD /d "1" /f start /wait REG.EXE ADD "HKCU\Software\Microsoft\Silverlight" /v "PopUpAllowed" /t REG_DWORD /d "0" /f start /wait REG.EXE ADD "HKCU\Software\Microsoft\Silverlight" /v "UpdateMode" /t REG_DWORD /d "0" /f exit Edit.
  5. %USERPROFILE%\Desktop - curent user desktop %ALLUSERSPROFILE%\Desktop - all users desktop
  6. Well, I tell you the secret: Fire up WinRAR, load your sfx, hit Info button in WinRAR and edit the text how you want, then press OK. Entries.ini file, outside SVCPACK directory (I presume that you will create an addon with that sfx.)
  7. It works fine for me with a gold cd Windows XP VL (labeled WXPVOL_EN) and SP3 integrated on it.
  8. It doesn't matter since you have to build a new sfx archive using WinRAR or 7-Zip. Just set the compiled file to be executed after extraction. But keep the name of sfx or if you change it, modify the section [AddProgram] in .ini file.
  9. Let us know what application do you intend to install silently.
  10. AVG free doesn't give false positives when scan compiled autoit scripts.
  11. Hi To check/uncheck boxes, try Send("{SPACE}"). Edit:try Send("{TAB 2}") Send("{SPACE}") Send("{TAB 2}") Send("{SPACE}") on that window (if you don't know how to use Control functions which are more reliable).
  12. msiexec.exe /i Skype36.msi TRANSFORMS=RemoveStartup.mst /qn Visit this topic.
  13. Add the next command in Unattended->RunOnce section of nLite to disable "Display simple folder view": REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "FriendlyTree" /t REG_DWORD /d "0" /f>nul Or paste the code in a batch file and verify first if it works.
  14. If I hide that window, ControlClick doesn't work on it (tested). Edit
  15. /S switch in this case is not 100% silent (window with installation language still popup). That window is not invisible. If appear, the script is ready to click a control (button). You can move a window that allready exist (visible) on the invisible part of the desktop (minus coordinates probably), but I didn't tried this. ControlClick sometimes need active window to do the job. So, to move the windows is completely feckless. Edit: daemontools-4123-lite.exe is the original installer and the other is the compiled file. All stuff is extracted to Temp folder or in another location - it does not matter.
  16. Link Edit the Adlib function on the bottom of the script and change/remove the text "Please select a language." from those two lines.
  17. Well, I don't know other switch except /S which will install directly in %systemdrive%.
  18. About InstallRite 2.5: try to use it in a clean Windows installation (without addons, drivers or other stuff installed). For example just SP2 and Windows Installer 3.1 (KB893803). And choose to "allow relocation" before building the installer (usefull if you will install later to a partition with other letter assigned, but %systemdrive% too).
  19. Download the attached file and edit those two $INSTALLLOCATION variables from the top of the script with your desired path (e.g. $INSTALLLOCATION = "D:\Avi.NET"). Install AutoIt from here. Compile the file (right click->compile), copy compiled file (.exe ) in the same folder with installer and run from compiled file. Cheers avi.NET_2.5.8.0.au3
  20. Maybe you should learn how to made an addon.
  21. I tried one of those installers. It's Installshield without msi. Check this link to learn how to handle it. Basically you need to run Setup.exe from one of those folders (Win2000_XP), goto Temp folder and check for a folder named Disk1. Copy that folder and run setup.exe with switch /r or -r etc. If you want just the drivers you can inject them in Windows source.
×
×
  • Create New...