Jump to content

kmaheshkumar

Member
  • Posts

    134
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    India

Posts posted by kmaheshkumar

  1. Earlier I tried to service the WIM files in ISO images downloaded using Media Creation Tool but those wim files cant be mounted using DISM so i just used the ISO from MSDN and done my things

     

    @octopuss There is a script to convert ESD to ISO try that first

     

    Recently I started creating Unattended installation without modifying the ISO and I got succeeded but i just creating the answer file and mounting to VM with another iso all is done with a own C# application with using small open source libraries from codeplex(DiscUtils) 

  2. @cdob

    Thanks for providing so much information the way you explained is very useful for everyone.

     

    i had did the all above things when the Windows 10 is released but I just stopped to create a single ISO for x86 and x64 because of boot base and SXS folders are not same for both as you said I can create both x86 and x64 seperately, but i just waiting for the thing for the single wim or esd to install for x86 and x64.

     

    Recently I started working on the thing to creating Silent Installer for VM's and i am succeeded on that while i am using individual ISO for every type.  I wrote small C# code for extracting the iso and making the iso after my changes done.

     

    I just waiting for the thing for a single boot base and single SXS folder to implement i dont think it is possible.

  3. i tried to make all windows 10 to a single iso file but i stopped it that the boot base is not same for x86 and x64 still we can try that by just using the boot base of iso(x86 and x64) downloaded using Media Creation Tool of Microsoft but dont know how it works.

     

    there are much difference in both boot bases example sxs folder of x86 and x64 are not same we cant install .Net FrameWork using one to another as the same way we cant keep both in a single folder because they both will have same file name.

  4. this thing is working

    <CommandLine>cmd /c FOR %i IN (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:\Settings.cmd Start %i:\Settings.cmd</CommandLine>

     

    instead of set CDROM start a batch file from there itself and change the driveletter using wmic in batch so we can assign runonce with that drive letter and it works perfectly

     

    if we changed the driveletter using wmic for the same drive where script is there it will work on the same drive letter until next restart

  5. i want to make a new type of installation procedure for my work but i got stopped that my work place is allowing me to modify the iso files 

     

    so i can only do unattended installation and setting by using firstlogoncommands

     

    i made some script to do work but everytime my dvddrive wont be with same name

     

    I need small help on command line for firstlogoncommands

     

    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:\sources\sxs" set CDROM=%i:

     

    the above command works but is there any possibility that i can start a batch file from the same line?

     

    if it is possible i can do all my work without changing any iso files

  6. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

     

    This is used to run on every logon just like startup item

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]

    but this is used for run only once on next logon but not every time

     

    i never given any command in my answer file i just make a self deletable .cmd file and i use the path of it to run 

×
×
  • Create New...