Jump to content

ricktendo

Member
  • Posts

    2,261
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by ricktendo

  1. I use this condition to install on anything equal or under 6.1 in my Flash ActiveX in WPI getOSvernum()<="6.1"
  2. First code not working, always skips... Here is the output E:\Projects\Installers\dotNetFx_AIO_x86>SET "_OSV=" & FOR /F "TOKENS=2 DELIMS=[]" %G IN ('VER') DO FOR /F "TOKENS=2,3 DELIMS=. " %H IN ("%~G") DO SET "_OSV=%H.%I" E:\Projects\Installers\dotNetFx_AIO_x86>FOR /F "TOKENS=2,3 DELIMS=. " %H IN ("Versi¢n 5.1.2600") DO SET "_OSV=%H.%I" E:\Projects\Installers\dotNetFx_AIO_x86>SET "_OSV=5.1" E:\Projects\Installers\dotNetFx_AIO_x86>IF NOT "_OSV." == "5.1." GOTO:NOTXPE:\Projects\Installers\dotNetFx_AIO_x86>ECHO This version of dotnet can only be installed on Windows XP. This version of dotnet can only be installed on Windows XP.E:\Projects\Installers\dotNetFx_AIO_x86>ECHO This version of dotnet can only be installed on Windows XP. 1>C:\WINDOWS\DOTNETAIO.TXT
  3. OK so I have this .net aio installer I want to make only install on XP x86, it already has code for it to skip if run on Windows 2000 I would like to use something similar for XP64/Vista*/7*/8* and above :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::: Installer created by yumeyao with strel's help :::: :::: WaitNET.exe by RogueSpear :::: :::: Script created with :::: Silent .NET Maker synthesized 20090913 :::: http://www.msfn.org/board/index.php?showtopic=127790 :::: :::: Script modified by yumeyao on 20091023 :::: Script remodified by ricktendo64 on 20100817 :::: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSIONSET VERBOSITY=/quiet&SET VERBOSITYSHORT=/qnIF "%1"=="/qn" SET VERBOSITY=/quiet&SET VERBOSITYSHORT=/qnIF "%1"=="/quiet" SET VERBOSITY=/quiet&SET VERBOSITYSHORT=/qnIF "%1"=="/silent" SET VERBOSITY=/silent&SET VERBOSITYSHORT=/qnIF "%1"=="/qb" SET VERBOSITY=/passive&SET VERBOSITYSHORT=/qbIF "%1"=="/qb!" SET VERBOSITY=/passive&SET VERBOSITYSHORT=/qbIF "%1"=="/passive" SET VERBOSITY=/passive&SET VERBOSITYSHORT=/qbIF NOT EXIST FILEVER.vbs ( ECHO>>FILEVER.vbs Set objFSO = CreateObject^("Scripting.FileSystemObject"^) ECHO>>FILEVER.vbs Wscript.Echo objFSO.GetFileVersion^(WScript.arguments^(0^)^))FOR /F "DELIMS=. TOKENS=1" %%I IN ('CSCRIPT //NOLOGO FILEVER.vbs "%SYSTEMROOT%\SYSTEM32\MSI.DLL"') DO IF /I "%%I"=="2" ( IF /I "%VERBOSITY%"=="/passive" SET VERBOSITY=/qb! IF /I "%VERBOSITY%"=="/silent" SET VERBOSITY=/qn IF /I "%VERBOSITY%"=="/quiet" SET VERBOSITY=/qn)SET SYS2K=1IF EXIST %SYSTEMROOT%\system32\reg.exe ( SET SYS2K= FOR /F "DELIMS=" %%I IN ('%SYSTEMROOT%\system32\REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName') DO ECHO>DNFWIN1.TXT %%I FOR /F %%I IN ('FINDSTR/I "2000" DNFWIN1.TXT') DO SET SYS2K=1)IF DEFINED SYS2K GOTO:SYSTEM2KFOR /F "TOKENS=3" %%I IN ('REG QUERY "HKLM\SYSTEM\Setup" /v SystemSetupInProgress') DO SET SSIP=%%IIF /I "%SSIP%"=="0x1" ( SET SSIPAFTERFIX=NO REG QUERY "HKLM\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW" IF NOT ERRORLEVEL 1 SET SSIPAFTERFIX=YES&REG EXPORT "HKLM\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW" SSIPFIX.REG&REG DELETE "HKLM\SOFTWARE\Microsoft\PCHealth\ErrorReporting\DW" /f REG ADD "HKLM\SYSTEM\Setup" /v SystemSetupInProgress /t REG_DWORD /d 0 /f)IF EXIST *.TXT DEL /F *.TXTFOR /F %%I IN ('DIR/B DNF30\SYS32') DO ( XCOPY/DY DNF30\SYS32\%%I %SYSTEMROOT%\SYSTEM32 %SYSTEMROOT%\SYSTEM32\REGSVR32 /S %SYSTEMROOT%\SYSTEM32\%%I)START /WAIT DNF40\netfx_core_x86.msi /UPDATE "%CD%\DNF40\kb2468871.msp" %VERBOSITY% /norestartSTART /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT DNF40\netfx_Extended_x86.msi /UPDATE "%CD%\DNF40\kb2468871.msp" %VERBOSITY% /norestartSTART /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT DNF20\netfx20a_x86.msi VSEXTUI=1 ARPNOMODIFY=1 ARPNOREPAIR=1 TRANSFORMS=MUFIXES20.MST REBOOT=ReallySuppress %VERBOSITY%START /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT DNF30\netfx30a_x86.msi VSEXTUI=1 ARPNOMODIFY=1 ARPNOREPAIR=1 TRANSFORMS=REMFONTCACHEFIX.MST;MUFIXES3035.MST %VERBOSITY% /norestartSTART /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT DNF35\vs_setup.msi VSEXTUI=1 ARPNOMODIFY=1 ARPNOREPAIR=1 TRANSFORMS=MUFIXES3035.MST %VERBOSITY% /norestartSTART /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT DNF11\netfx.msi TRANSFORMS=NETFX11SP1.MST %VERBOSITY% /norestartSTART /WAIT WaitNET.exe %VERBOSITYSHORT%START /WAIT WaitNET.exe %VERBOSITYSHORT% /eIF /I "%SSIP%"=="0x1" ( IF "%SSIPAFTERFIX%"=="YES" REG IMPORT SSIPFIX.REG REG ADD "HKLM\SYSTEM\Setup" /v SystemSetupInProgress /t REG_DWORD /d 1 /f)GOTO:EOF:SYSTEM2KECHO This version of dotnet cannot be installed on Windows 2000.ECHO>%SYSTEMROOT%\DOTNET5IO.TXT This version of dotnet cannot be installed on Windows 2000.Thanks for your time
  4. Use a resource hacker, I do the same with my .net slim installer, I add a new bmp and edit the layout so it looks like this
  5. Add/remove a section here hideupdates(0) = "KB2592687" 'Remote Desktop Protocol 8.0hideupdates(1) = "KB2709981" 'Windows Media Player 12hideupdates(2) = "Bing Desktop" 'With this we get all versionshideupdates(3) = "Silverlight"hideupdates(4) = "NEW Entry Name 1" 'you add thishideupdates(5) = "NEW Entry Name 2" 'add another if you wantHere you need to increase or decrease the number to be the same number as the last entry, in this case its 5 so we change it to 5 Dim hideupdates(5) 'TO ADD 1 EDIT THE (3) AND ADD another hideupdates(#)
  6. Easter egg: DSL router patch merely hides backdoor instead of closing it
  7. Clear your icon cache
  8. Sony: stop using our VAIO laptop or risk fire
  9. Xbox password flaw exposed by five-year-old boy This kid is going to make a great hacker some day
  10. MsSecEs enables Microsoft Update, there is also a VBS script that you can use to enable this before you run the hide VBS Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")ServiceManager.ClientApplicationID = "My App"'add the Microsoft Update Service, GUIDSet NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")Edit: You may also need to do a little registry editing to fully enable it (not needed on Windows 8+) http://reboot.pro/topic/15769-how-to-enable-microsoft-update-programmatically/
  11. Looks like the finally busted Wzor (or his source) http://www.computerworld.com/s/article/9247091/Windows_leak_site_Wzor_goes_dark_a_day_after_feds_arrest_Microsoft_mole Edit: NOT Wzor nor is it his/her/their source, apparently it was coanouna's source (he/she is the blogger in question) http://www.infoworld.com/t/microsoft-windows/microsoft-uncovers-mole-who-leaked-windows-secrets-wzor-lives-238755
  12. Its all the post sp3 security updates and hotfixes, including updated ie, etc...
  13. If you thought Microsoft was bad, here is Apple Apple retires Snow Leopard from support, leaves 1 in 5 Macs vulnerable to attacks
  14. Its just a name change, but MsSecEs is a updated Windows Defender... renamed (go with latest because it does network detection, av and antimalware)
  15. Here is a newer one with Vista support v5.0.3.0 ftp://ftp.hp.com/pub/softpaq/sp63001-63500/sp63214.exe
  16. If you give me the hardware id I can find the latest driver that supported vista Hey, if you are happy with Vista, then by all means keep using it
  17. Thats another thing I forgot, driver support. Its better with Windows 7
  18. 1 reason I can think of, if you are a SSD user Win7 or 8 would be best (they are optimized if ssd is detected)
  19. That's what I was thinking. I don't see a single app listed in the OP's image that is a free app. Cheers and Regards I googled 'wpi greensuit' and I got a 4GB torrent with cracked software as a result, so yes this is warez
  20. Well I use a resource editor (like Resource Hacker) to extract the icon, then I use a program called Axialis IconWorkshop to convert the 32x32 ICO into a 32x32 PNG http://i.imgur.com/3qGMfz1.png BTW that looks like some warez WPI
×
×
  • Create New...