Jump to content

chon_

Member
  • Posts

    175
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Mexico

About chon_

  • Birthday 09/19/1973

Profile Information

  • OS
    Windows 8.1 x64

Recent Profile Visitors

1,974 profile views

chon_'s Achievements

0

Reputation

  1. HI HAs anyone succesfully accomplished this task? I tried a lot of times, I always get the following error: Error in: C:\WINDOWS\SYSTEM32\iedkcs32.dll Entry Missing: BrandIEActiveSetupAnd it won't install, tried everythng, i don't know what to do next....
  2. you need a reboot between IE7 and kb947864
  3. @Atheros Trying it now, in pass 7... I'll let you know
  4. Thanks regarding the CMDOW tool, I don't like it that much, so does my antivirus and prevents it form running, hence, it causes an error Thanks for the MSIEXEC /I tip maxXPsoft, I'll try it tonight BTW, I noticed that the error occurs only when the command line has spaces, for example, the following line does NOT cuase any trouble: %CDROM%\Install\nero\INSTALL.CMDbut, as you can see it has no spaces in it, in the other hand, the following line DOES cuase a problem: :%CDROM%\Install\Office2007\setup.exe /adminfile CUSTOM.MSPnote the blank space between setup.exe and /adminfile and between adminfile and custom.msp.
  5. I need to create a new user named Propietario with WSIM that is a member of the Administrators group and set it to autologon (in order to hide te Adminstrator account) after I installed my apps in Pass 6 Audit User. I've been messing around with it but I can`t get it to work What can I do??? The way I did it in XP was running the following CMD file: net user Propietario /add net localgroup Administradores Propietario /add net accounts /maxpwage:unlimited reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserName" /d "Propietario" /f reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultPassword" /d "" /f rem reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /d "1" /fThis worked OK in XP, but seems like it doesn't work in vista (I've been running this cmd file in Pass 6 too). Thanks in advance
  6. I've been following FireGeier's guide to unattended vista (it's awesome BTW, congrats! ), everything works OK, but I have a doubt: in his guide he mentions that the Synchronous Commands in Pass 6 auditUser must have the comand CMD/ C (wich calls vista's command line interpreter) preceding the actual command for installing the application; for example: cmd /c %AppsRoot%\Install\AcrRead\AcroRead.msi /qb I tried to install some apps without the CMD /C instruction but the setup fails and quits. If I use the CMD /C command everything works OK. The only problem is that CMD /C opens (of course) a black command window, which I don't like. Is there any way to avoid CMD /C in the syntax? This issue is merely cosmetic, as I said, everything works fine, but I don't like black command windows open.
  7. removable media (USB, Floppy), root of your DVD (n that order)
  8. I got spanish version DVDs, that's why my installations are in spanish, it is not multilanguage (although it can be done the same way, you just need the .WIM files for each language)
  9. @gjs1992 ENTERPRISE version of vista is NOT included in the retail or OEM DVDs, as it's a "special" version sold only via specific channels to enterprise customers. That's why you won't find this version in a "standard" DVD; hence it has no corresponding numer in the WIM image. In fact, if you want to add this version to your proyect, you'll need two DVDs: one "standard" DVD, and the enterprise DVD, this will leave you with two WIM file to work with
  10. @orbit30 sorry, my mistake There's an "extra" space in the code line, is now corrected, the correct syntax should be: oscdimg -n -bD:\VistaAIO\distribucion\boot\etfsboot.com D:\VistaAIO\distribucion D:\VISTA_AIO.iso -m Sorry for the inconvinience
  11. @batson0974 Yes, the procedure is correct. All the files needed for setup are inside the .WIM files, remember that WIM stands for Windows Imaging Format, this is why you only need this file. So, if you export from your x86 install.WIM file, you're exporting all the files needed for the x86 setup. In the other hand, if you export from your install.wim file located in your x64 DVD, you are exporting the x64 needed files. As for the other files on the DVD, (like boot sector, etc) are common in both DVDs. Remember: what we're doing here is exporting from two image files(x86 and x64 Install.wim) to only one "big" install.wim file.
  12. Well, seeing how little information is around in the net about this topic and seeing there's some interest in this topic I decided to write this little guide to accomplish this task. Hope it helps. chon's guide to Windows Vista x86 and x64 Versions in one DVD NOTE: I'll be using my x64 and x86 MSDN DVDs, you can use the ones you have (retail, etc.), the procedure is the same. 1. Please download and install the Windows Automated Installation Kit (AIK) from here 2. Please create a working folder with a structure similar to this. Obviously you can change folder names according to your needs In this case, i'll be using the following folder: D:\VistaAIO. My folder structure is as follows: 3. Now, copy all the contents of your x86 DVD to the distribuition folder, in this case D:\VistaAIO\Distribucion 4. Move the file named “install.wim†from D:\VistaAIO\Distribucion\Sources to D:\VistaAIO\x86 5. Copy the file named “install.wim†from the Sources folder of your x64 DVD to the folder D:\VistaAIO\x64 6. Delete al .clg files from your distribution folder (D:\VistaAIO\Distribucion) 7. Now, with admin rights, open the Windows PE Tools Command prompt (click in Start/All programs/Microsoft Windows AIK) 8. We change directory to our working folder: CD D:\VistaAIO\Distribucion\Sources 9. OK, here's the tricky part. We are now about to export the images of each windows version to a single .WIM image file. The command to do this is IMAGEX.EXE. The syntax is as follows: imagex /export SourceImageToExport.wim SourceNumber DestinationImageFile.wim "Name of the Operating System" For example: imagex /export D:\VistaAIO\x86\install.wim 1 .\install.wim "Windows Vista Business x86" imagex /export D:\VistaAIO\x64\install.wim 1 .\install.wim "Windows Vista Business x64" This is what the first line of code does: export Version 1 of the source image file named Install.wim located in the folder D:\VistaAIO\x86 to the destination image file named Install.wim located in D:\VistaAIO\Distribucion. The number 1 corresponds to the Business edition of Windows, take a look at the following table, for the SourceNumber and its corresponding Windows Edition: Number Windows Edition 1 Business 2 Home Basic 3 Home Premium 4 Ultimate 5 Home Basic N 6 Business N 7 Starter Thus, for example if we wanted to add the 64bit Ultimate version of Windows Vista to our newly created image we type the following command: imagex /export D:\VistaAIO\x64\install.wim 4 .\install.wim "Windows Vista Ultimate x64" Please note that we only changed the number 1 for the number 4 (wich corresponds to the Ultimate version) and the name we give to the Windows Edition, for this name you can type whatever you coinsider a descriptive name of the windows version, everything else in the syntax remains the same. You can add as many Windows Editions as you want this way. If you have any doubts regarding the imagex command, you can type the following line in the command prompt at any time: imagex /export /? 10. Now that we've created our .WIM image file, let's create our ISO image file to make it ready to burn it to a DVD. To do this, still in the Windows PE Tools command prompt window, we type: oscdimg -n -bD:\VistaAIO\distribucion\boot\etfsboot.com D:\VistaAIO\distribucion D:\VISTA_AIO.iso -m This will create an ISO file named VISTA_AIO.iso in D:\ 11. We're almost done! We can now burn this image with our favorite burning software (Nero, alcohol. Etc). That's all!!! Hope you find it useful! Let me know any comments/doubts
  13. Yes, it is possible. I've posted a little guide in another forum, but it's in spanish, i'm working on the translation now, i'll post it here within today.
  14. Weird.... Indeed, i've found that IE deletes the FLAG entry for RunOnceEx2, but it does not delete the other entries (where you put the hotfixes commands), so, although it deletes the FLAG entry, it stills executes the commands. We're doing something different here. Later today I'll check your files step by step and make some tests in virtualpc with them, i'll let you know.
  15. @rajesh.kumar Attached you'll find two files, one is named New_RunOnceEx.cmd the other is New_RunOnceEx2.cmd. Please rename New_RunOnceEx.cmd to RunOnceEx.cmd and use it in your testings as your main RunOnceEx batch file. Place New_RunOnceEx2.cmd accordingly (where original RunOnceEx2.cmd resides). I think this two files will accomplish all the tasks that you're working on. These are modified versions of CMD files based on your work. Let me know how it goes NewRunOnceExesFor_rajesh.kumar.rar
×
×
  • Create New...