Jump to content

radix

Member
  • Posts

    755
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by radix

  1. Nice Actually I use that extension (with New Tab button).
  2. After registration, goto this registry key: HKEY_CURRENT_USER\Software\PowerISO and copy the value "User" from there. The registry file should look like this: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\PowerISO] "USER"=hex:00,13,44,61,6e,69,5e,06,bf,43,46,10,14,40,ee,3c,56,26,de,76,78
  3. http://www.msfn.org/board/Revert-Tweak-t10...ml&p=692908
  4. Can you add nrg2iso too? http://www.immensetech.com/nrg2iso/home.php Thanks.
  5. Don't extract the setup. Execute it and wait to appear the first screen (with Next and Cancel buttons). Then goto X:\Documents and Settings\Your Name\Local Settings\Temp and copy the .msi file.
  6. It's an Installshield with msi. Run the setup, goto Temp folder and copy the .msi file from there. Swihches are known.
  7. I use the next code to install custom and disable the Wizard: @echo off start /wait spybotsd152.exe /sp- /tasks="desktopicon,quicklaunchicon" /components="language,skins" /verysilent /norestart copy Configuration.ini "%ALLUSERSPROFILE%\Application Data\Spybot - Search & Destroy\Configuration.ini" /y REG ADD "HKCU\Software\Safer Networking Limited\SpybotSnD" /v "WizardRun" /t REG_DWORD /d 1 /f exit Note: Use Configuration.ini file created previously.
  8. It's InnoSetup. The switch is: /sp- /verysilent /norestart
  9. Try this: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "ClassicViewState"=dword:00000001 "SuperHidden"=dword:00000001 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagMRU] [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags] [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell] "BagMRU Size"=dword:00001f40 [HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam] "BagMRU Size"=dword:00001f40 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "NoSaveSettings"=dword:00000000 Or add these commands in nLite: REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ClassicViewState" /t REG_DWORD /d "1" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SuperHidden" /t REG_DWORD /d "1" /f REG.EXE DELETE "HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU" /f REG.EXE DELETE "HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\Shell" /v "BagMRU Size" /t REG_DWORD /d "00001f40" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\ShellNoRoam" /v "BagMRU Size" /t REG_DWORD /d "00001f40" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoSaveSettings" /t REG_DWORD /d "0" /f Remember to test first from Windows. Across the board.
  10. Yep This code disable Recycle Bin "display delete confirmation dialog" and turn Start Menu to Classic: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] "ShellState"=hex:24,00,00,00,37,28,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 01,00,00,00,0d,00,00,00,00,00,00,00,01,00,00,00 And this one disable Recycle Bin "display delete confirmation dialog" and turn Start Menu to Standard: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] "ShellState"=hex:24,00,00,00,37,28,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 01,00,00,00,0d,00,00,00,00,00,00,00,02,00,00,00 I don't know why is involved the Start Menu in Recycle Bin "display delete confirmation dialog".
  11. Download and install Hash Tab 2.0.9. Then right click on WMP11 installer->Properties->File Hashes
  12. -s switch works for 32 bit version too.
  13. Something like this: REG.EXE ADD "HKCU\Control Panel\Desktop" /v "BackgroundColor" /t REG_BINARY /d "ffffff00" /f REG.EXE ADD "HKCU\Control Panel\Desktop" /v "Text" /t REG_DWORD /d "00000400" /f
  14. Hey krige, I modified the post above because the code turn the Start Menu to classic.
  15. Add the next command to unattended->runonce section of nLite: REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "ShellState" /t REG_BINARY /d "2400000037280000000000000000000000000000010000000d0000000000000002000000" /f or use the next code in a .reg file from Windows itself (after importing, perform a refresh from right click context menu to take effect): Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] "ShellState"=hex:24,00,00,00,37,28,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\ 01,00,00,00,0d,00,00,00,00,00,00,00,02,00,00,00
  16. Doesn't matter. You can use .reg file from Windows itself to apply the tweaks.
  17. Some months ago I used a script to install Spybot without TeaTimer and SDhelper. Then I made a new installer using InnoSetup from which I removed all language files others than english, TeaTimer and SDHelper files and their registry.
  18. Add the next commands in unattended section of nLite: REG.EXE DELETE "HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU" /f REG.EXE DELETE "HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\Shell" /v "BagMRU Size" /t REG_DWORD /d "00001f40" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\ShellNoRoam" /v "BagMRU Size" /t REG_DWORD /d "00001f40" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "NoSaveSettings" /t REG_DWORD /d "00000000" /f Or add the next code in a .reg file: Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagMRU] [-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags] [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell] "BagMRU Size"=dword:00001f40 [HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam] "BagMRU Size"=dword:00001f40 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "NoSaveSettings"=dword:00000000
  19. Add the next commands in unattended section of nLite: REG.EXE DELETE "HKCR\.avi\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}" /f REG.EXE DELETE "HKCR\.mpeg\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}" /f REG.EXE DELETE "HKCR\.mpg\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}" /f REG.EXE DELETE "HKCR\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}" /f Note: your .reg file contain unused information. Should look like this: Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\.avi\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] [-HKEY_CLASSES_ROOT\.mpeg\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] [-HKEY_CLASSES_ROOT\.mpg\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}] [-HKEY_CLASSES_ROOT\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}]
  20. Hi, Post here the entire content of your .reg file and I will show you what command you can put in unattended section of nLite.
  21. Sorry, but don't work! Try this in a .reg file: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{1B374FEE-7015-4A0C-B3CA-60F0ACCDA425}User\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "LowRiskFileTypes"=".exe" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "LowRiskFileTypes"=".exe" or add the next two commands in unattended section of nLite: REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{1B374FEE-7015-4A0C-B3CA-60F0ACCDA425}User\Software\Microsoft\Windows\CurrentVersion\Policies\Associations" /v "LowRiskFileTypes" /t REG_SZ /d ".exe" /f REG.EXE ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Associations" /v "LowRiskFileTypes" /t REG_SZ /d ".exe" /f Need restart to take effect if you run the commands or .reg file from Windows.
  22. Try Run("msiexec.exe" & " /i ess_nt32_nld.msi") or ShellExecute("ess_nt32_nld.msi") instead of Run("ess_nt32_nld.msi"). But I suggest to run a silent installation using a config file saved previously. Edit: Silent install string
  23. That is possible if the same files is write to image just once. CDIMAGE.EXE can do this with a switch.
  24. Try here. Basically you can use use something like this: @echo off nod32.3.0.msi /qn taskkill /F /IMegui.exe exit But is better to configure first, save the settings and use the code from there.
×
×
  • Create New...