Jump to content

bphlpt

Ultimate Sponsor
  • Posts

    1,403
  • Joined

  • Last visited

  • Days Won

    64

Reputation Activity

  1. Like
    bphlpt got a reaction from xinloi_anhda_quenem in Help me! how to change the icons in computer management?   
    Please do not post duplicate threads.  Since you decided to post here, the duplicate thread you previously posted in Unattended XP has been removed.  If you want this thread placed somewhere else, please advise.
     
    Cheers and Regards
  2. Like
    bphlpt got a reaction from sigbin in What are GDR, LDR and QFE Updates?   
    The "source" file for the update will be different sizes depending on whether it is .cab, .msu, or whatever.  The "source" files are just a distribution container, the files inside that container are the same.  If you were distributing a DVD full of updates, then I think your understanding would be correct.  But if I understand the process correctly, once you have installed/integrated that update into your updated AIO OS build, then those updates are all expanded/stripped out of their containers and either replace existing files or are stored in a "install pending" location.  In either case, I believe that the format used inside the OS to store those files is independent of the format of the "source" file.  I could be wrong, but that is the way I understand it.
     
    Cheers and Regards
  3. Like
    bphlpt got a reaction from RicaNeaga in Main - Basic - Update Catalog: Keep file modify dates on downloaded files   
    Sorry, RicaNeaga, but I respectfully disagree.  I understand your points, and agree that something stronger than just a date should be used to confirm file changes, but the date can be a very easy "first pass" check.  I also do not think that this change will take Lego much time to implement.  If I am wrong, then I will agree with your point about Lego having more important things to implement.
     
    Cheers and Regards
  4. Like
    bphlpt got a reaction from dareckibmw in Is WinToolkit dead ?   
    @pedilover,
     
    Please stop spouting doom and gloom and the sky is falling and Win Toolkit will never be updated again type messages.  You've been a member here long enough to know that for every free volunteer software project on this and all other boards folks involvement ebbs and flows with the reaction to RL circumstances.  If you don't want to use the product and/or wait that's fine.  But please keep your opinions about its future to yourself.
     
    Cheers and Regards
  5. Like
    bphlpt got a reaction from Stimpy in Update Servers Offline   
    Please do not disrespect Komm by trying to get around the protections that Komm has built into his server so that his bandwidth is abused by people direct linking to his files.  If he is willing to allow Lego to but a hook in Win Toolkit so that it can access the files directly, that should satisfy your requirements without anyone needing to access the files directly themselves.
     
    Cheers and Regards
  6. Like
    bphlpt got a reaction from RicaNeaga in Update Catalog: Proxy Error   
    If you had started out saying that you would like both options, instead of only via Win Toolkit, I think you would have gotten a different reaction from ricktendo.
     
    Cheers and Regards
  7. Like
    bphlpt got a reaction from RicaNeaga in Everything Search Engine - v1.3.3.658b   
    NOTE: I wrote this before I saw the last post by myselfidem.  I made notations accordingly, but if I missed something please forgive me.
     Geej & myselfidem, As I mentioned previously, I've got some issues with "Everything_Schedule.bat" as included in the file you last posted Geej.  (NOTE: You caught some of the errors myselfidem, but not all. )  It simply does not work correctly.  It looks as if someone cut-and-pasted from a couple of different sources, and not very well.  For reference, you can check out the original script http://myunster.com/blog/server-administration/30.html#comment16'>http://myunster.com/blog/server-administration/30.html#comment16 and compare that to the code as I extracted it from EverythingSearchEngine_1.3.0.632bSi.exe: Original from http://myunster.com/blog/server-administration/30.html#comment16'>http://myunster.com/blog/server-administration/30.html#comment16:
    ::*******************************************:::: schedule.bat                              :::: Set variables TaskName, Task and go ahed  :::: http://myunster.com                       ::::*******************************************::@ECHO offECHO "Proceeding..." REM Delete variables, may be cachedSET "TaskName="SET "Task=" REM Set variablesSET TaskName=DummyTaskNameREM Following task will be executed every hourSET Task=C:\www.domain.dev\usr\local\php5\php.exe C:\www.domain.dev\cron.php REM Determine if windows xpVER | find "XP" > NULIF %ERRORLEVEL% == 0 GOTO ver_xp REM Determine if windows Vista/Win7systeminfo | find "OS Name" > %TEMP%\osname.txtFOR /F "usebackq delims=: tokens=2" %%i IN (%TEMP%\osname.txt) DO SET Version=%%iDEL /F %TEMP%\osname.txt ECHO %Version% | find "Windows 7" > NULIF %ERRORLEVEL% == 0 GOTO ver_7ECHO %Version% | find "Windows Vista" > NULIF %ERRORLEVEL% == 0 GOTO ver_vista :ver_xp:Run Windows XP specific commands here.REM Delete variable, may be cachedSET "Result="REM WinXP doesn't support TN for schtasks /queryFOR /F "delims=, tokens=2" %%R IN ('schtasks /query /fo csv /v ^| findstr /L /C:"%TaskName%"') DO SET Result=%%RIF (%Result%)==() SET Result="-1"IF "%TaskName%" == %Result% (REM Delete Task if it exists        SCHTASKS /Delete /TN "%TaskName%" /F)REM Then Create hourly running oneSCHTASKS /Create /TN "%TaskName%" /TR "%Task%" /SC HOURLY /RU SYSTEMGOTO exit :ver_vista:Run Windows Vista specific commands here.GOTO Elevation :ver_7:Run Windows 7 specific commands here.GOTO Elevation :ElevationREM Don't forget escape double quotes for CMD argument that you will pass to powershellPushD "%~dp0"IF EXIST "%~0.ELEVATED" DEL /F "%~0.ELEVATED"SET Argument=SCHTASKS /Create /F /TN \"%TaskName%\" /TR \"%Task%\" /SC HOURLY /RU SYSTEMSET ELEVATED_CMD=PowerShell -Command (New-Object -com 'Shell.Application').ShellExecute('Cmd.exe', '/C %Argument%', '', 'runas')ECHO %ELEVATED_CMD% >> "%~0.ELEVATED"CALL %ELEVATED_CMD%DEL /F "%~0.ELEVATED"PopDGOTO exit :exitECHO "Done!"EXIT
     From EverythingSearchEngine_1.3.0.632bSi.exe:
    ::*******************************************:::: Everything_Schedule.bat                   :::: Set variables TaskName, Task and go ahead :::: http://myunster.com                       ::::*******************************************::@ECHO offECHO "Proceeding..." >NUL REM Delete variables, may be cachedSET "TaskName="SET "Task="REM Set variablesSET TaskName=EverythingREM Following task will be executed on LogonIF EXIST "%SystemRoot%\SysWOW64\cmd.exe" GOTO :X64:X64SET Task=\"%%ProgramFiles(x86)%%\Everything\Everything.exe\" -startup IF NOT EXIST "%SystemRoot%\SysWOW64\cmd.exe" GOTO :x86:x86SET Task=\"%%ProgramFiles%%\Everything\Everything.exe\" -startupREM Determine if windows xpVER | find "XP" > NULIF %ERRORLEVEL% == 0 GOTO ver_xpREM Determine if windows Vista/Win7systeminfo | find "OS Name" > %TEMP%\osname.txtFOR /F "usebackq delims=: tokens=2" %%i IN (%TEMP%\osname.txt) DO SET Version=%%iDEL /F %TEMP%\osname.txtECHO %Version% | find "Windows 7" > NULIF %ERRORLEVEL% == 0 GOTO ver_7ECHO %Version% | find "Windows Vista" > NULIF %ERRORLEVEL% == 0 GOTO ver_vista:ver_xp:Run Windows XP specific commands here.REM Delete variable, may be cachedSET "Result="REM WinXP doesn't support TN for schtasks /queryFOR /F "delims=, tokens=2" %%R IN ('schtasks /query /fo csv /v ^| findstr /L /C:"%TaskName%"') DO SET Result=%%RIF (%Result%)==() SET Result="-1"IF "%TaskName%" == %Result% (REM Delete Task if it exists                SCHTASKS /Delete /TN "%TaskName%" /F)REM Then Create hourly running oneSCHTASKS /Create /TN "%TaskName%" /TR "%Task%" /SC ONLOGON /RL HIGHESTGOTO exit:ver_vista:Run Windows Vista specific commands here.GOTO Elevation:ver_7:Run Windows 7 specific commands here.GOTO Elevation:ElevationREM Don't forget escape double quotes for CMD argument that you will pass to powershellPushD "%~dp0"IF EXIST "%~0.ELEVATED" DEL /F "%~0.ELEVATED"SET Argument=SCHTASKS /Create /F /TN \"%TaskName%\" /TR \"%Task%\" /SC ONLOGON /RL HIGHESTSET ELEVATED_CMD=PowerShell -Command (New-Object -com 'Shell.Application').ShellExecute('Cmd.exe', '/C %Argument%', '', 'runas')ECHO %ELEVATED_CMD% >> "%~0.ELEVATED"CALL %ELEVATED_CMD%DEL /F "%~0.ELEVATED"PopDGOTO exit:exitECHO "Done!"EXIT
      I'll list the problems I see in order. -- 1) REM Following task will be executed on LogonIF EXIST "%SystemRoot%\SysWOW64\cmd.exe" GOTO :X64:X64SET Task=\"%%ProgramFiles(x86)%%\Everything\Everything.exe\" -startup IF NOT EXIST "%SystemRoot%\SysWOW64\cmd.exe" GOTO :x86:x86SET Task=\"%%ProgramFiles%%\Everything\Everything.exe\" -startup[NOTE: You caught this myselfidem, but I'm afraid your correction is not quite right.] This does not work correctly.  The IF statements do not do anything at all.  The last SET Task statement will get executed every time no matter what.  So Task will be equal to -- \"%%ProgramFiles%%\Everything\Everything.exe\" -startup -- for both x86 and x64 systems.  Also, the test for x86/x64, IF it was properly executed, will probably work OK in most situations, but it is not as robust a test as it could be.  (See here - http://www.ryanvm.net/forum/viewtopic.php?t=9672'>http://www.ryanvm.net/forum/viewtopic.php?t=9672 - for a full discussion.)  That section of code could be rewritten as: SET Task=\"%%ProgramFiles(x86)%%\Everything\Everything.exe\" -startupIF NOT EXIST "%SystemRoot%\SysWOW64\cmd.exe" (    IF NOT DEFINED PROCESSOR_ARCHITEW6432 SET Task=\"%%ProgramFiles%%\Everything\Everything.exe\" -startup)but I would probably rewrite it as: (SET "Tsk=(x86)") & (IF NOT EXIST "%SystemRoot%\SysWOW64\cmd.exe" (    IF NOT DEFINED PROCESSOR_ARCHITEW6432 (SET "Tsk=")))SET Task=\"%%ProgramFiles%Tsk%%%\Everything\Everything.exe\" -startup -- 2) You next have two lines that are run together:  [NOTE: You caught this myselfidem, good job!] REM Determine if windows xpVER | find "XP" > NULThis causes the "VER" test to never be executed.  As a result, the next line: IF %ERRORLEVEL% == 0 GOTO ver_xpcauses my Win7 x64 system to be identified as XP and the rest of the version checking code to be skipped completely.  I would expect that this is happening to you as well, myselfidem.  In fact, from what I can tell, thanks to this error and error (II), every system will be identified as a 32-bit XP system.  The Powershell commands listed at the bottom of the batch will never be executed.  I guess this is just as well for Vista users, since if the version checking code was executed on a Vista system it would fail because you have another two lines run together at the end of the "XP Section" of code:  [NOTE: You missed this one myselfidem.] GOTO exit:ver_vistaThe result of this is that the :ver_vista label doesn't exist as far as this batch is concerned so the code will fail and cause an execution error with an error box that the user will have to respond to in order to clear it.  -- 3) Even if the run together lines were fixed, the version checking code takes a looong time for OS > XP, is more complicated than necessary, and Win 8 will be treated as XP, since all versions except Win 7 and Vista will be treated as XP.  [As noted above, I think EVERYTHING is treated as if it was XP right now, ie I don't see how the Powershell code can possibly be executed.]  For that matter, both Win 7 and Vista are treated the same so the extra tests to identify Vista are not necessary.  Best I can tell, the only real reason to do an OS Version check is to see if it is Vista or above so that Powershell can be utilized, correct?  Well, what if Powershell is not installed or has been removed?  And Powershell can be added to XP, right?  So, bottom line, there is no way to really tell if Powershell is present without checking for it, so you might as well just do that.  Isn't that a better approach?  Assuming that is a better approach, and based off info I found here - http://blogs.msdn.com/b/powershell/archive/2009/06/25/detection-logic-poweshell-installation.aspx'>http://blogs.msdn.com/b/powershell/archive/2009/06/25/detection-logic-poweshell-installation.aspx - I would replace the version checking code with this: REM Check for PowesrshellSTART "Get Windows Version" /WAIT REGEDIT /E "%TEMP%.\_Temp.reg" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1"IF EXIST "%TEMP%.\_Temp.reg" (    FOR /F "tokens=1* delims=:" %%G IN ('TYPE "%TEMP%.\_Temp.reg" ^| FIND /I "Install"') DO (        (SET /A "_PSInstalled=%%H") & (IF "!_PSInstalled!"=="1" GOTO:psFound)    )) REM ps NOT foundREM put the old "XP" code hereGOTO:exit :psFoundREM put the old "Elevation" code hereGOTO:exitIf you really need to check for OS version, a much quicker way than "systeminfo" is to use the command "VER".  See here - http://ss64.com/nt/ver.html'>http://ss64.com/nt/ver.html - for a discussion.  Again, since in this instance it seems you only care if it is XP (or below?), or above XP, I would shorten it this way: FOR /F "tokens=2 delims=[]" %%G IN ('VER') DO (SET "_WinVer=%%G")FOR /F "tokens=2 delims=. " %%G IN ('ECHO %_WinVer%') DO (SET "_Major=%%G")IF "%_Major%"=="6" GOTO:aboveXP REM do your XP stuff hereGOTO:restOfStuff :aboveXPREM do your above XP stuff here :restOfStuffREM do anything else that pertains to all OS here EDIT: I was reminded by myselfidem that even if Powershell had been added to XP, that the commands for dealing with SCHTASKS are slightly different for XP vs Vista/7, so the two methods above have been combined in the full code shown below like this: REM Check for XPFOR /F "tokens=2 delims=[]" %%G IN ('VER') DO (SET "_WinVer=%%G")FOR /F "tokens=2 delims=. " %%G IN ('ECHO %_WinVer%') DO (IF "%%G"=="5" GOTO:treatAsXP)REM Check for Powershell in case it was uninstalledSTART "Get Windows Version" /WAIT REGEDIT /E "%TEMP%.\_Temp.reg" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1"IF EXIST "%TEMP%.\_Temp.reg" (    FOR /F "tokens=1* delims=:" %%G IN ('TYPE "%TEMP%.\_Temp.reg" ^| FIND /I "Install"') DO (        (SET /A "_PSInstalled=%%H") & (IF "!_PSInstalled!"=="1" GOTO:psFound)    )) :treatAsXPREM do your XP stuff hereGOTO:exit :psFound - old "Elevation" codeREM do your above XP stuff hereGOTO:exitNote that the Powershell tests are still useful in case Powershell has been removed from the OS, as some folks have done in attempts to "slim" Win 7.  -- 4) I was mainly concerned with the Batch command errors as I saw them.  My resulting revised code is: 
    @ECHO OFF & SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION::***********************************************************:::: Everything_Schedule.bat                                   :::: Sets variables _Schedule, _TaskName, _Task and goes ahead :::: Original script from: http://myunster.com                 :::: Modified by bphlpt 2013-02-05                             ::::***********************************************************::CALL :sub_CleanUp REM Set Task specific variables - %ProgramFiles% will be used if OS is 32-bit, %ProgramFiles(x86)% if OS is 64-bit(SET "_Schedule=ONLOGON")(SET "_TaskName=Everything")(SET "_X86=(x86)") & (IF NOT EXIST "%SystemRoot%\SysWOW64\cmd.exe" (IF NOT DEFINED PROCESSOR_ARCHITEW6432 (SET "_X86=")))(SET _Task=\"%%ProgramFiles%_X86%%%\Everything\Everything.exe\" -startup) REM Check if OS is XP, if it is not XP then check for PowerShell in case it was uninstalledFOR /F "tokens=2 delims=[]" %%G IN ('VER') DO (SET "_WinVer=%%G")FOR /F "tokens=2 delims=. " %%G IN ('ECHO %_WinVer%') DO (IF "%%G"=="5" GOTO:treatAsXP)START "Get Windows Version" /WAIT REGEDIT /E "%TEMP%.\_Temp.reg" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1"IF EXIST "%TEMP%.\_Temp.reg" (FOR /F "tokens=1* delims=:" %%G IN ('TYPE "%TEMP%.\_Temp.reg" ^| FIND /I "Install"') DO (    (SET /A "_PSInstalled=%%H") & (IF "!_PSInstalled!"=="1" GOTO:psFound))) :treatAsXPREM or PowerShell NOT found - using FINDSTR is necessary since WinXP does not support TN for schtasks /query(SET _Result="-1") & FOR /F "delims=, tokens=2" %%R IN ('SCHTASKS /query /fo csv /v ^| FINDSTR /L /C:"%_TaskName%"') DO (SET _Result=%%R)IF "%_TaskName%"==%Result% (SCHTASKS /Delete /TN "%_TaskName%" /F)SCHTASKS /Create /TN "%_TaskName%" /TR "%_Task%" /SC %_Schedule% /RL HIGHESTGOTO:exit :psFoundREM Do not forget to escape any double quotes in CMD arguments that you will pass to PowerShellSET _Argument=SCHTASKS /Create /TN \"%_TaskName%\" /TR \"%_Task%\" /SC %_Schedule% /RL HIGHEST /FSET _ELEVATED_CMD=PowerShell -Command (New-Object -com 'Shell.Application').ShellExecute('Cmd.exe', '/C %_Argument%', '', 'runas')PushD "%~dp0"DEL /F "%~0.ELEVATED" >NUL 2>&1ECHO %_ELEVATED_CMD% >"%~0.ELEVATED"CALL %_ELEVATED_CMD%DEL /F "%~0.ELEVATED" >NUL 2>&1PopDGOTO:exit :sub_CleanUpREM Clean up any leftover files or variablesDEL "%TEMP%.\_Temp.reg" >NUL 2>&1FOR /F "tokens=1* delims==" %%G IN ('"SET "_" 2>nul"') DO (SET "%%G=")EXIT /B 0 :exitCALL :sub_CleanUpENDLOCAL & EXIT
     Please note that I have changed all variable names to begin with "_". I've never used either the "SCHTASKS" command or Powershell, so I left the code alone that dealt with them other than a very slight "cleaning up".  Someone else really needs to double check this code to make sure it functions correctly in all circumstances.  For example, I don't understand the purpose of this: IF EXIST "%~0.ELEVATED" DEL /F "%~0.ELEVATED"...ECHO %_ELEVATED_CMD% >> "%~0.ELEVATED"CALL %_ELEVATED_CMD%DEL /F "%~0.ELEVATED"Unless Powershell uses it in some way, I don't see that "%~0.ELEVATED" is ever used, just created and deleted.  Did I miss something?  I figure it must be for handling UAC if enabled, but I don't know how it works.  If it is not needed, it seems like that could be changed to just: ...CALL %_ELEVATED_CMD% I hope all this makes sense.  My final code has been very MINIMALLY tested.  Please comment and ask for clarification if needed. Cheers and Regards
  8. Like
    bphlpt reacted to ricktendo in [Repak] Universal Extractor 1.9.16.202   
    UniExtract.exe    1.6.1.66TrIDDefs.TRD    (5002 file types, 21/01/13)unarc.exe        (December 12, 2012)langsThe current install date will be added as the lastupdate=yyyy/mm/dd to the UniExtract.ini
  9. Like
    bphlpt got a reaction from yogurt in CCleaner w/CCEnhancer- v5.03.5128   
    request filled
  10. Like
    bphlpt got a reaction from amaltom61 in New FTP Host   
    Any chance of a hint as to what this wonderful huge file is?  (To tempt folks to donate)
     
    Cheers and Regards
  11. Like
    bphlpt got a reaction from dareckibmw in [Solved] WinToolkit 1.4.1.2 error   
    12/21 is also my anniversary. (My wife's and my 21st LOL)
    Cheers and Regards
  12. Like
    bphlpt got a reaction from ElmerBeFuddled in [SOLVED] Can't run Win Toolkit - error "Stopped working"   
    @ElmerBeFuddled, .NET 3.5, and earlier, are part of Win 7, not a separate addon or install. Updates, when necessary, should also be included automatically by WU/MU without user intervention. So unless you do something specific yourself they should already be installed and active, I believe. .NET 4.0 is a separate install, and .NET 4.5, if used, should completely replace, or include, 4.0 and only 4.0. Other .NET frameworks will not be affected. As to why you still see the .4.0.3.319 folder, I haven't researched this so I'm guessing here, but I'm assuming that when 4.5 replaces 4.0 it either (1) continues to update 4.0 like 3.5 continued to update 3.0 and 2.0, or (2) puts hardlinks in the 4.0 folder, actually using the 4.5 files. The reason for doing either of these would be to handle poorly written software that checks for the availability of .NET by looking for specific files in specific folders. Bottom line, as a user, once you install 4.5 you don't have to worry anymore about updates for 4.0, you won't be offered them or see them as installed.
    @sp0ilesbrat, AFAIK all mention of any .NET greater than 3.5 regards to Win Toolkit has been by a user, not by the author Legolash2o. If any change is put in place to affect the use of Win Toolkit on XP I'm sure it will be announced and probably discussed in advance.
    Cheers and Regards
  13. Like
    bphlpt got a reaction from laddanator in [Slim] .NET Framework 4 Full x86/x64 (1-10-2016)   
    From what I understand, unlike in the past, 4.5 is supposed to totally replace 4.0. If you install 4.5 you won't need 4.0 at all.
    Cheers and Regards
  14. Like
    bphlpt got a reaction from CrAzYs in [Notice] Please Read   
    Guys, we have gotten WAY Off Topic here. Anything further not on the original topic of Lego being away for awhile while he moves houses, please start another topic.
    Cheers and Regards
  15. Like
    bphlpt got a reaction from imfak in WIN 7AIO MAKER   
    Try using Win Kit again. Use this as a guide - http://www.wincert.net/forum/topic/9217-proyecto-windows-7-sp1-actualizado/ It's in Spanish, but Google Translate does a pretty good job.
    Cheers and Regards
  16. Like
    bphlpt got a reaction from Ramesh Yadav in [Solved] Discrepancy in "Updates Retriever" and "All In One Integrator"   
    I would suggest waiting until the next version is released, I would expect probably in the next day or so, and try it. It should answer your questions better than trying to explain it.
    Cheers and Regards
  17. Like
    bphlpt got a reaction from ElmerBeFuddled in Windows 7 Toolkit Question (name change)   
    Just take out the "7" Kel, since it does Win8 as well.
    Cheers and Regards
  18. Like
    bphlpt got a reaction from VITOLIER in FAN EXCESSIVE NOISE   
    If the difference in noise just began when you updated to Win7, it could also be a power preference setting difference.
    Cheers and Regards
  19. Like
    bphlpt got a reaction from adminxp in New to this tool.   
    From my experience, it seems that the push to slim the OS install has waned in the last several years as CPU speed has increased, memory and disc drive size has increased, and price has decreased. As the parts of the OS have gotten more and more interwoven, the risk of taking something out now that you might find you want or need later, or having something break in an unexpected way has also increased. It is much safer, and I know that Kel agrees with me, to just disable the services you don't need to keep them from running. If you find you need it later, all you have to do is enable it again and you're in business. If you slim the install by taking things out, if you find you need it later, most of the time you CAN NOT just add it back in. You'll have to redo your build and start completely over from scratch with an untouched source. There are ways to silm the OS, and I'm sure there are specific instances where it might be of some benefit, but it is not for the faint of heart, nor for a first time builder. But if you have experience, it can be done. Others may disagree, but I personally do not recommend it.
    Cheers and Regards
  20. Like
    bphlpt got a reaction from Legolash2o in FreeRAM Tool   
    @Tarun,
    I understand your point, and I'm also a big fan of Mark Russinovich. But this tool that Legolash2o provided, at the request of ar_seven_am, is not being marketed as a Memory Optimizer. (It's not being marketed at all. LOL)
    * It does not do the "allocating, then freeing, large amounts of virtual memory" trick. therefore it does not cause the performance degradation Mark explains could happen as a result.
    * It does not do anything to try to defragment memory, so it does not run afoul of this false claim.
    * It does not claim to regain memory lost to leaks.
    * It makes no claims for improved performance at all.
    * It is FREE.
    It was not originally written as a separate app at all. It was originally written by Legolash2o to solve a problem within W7T where some memory was not being released appropriately within his own app that he wrote. So he wrote this to do that one thing, and that one thing only, to release the memory that he was done with and knew was supposed to be released so he could use it for something else during the app's execution. He didn't try to pitch this solution to anyone else. If all app makers were as conscientious about trying to clean up after themselves, then the memory manager's job would be much easier, don't you agree? Yes, you, and Mark, are correct that the memory manager should eventually release all memory that was not needed. But since Legolash2o KNEW he was done with that memory, as a responsible app maker, isn't it a good thing that he went ahead and released it?
    Even without Legolash2o promoting this cleanup routine he added, ar_seven_am perceived a difference in the the app's performance. He then asked if Legolash2o could break the routine out into a stand alone app so that he could see if other apps might benefit as well, and Legolash2o graciously agreed and posted it here for anyone to try it if they wanted to. He has also committed to releasing the source if there are any further code changes. As N1K has stated, this app, like W7T, is and will remain a FREE app. You, and everyone else, are welcome to try the app, or not, as you see fit. If you don't perceive a difference, or just don't want it on your system for whatever reason, then uninstall it or don't install it in the first place.
    Yes, ar_seven_am probably overreacted a little when you lumped this tool in with other 'garbageware RAM "optimizers"', but your statement was also a bit over the top, IMHO.
    Now that everyone has expressed their opinion, let's all just leave it at that.
    If anyone, would post their experiences after testing this tool, good or bad, then THAT would be useful information for everyone's benefit.
    Cheers and Regards
  21. Like
    bphlpt reacted to NIM in The Animals House of the Rising Sun Old School Computer Remix   
    <iframe width="560" height="315" src="http://www.youtube.com/embed/w68qZ8JvBds" frameborder="0" allowfullscreen></iframe>
  22. Like
    bphlpt got a reaction from laddanator in Help With XP.WIM   
    @laddanator, why don't you send IcemanND a PM and post back here if you find out anything, I'm sure there are others that would be interested, maybe even as a super install/repair disk with XP, Vista, Win7, and perhaps others.
    @rick, not exactly point and click, but it seems very complete and detailed. Thanks for the link.
    Cheers and Regards
  23. Like
    bphlpt got a reaction from ar_seven_am in Create your own Autounattend.xml All-In-One (x86/amd64)   
    @myselfidem,
    I believe the general question remains: Is it better or more reliable to order the x64 sub-section before the x86 sub-section in any area of the Autounattend.xml? If it solves a problem for anyone, and does not cause a problem for anyone else, wouldn't it be better to do it that way?
    Cheers and Regards my friend
  24. Like
    bphlpt reacted to myselfidem in Create your own Autounattend.xml All-In-One (x86/amd64)   
    How to customize your Autounattend.xml AIO (x86/amd64) file ?

    When you have created your own Windows 7 AIO with all or some wanted images on one install.wim image you can customize your Autounattend.xml file to suit your needs.

    The first stage is to use Windows System Image Manager (WSIM) and create an Autounattend.xml file for example Windows 7 x86 Edition.

    WSIM is included with AIK 3.0 for Windows 7.

    http://www.microsoft...ls.aspx?id=5753

    When all your customization are made, save the file.

    After,open your Autounattend.xml file with notepad and duplicate the same lines for CPU amd64, changing only x86 to amd64 on each line.

    Remove the last line indicating the location of the install.wim image source!

    Don't forget to remove the ie.cfg file or rename as ei.cfg.bak located inside:C:\Folder_Location\sources\ei.cfg

    A trial or valid key is needed for the installation and you can choose to install silently only one Operationg System (x86 or amd64).

    If all the keys are integrated you don't need to add this value and you can choose to install the OS you want.

    Autounattend.xml AIO 2 Images Ultimate (x86/amd64) (the names are fictitious and are used to demonstrate!)

    A - Operating System Windows 7 Ultimate (x86/amd64) with one key.
    Two dialog boxes will be displayed: OS to install and Disk Configuration.

    You must use a key matching the Edition you want install.


    <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"><settings pass="windowsPE"><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>en-US</UILanguage></SetupUILanguage><InputLocale>0409:00000409</InputLocale><SystemLocale>en-US</SystemLocale><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale></component><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>en-US</UILanguage></SetupUILanguage><InputLocale>0409:00000409</InputLocale><SystemLocale>en-US</SystemLocale><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale></component><component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component><component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><WillShowUI>Always</WillShowUI></OSImage></ImageInstall><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>John Hood</FullName><Organization>private</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ComputerName>John-PC</ComputerName><TimeZone>Pacific Standard Time</TimeZone></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ComputerName>John-PC</ComputerName><TimeZone>Pacific Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.com</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component></settings><settings pass="oobeSystem"><component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></component><component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><UILanguage>en-US</UILanguage><UserLocale>en-US</UserLocale><InputLocale>0409:00000409</InputLocale></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><TimeZone>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><TimeZone>Pacific Standard Time</TimeZone><RegisteredOwner>John Hood</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>John</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>qwertzuiop</Value><PlainText>true</PlainText></Password><DisplayName>John</DisplayName><Name>John</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. Only for One Image Windows 7 Ultimate (x86 and amd64) whithout using SetProductKey.cmd. Adapt the values to your needs.-->

    B - Autounattend.xml AIO (x86/amd64) all images and Disk Configuration already customized and all keys integrated.

    Autounattend.xml AIO (x86/amd64).
    Only one dialog box will be displayed to choose the OS to install

    <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"><settings pass="windowsPE"><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</UserLocale></component><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>fr-FR</UILanguage></SetupUILanguage><InputLocale>100c:0000100c</InputLocale><SystemLocale>fr-CH</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</UserLocale></component><component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component><component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Diagnostics><OptIn>false</OptIn></Diagnostics><DiskConfiguration><WillShowUI>OnError</WillShowUI><Disk wcm:action="add"><DiskID>0</DiskID><WillWipeDisk>true</WillWipeDisk><CreatePartitions><CreatePartition wcm:action="add"><Order>1</Order><Type>Primary</Type><Size>100</Size></CreatePartition><CreatePartition wcm:action="add"><Order>2</Order><Type>Primary</Type><Extend>true</Extend></CreatePartition></CreatePartitions><ModifyPartitions><ModifyPartition wcm:action="add"><Order>1</Order><PartitionID>1</PartitionID><Label>System</Label><Format>NTFS</Format><Active>true</Active></ModifyPartition><ModifyPartition wcm:action="add"><Order>2</Order><PartitionID>2</PartitionID><Letter>C</Letter><Label>SEVEN</Label><Format>NTFS</Format></ModifyPartition></ModifyPartitions></Disk></DiskConfiguration><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><DynamicUpdate><Enable>false</Enable><WillShowUI>Never</WillShowUI></DynamicUpdate><ImageInstall><OSImage><InstallTo><DiskID>0</DiskID><PartitionID>2</PartitionID></InstallTo><WillShowUI>OnError</WillShowUI><InstallToAvailablePartition>false</InstallToAvailablePartition></OSImage></ImageInstall><UserData><AcceptEula>true</AcceptEula><FullName>Arthur Bolomey</FullName><Organization>particulier</Organization></UserData><EnableFirewall>true</EnableFirewall></component></settings><settings pass="specialize"><component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SkipAutoActivation>true</SkipAutoActivation></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe Standard Time</TimeZone></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ComputerName>Se7en</ComputerName><TimeZone>W. Europe Standard Time</TimeZone></component><component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>High</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component><component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><DisableOOBAccelerators>true</DisableOOBAccelerators><DisableFirstRunWizard>true</DisableFirstRunWizard><EnableLinksBar>false</EnableLinksBar><FilterLevel>Medium</FilterLevel><Home_Page>http://www.google.ch</Home_Page><BlockPopups>yes</BlockPopups><SuggestedSitesEnabled>false</SuggestedSitesEnabled><PlaySound>True</PlaySound><ShowInformationBar>true</ShowInformationBar><ShowMenuBar>true</ShowMenuBar></component></settings><settings pass="oobeSystem"><component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><InputLocale>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</UserLocale></component><component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><InputLocale>100c:0000100c</InputLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-CH</UserLocale></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><TimeZone>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component><component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><TimeZone>W. Europe Standard Time</TimeZone><RegisteredOwner>Arthur Bolomey</RegisteredOwner><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution><RefreshRate>60</RefreshRate></Display><OOBE><HideEULAPage>true</HideEULAPage><HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE><NetworkLocation>Home</NetworkLocation><ProtectYourPC>1</ProtectYourPC></OOBE><AutoLogon><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><Enabled>true</Enabled><LogonCount>9999999</LogonCount><Username>Arthur</Username></AutoLogon><UserAccounts><LocalAccounts><LocalAccount wcm:action="add"><Password><Value>yxcvbnm</Value><PlainText>true</PlainText></Password><DisplayName>Arthur</DisplayName><Name>Arthur</Name><Group>Administrators</Group></LocalAccount></LocalAccounts></UserAccounts></component></settings></unattend><!--Customized by myselfidem. For Windows 7 AIO. One partition and 1 Aministrator. All keys must be already integrated. Adapt the values to your needs-->


    C - Autounattend.xml AIO [with only One install.wim and 2 images (using indexes)]

    <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"><settings pass="windowsPE"><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</UserLocale></component><component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SetupUILanguage><UILanguage>fr-FR</UILanguage></SetupUILanguage><InputLocale>040c:0000040c</InputLocale><SystemLocale>fr-FR</SystemLocale><UILanguage>fr-FR</UILanguage><UserLocale>fr-FR</UserLocale></component><component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>1</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component><component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><UserData><ProductKey><WillShowUI>OnError</WillShowUI><Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key></ProductKey><AcceptEula>true</AcceptEula><FullName>Robin Turtle</FullName><Organization>private</Organization></UserData><DiskConfiguration><WillShowUI>Always</WillShowUI></DiskConfiguration><ImageInstall><OSImage><WillShowUI>OnError</WillShowUI><InstallFrom><MetaData wcm:action="add"><Key>/IMAGE/INDEX</Key><Value>2</Value></MetaData></InstallFrom></OSImage></ImageInstall><Display><ColorDepth>32</ColorDepth><HorizontalResolution>1280</HorizontalResolution><VerticalResolution>1024</VerticalResolution></Display></component></settings>.......

    You can download the folder SetProductKey.rar (fr-FR/en-US) containing more examples and a useful batch file to integrate the keys, here:

    http://www.mediafire.../?uss84mzbqo91q

    Note: Always check your new Autounattend.xml file with WSIM to see if errors!

    Useful information:
    http://technet.microsoft.com/en-us/library/dd744261(WS.10).aspx

    *Edit: Thanks to report errors if you have.
  25. Like
    bphlpt reacted to Legolash2o in The Little Things   
    Done the majority of those, not going to do the last one as that requires going through all the pages. However the tab problem effects you badly in the future, feel free to mentioned it in here
    I won't do it unless specified, because i'm lazy and i've got work soon
    However i will fix the hotkeys for AIO (where you can press Ctrl+a for select all, etc..)
×
×
  • Create New...