Jump to content

crashfly

Members
  • Posts

    405
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by crashfly

  1. I'm not sure if Legolash2o coded it to require 2.0 or 2.0 minimum. It depends if he checks for existence of/in a particular folder/reg key, or existence of a particular function. Besides, Win7 includes all versions of .NET except 4.0 already, and even in XP the standard installer for 3.5 includes 2.0 and 3.0. Are you one of those that removes parts of .NET that you don't think you will need, crashfly? if so, you could be a perfect person to tell us if W7T will work without .NET 2.0 installed. If you don't remove any parts of .NET, then I'm curious why you asked the question.

    Cheers and Regards

    My reasoning behind the question was purely academic. In my opinion, I think it is a better program that can be written to support most any .net you have installed instead of specifically requiring a certain version. I have not gotten to the point where I removed the "lesser" version of .net, but I consider it if that would help contribute to the programs development.

  2. There is place yet for alpha tester?

    :) I would like to join! :)

    Answer:

    You have to be an alpha tester, unfortunately the forum only allows a maximum of 15 users in a conversation so i can't add anyone else :(

  3. Although you already have the option to include your own registry file, I think you could just scrap the whole section all together and just leave it for the user to find their own tweaks. (Also tends to be less for you to debug.) As an alternative, you could split that whole tab off into a "helper" program that would "build" a registry file for the user. Then that would allow the user to add additional tweaks if they wanted. Just a couple of ides for you.

  4. Hi,

    can I remove NET Framework 3.5.1 using W7T's Component Removal if I add this package to my DVD or is the old version still needed?

    I remember that NET Framework used not be cumulative, but maybe that has changed in the meanwhile?!

    Thanks and nice work ;)

    ulysse

    The installer is only .net 4. Win 7 already has .net 3.5.1. Those are two separate entities. If you want .net 3.5.1, then do not remove it from the Win7 install source.

  5. Statistic Update:

    50,000+ lines of code.

    80,000+ global downloads since records began so the true figure will be a lot more :D 31,000 of those was just in 6 months :P

    Statistics are good! And to think, you are a popular programmer right now! :dancing:

    You do good work. I am seriously glad you are not charging for this service. ;)

  6. It is probably the "SSL 3.0" option. Back several revisions ago, I performed an install after using W7T. With most of the IE options left alone, appearantly the default is to have 'SSL 3.0' off. With that, the game "Hellgate London" will not properly operate. It took a while to find it, but turning the option back on solved my problem with the game.

  7. Luckily, there is a way to fix your problems. In doing a little research I came across the following. Assuming you are in a Windows 7 PE, you can use the program "sfc" to scan your directory. Likely you will need your original installation media. Here is the command line help for the file:

    Microsoft ® Windows ® Resource Checker Version 6.0

    Copyright © 2006 Microsoft Corporation. All rights reserved.

    Scans the integrity of all protected system files and replaces incorrect version

    s with correct Microsoft versions.

    SFC [/sCANNOW] [/VERIFYONLY] [/sCANFILE=<file>] [/VERIFYFILE=<file>]

    [/OFFWINDIR=<offline windows directory> /OFFBOOTDIR=<offline boot directory>]

    /SCANNOW Scans integrity of all protected system files and repairs files with problems when possible.

    /VERIFYONLY Scans integrity of all protected system files. No repair operation is performed.

    /SCANFILE Scans integrity of the referenced file, repairs file if problems are identified. Specify full path <file>

    /VERIFYFILE Verifies the integrity of the file with full path <file>. No repair operation is performed.

    /OFFBOOTDIR For offline repair specify the location of the offline boot directory

    /OFFWINDIR For offline repair specify the location of the offline windows directory

    e.g.

    sfc /SCANNOW

    sfc /VERIFYFILE=c:\windows\system32\kernel32.dll

    sfc /SCANFILE=d:\windows\system32\kernel32.dll /OFFBOOTDIR=d:\ /OFFWINDIR=d:\windows

    sfc /VERIFYONLY

    Even if you are not using a Win7 PE, you can do something similar from the "install" command line. Boot from your CD as if you were going to install it. Press <Shift>+<F10>. That should bring up a command prompt for you to work with.

  8. While I cannot give good answers for the rest of your listed problems, I see the only way to make sure and remove your virus problem is to add that hdd to an already working system and scan the drive for viruses. First, this prevents the viruses from auto loading in the OS. Second, it stops any root kits from hiding themselves. Only when you have the virus(es) removed would I then say try to work with the hdd to get it working again.

    Of course, the above is only applicable if you have access to another system that you can perfom said actions on. Otherwise, you are going to be fighting a losing battle to those virii you want to remove from the system.

  9. crashfly, im planning on changing that ;)

    I do not doubt that you will fix it. I was just adding to Kel's assessment of the current state of Windows 7. If you remove too much, something breaks. Microsoft never intended for all of those options to be removable, so unless someone comes along (like you Legolash2o) to make it happen, best to leave it alone.

  10. W7T-MSP extracor refuses my office security updates :crying_anim02:

    excel2010-kb2553439-fullfile-x86-glb.exe

    onenoteloc2010-kb2553290-fullfile-x86-glb.exe

    powerpoint2010-kb2553185-fullfile-x86-glb.exe

    And it creates empty directories,not msp files :confused02:

    I could be wrong about this, however I think the extractor works on '.msu' files and not '.exe' files.

  11. What exactly is a "Corsair Voyager Mini"? If it is a USB stick, have you tried it in another computer (to verify it is not working)? If so, it is likely that some of the contacts have come lose on the solder joints. Depending on how "rough" you have been with the drive, it *might* be possible to fix it if your soldering skills are good, otherwise you should just replace it.

  12. can you make new video tutoruial on RT7 lite pls i have making but software dont working in rt7 lite thanks pls

    No! This is not the site that RT7 comes out of. In addition, most of us do not deal with RT7. W7T is superior in that it is being actively developed. Since RT7 is not, you will not get any help here.

  13. You can easily combine your batch files down to two. I am not sure why you are setting an environment variable to the architecture, but those can easily be combined.

    SPTDinst.cmd (Combined)


    @echo off
    if exist "%SystemDrive%\Windows\SysWOW64" goto :Cpu64
    set Arch0=x86
    cmd /c %SystemDrive%\Install\Apps\Daemon\86\SPTDinst-x86.exe add /q
    goto :exit
    :Cpu64
    set Arch9=AMD64
    cmd /c %SystemDrive%\Install\Apps\Daemon\64\SPTDinst-x64.exe add /q
    :exit

    FirstLog.cmd (Combined)


    @echo off
    if exist "%SystemDrive%\Windows\SysWOW64" goto :Cpu64
    set Arch0=x86
    REM ## Put more x86 type setups here
    goto :exit
    :Cpu64
    set Arch9=AMD64
    REM ## Put more x64 type setups here
    :exit
    cmd /c for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\wpi\wpi.exe start %%i:\wpi\wpi.exe

    It just seems kind of redundant to have two similar batch files for each OS. Combining allows to use one to cover both types.

×
×
  • Create New...