Jump to content

thedexmonster

Members
  • Posts

    72
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by thedexmonster

  1. I tried a lot of different configurations from 8GB up to 24GB. I did see an interesting error when trying to set my ramdisk as my VMWare VHD location. It complained about the destination file system not accepting large files. Strange seeing as it was NTFS. I think the problem is with ImDisk. I have used other programs in the past that showed my drives in the Disk Management Console. ImDisk does not.

  2. I have noticed that if I use your program to install an addon that puts the uninstall information in: HKLM,"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall it does not add the registry entries. All the files are copied and all other registry entries are added. If I manually install the program from the INF or if I use HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\ it works fine.

  3. I am attempting to modify %ProgramFiles% and %ProgramFiles(x86)% definitions as well as a few minor directories during setup. What I am not sure of is where or when to apply this so windows copies the least amount of files to the default locations.

    If I have to, I will write a script that finds and replaces any registry entries already modified and use the results of the script to move those files to their new locations.

     

    Any guidance is greatly appreciated! Comments also!!

     

    I plan on using registry entries like the following.

     

    [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment]
    "CSIDL_PROGRAM_FILES"="F:\\Program Files\\"
    "CSIDL_PROGRAM_FILESX86"="F:\\Program Files (x86)\\"
    "Users"="F:\\Users"

    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
    "CSIDL_PROGRAM_FILES"="F:\\Program Files\\"
    "CSIDL_PROGRAM_FILESX86"="F:\\Program Files (x86)\\"
    "Users"="F:\\Users"


    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]
    "CommonFilesDir"="F:\\Program Files\\Common Files"
    "CommonFilesDir (x86)"="F:\\Program Files (x86)\\Common Files"
    "CommonW6432Dir"="F:\\Program Files\\Common Files"
    "ProgramFilesDir"="F:\\Program Files"
    "ProgramFilesDir (x86)"="F:\\Program Files (x86)"
    "ProgramW6432Dir"="F:\\Program Files"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
    "Common Desktop"="F:\\Users\\All Users\\Desktop"
    "Common Start Menu"="F:\\Users\\All Users\\Start Menu"
    "CommonVideo"="F:\\Users\\All Users\\Media"
    "CommonPictures"="F:\\Users\\All Users\\Media"
    "Common Programs"="F:\\Users\\All Users\\Start Menu\\Programs"
    "CommonMusic"="F:\\Users\\All Users\\Media"
    "Common Administrative Tools"="F:\\Users\\All Users\\Start Menu\\Programs\\Administrative Tools"
    "Common Startup"="F:\\Users\\All Users\\Start Menu\\Programs\\Startup"
    "Common Documents"="F:\\Users\\All Users\\Documents"
    "OEM Links"="F:\\Users\\All Users\\Links"
    "Common Templates"="F:\\Users\\All Users\\Templates"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
    "CommonPictures"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      4d,00,65,00,64,00,69,00,61,00,00,00
    "CommonMusic"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\
      00,65,00,64,00,69,00,61,00,00,00
    "CommonVideo"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\
      00,65,00,64,00,69,00,61,00,00,00
    "Common Start Menu"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\
      00,53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,00,00
    "Common Programs"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\
      00,6f,00,67,00,72,00,61,00,6d,00,73,00,00,00
    "Common Startup"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\
      00,6f,00,67,00,72,00,61,00,6d,00,73,00,5c,00,53,00,74,00,61,00,72,00,74,00,\
      75,00,70,00,00,00
    "Common Templates"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\
      00,54,00,65,00,6d,00,70,00,6c,00,61,00,74,00,65,00,73,00,00,00


      [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList]
    "Public"=hex(2):25,00,55,00,73,00,65,00,72,00,73,00,25,00,5c,00,50,00,75,00,62,\
      00,6c,00,69,00,63,00,00,00
     
      [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\ProfileList]
    "Public"=hex(2):25,00,55,00,73,00,65,00,72,00,73,00,25,00,5c,00,50,00,75,00,62,\
      00,6c,00,69,00,63,00,00,00


    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion]
    "CommonFilesDir"="F:\\Program Files (x86)\\Common Files"
    "CommonFilesDir (x86)"="F:\\Program Files (x86)\\Common Files"
    "CommonW6432Dir"="F:\\Program Files\\Common Files"
    "ProgramFilesDir"="F:\\Program Files (x86)"
    "ProgramFilesDir (x86)"="F:\\Program Files (x86)"
    "ProgramW6432Dir"="F:\\Program Files"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\explorer\Shell Folders]
    "Common Desktop"="F:\\Users\\All Users\\Desktop"
    "Common Start Menu"="F:\\Users\\All Users\\Start Menu"
    "CommonVideo"="F:\\Users\\All Users\\Media"
    "CommonPictures"="F:\\Users\\All Users\\Media"
    "Common Programs"="F:\\Users\\All Users\\Start Menu\\Programs"
    "CommonMusic"="F:\\Users\\All Users\\Media"
    "Common Administrative Tools"="F:\\Users\\All Users\\Start Menu\\Programs\\Administrative Tools"
    "Common Startup"="F:\\Users\\All Users\\Start Menu\\Programs\\Startup"
    "Common Documents"="F:\\Users\\All Users\\Documents"
    "OEM Links"="F:\\Users\\All Users\\Links"
    "Common Templates"="F:\\Users\\All Users\\Templates"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\explorer\User Shell Folders]
    "CommonPictures"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      4d,00,65,00,64,00,69,00,61,00,00,00
    "CommonMusic"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\
      00,65,00,64,00,69,00,61,00,00,00
    "CommonVideo"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,4d,\
      00,65,00,64,00,69,00,61,00,00,00
    "Common Start Menu"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\
      00,53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,00,00
    "Common Programs"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\
      00,6f,00,67,00,72,00,61,00,6d,00,73,00,00,00
    "Common Startup"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,00,\
      53,00,74,00,61,00,72,00,74,00,20,00,4d,00,65,00,6e,00,75,00,5c,00,50,00,72,\
      00,6f,00,67,00,72,00,61,00,6d,00,73,00,5c,00,53,00,74,00,61,00,72,00,74,00,\
      75,00,70,00,00,00
    "Common Templates"=hex(2):25,00,50,00,55,00,42,00,4c,00,49,00,43,00,25,00,5c,\
      00,54,00,65,00,6d,00,70,00,6c,00,61,00,74,00,65,00,73,00,00,00

  4. Hello, I'm trying to install software on particular machines based on operating system and architecture. I've ran into a wall with this bit of code. For some reason it wont set the variable arch when ran remotely.

    SYSTEMINFO | FIND "System Type" > C:\sysType.txt

    FOR /F "usebackq delims=: tokens=3" %%c IN (C:\sysType.txt) DO SET arch=%%c

    ECHO %arch% | FIND "86" > NUL

    IF %ERRORLEVEL% == 0 (

    GOTO VISTA

    ) ELSE (

    GOTO 64

    )

    I also use this and it works fine:

    SYSTEMINFO | FIND "OS Name" > C:\osName.txt

    FOR /F "usebackq delims=: tokens=2" %%c IN (C:\osName.txt) DO SET vers=%%c

    vers always has a proper value. What am I doing wrong?

  5. i use a xp pro sp3 student edition as my base..

    i add my silent addons first with RVM_Integrator_1.6.1

    then add my nlite addons second with nlite

    then add my driverpacks with DPs_BASE 10.06 last

    then i run nlite again to make the iso image

    xable UpdatePack-SP3-v2.0.0 = nlite addon

    Framework all in one 1.1 - 4.0 = 2 nlite addons

    Internet explorer 8 = nlite addon

    Windows media player 11 = nlite addon

    Kels runtimes 6.8 = nlite addon

    Directx 9 june 2010 = nlite addon

    RedDXManaged_1.1.0 = silent RVM addon

    Flash 10.1 = nlite addon

    Java 6 update 21 = nlite addon

    Shockwave 11.5 = nlite addon

    Silerlight 4.0.50524.0 = silent RVM addon

    Klite mega pack 6.2.0 = nlite addon

    Real alterative lite 2.0.2 = silent RVM addon

    Quicktime alterative lite 3.2.2 = silent RVM addon

    c++ 2005 = nlite addon

    c++ 2008 = nlite addon

    c++ 2010 = nlite addon

    Firefox 3.6.8 = silent RVM addon -- addon make with this tool in this post, otherwise ill use a normal nlite addon instead.

    pc wizard 1.9.4 = nlite addon

    Infranview 4.20 + plugins = nlite addon

    Recuva 1.37.488 = nlite addon

    cpl mega pack 11.2 = nlite addon

    cpl ram disk 3.0 = nlite addon

    cpl Prime95 v25.8 = nlite addon

    cpl netrepair = nlite addon

    cpl RegTweaker 2.1.2.283 = nlite addon

    cpl IconRepair = nlite addon

    cpl TrueCrypt 4.3.1.0 = nlite addon

    cpl vfloppy 1.1 = nlite addon

    cpl Vista System Properties 1.8 = nlite addon

    core temp v0.99.7 = nlite addon

    Xp syspad 7.9.6 = nlite addon

    Vlc 1.1.1 = nlite addon

    AMD k8 processor driver 1.2 = nlite addon

    Luna lclock 1.6b2 Refresh = nlite addon

    Winrar 3.93 = silent RVM addon

    Adobe reader 9.3.3 = nlite addon

    SetPoint 480 = silent RVM addon

    Internet Download Manager 5.18.5 = silent RVM addon

    Xp antispy 3.97.3 = nlite addon

    YouTube to Mp3 Converter = nlite addon

    Mp3tag 2.46 = nlite addon

    SysInternals 3.6 = nlite addon

    Revo Uninstaller 2.23 = nlite addon

    CCleaner 2.33 = nlite addon

    EncodeHD12206 = nlite addon

    WinGamesLive = nlite addon

    ESET Smart Security 4.2.35 = silent RVM addon

    iTunes 9.2.1 = nlite addon

    unlocker 1.9.0 = nlite addon

    windows live messenger = nlite addon

    Messenger Plus! Live = nlite addon

    i use a clean firefox upto date version installed and use local source to make it with

    heres a pic of the way i have mine setup

    http://img833.images...ff716prefs.jpg/

    my firefox extensions i use

    http://img826.images...extensions.jpg/

    if i add a normal firefox nlite addon not made with this tool all goes well

    but my firefox addon extensions etc are not added and its just a normal version

    and i would prefer to have a custom make firefox really..

    even if i make a little corporate version without so many addons just to fit on a 700 MB cdr-rom

    the firefox silent addon still turns out the same with the two boxes unticked..

    everything else works ok.. i.e. all the other addons work perfectly..

    Late is better than never right? I may have found the source of your problem. There is a file in the program files directory (%ProgramFiles%\Mozilla Firefox\greprefs\security-prefs.js) that is missing with the addon. As far as fixing the addon, I will try in the little spare time I have, but, I am hoping Jonnyboy beats me to it.

    In the mean time, if you add your own security-prefs.js to that folder it should work.

  6. i still have on version 716 problem the protocals SSL 3.0 and TLS 1.0 in the advanced options boxes seems to be unticked when the xp is installed fresh with a addon made with this addon maker.

    i had a few people ask me that have tried it and said the same thing about the boxes not being ticked..

    is there anyway of making sure the boxes are ticked so when a fresh install is done the boxes are already ticked..

    thanks in advance..

    here's a picture of the boxes unticked, would be nice to have them pre ticked.

    http://img706.images...ptionboxes.jpg/

    Of the hundreds of times I've used this addon I have only experienced this problem once. I think it might have something to do with another addon integrated with it. Or possibly a dirty source. Are you trying a clean integration? and what other addons do you use?

  7. Thanks for this update (0716).

    Is the file size and MD5 in post#1 correct for 0716?

    I get:

    file size: 3.60 MB

    MD5: 8c34970ba1966cbd35f022121b05b1d0

    8C34970BA1966CBD35F022121B05B1D0 - 3.60MB is correct. Sorry, I'll see if he can update that for me.

    Seems I made a mistake! Nothing too vital until the next version comes along. Still I recommend re-downloading if MD5 checksum doesn't match.

    Will not happen again!!

  8. there is an error now, nothing serious ;). Flash player doesn't work anymore with "/s" switch.

    New working switch is "/install", I hope you will have time to update.

    Thanks for this great tool.

    edit the config.txt file in the bin folder.

    change the line ;eRunProgram="install_flash_player.exe /S"

    to read ;eRunProgram="install_flash_player.exe /install"

    then save it and you're good to go.

  9. Integrate this into your windows disk and you wont have to install it after windows installs in your virtual machine. If you are not installing in a virtual setting it will not install.

    I don't have a Windows 7 or 64 bit operating system to build or test on. Sorry.

    Created 10/29/2009

    Tested with nLite and VMware Workstation 7.0.0 build-203739 on a 32bit Windows XP system.

    File Name: VMwareTools_8.1.3_b-203739.cab

    MD5: D8931742AE363DAAEDACACD7B3E9F1AB

    Links:

    RapidShare

    iFileIt

  10. An Error Occurred

    Sorry, an error occurred. If you are unsure on how to use a feature, or don't know why you got this error message, try looking through the help files for more information.

    [#10358] You requested a post that is not part of this topic. Please verify the URL you clicked or contact an administrator.

    I have been getting this error on almost every topic I visit since the layout change of the forums. Not sure what the problem is but it's a little frustrating.

    An example of this:

    http://www.wincert.net/forum/index.php?/topic/5747-addon-internet-explorer-8-enu-true-addon/page__pid__51353__mode__threaded__show__100__st__100#entry51353

    Any particular reason this might be happening to me? I haven't seen anyone else complain about this so I have to assume it could be a problem on my end. I'm running Firefox 3.5.1, Windows XP Pro SP3, All windows updates are installed.

  11. My idea is: uninstall IE8 through its Windows Components Option and reinstall it through its standalone package

    Wow... that was fun.

    I tried uninstalling from windows components. Many required dll's were missing from my installation.

    Uninstall failed. Restarted the computer to find explorer wouldn't start because iertutil.dll was missing.

    I was able to open 7zip from the task manager and extract all the dll's from this addon to the windows directory and start explorer. Restarted and installed IE8 from standalone, everything's good now.

    I've been using the IE7 addon for a long time now without any problems... Don't know what happened here. That's what VM's are for I guess.

    Thank you, I didn't even think to look in components to uninstall it. I tried reinstalling and it said this version cannot be uninstalled but I could reinstall it. Tried that and it didn't work..

  12. I'm looking for suggestions.

    I used the IE8 True addon for the first time in a live environment, before testing in a VM.

    ActiveX controls are not working. I'm not prompted to install any necessary controls. I can't add search engines or accelerators. And because this is a true addon I can't downgrade to IE7.

    Am I the only one experiencing these problems? I'm running Windows XP Pro SP3. I used RVMI 1.6.1 beta2 to integrate.

    IE is basically useless. It fails to download any files via ftp or http, no flash support...

    Ideas?

×
×
  • Create New...