• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    windows iso editing

    Scheduled Pinned Locked Moved Unsolved
    Windows Problems
    3
    3
    454
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      enginbey8108
      last edited by

      Friends, how can I make unattended xml myself, I have a bat file, xml to save in my windows iso.

      george1421G Y 2 Replies Last reply Reply Quote 0
      • george1421G
        george1421 Moderator @enginbey8108
        last edited by

        @enginbey8108 If you don’t have an unattend.xml file to start with you can always use an online generator to give you an initial configuration file. You can use the one here: https://www.windowsafg.com/win10x86_x64_uefi.html

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

        1 Reply Last reply Reply Quote 0
        • Y
          youzersef @enginbey8108
          last edited by youzersef

          @enginbey8108

          this is my file which i use:

          <!--*************************************************
          Windows 10 Answer File Generator
          Created using Windows AFG found at:
          ;http://www.windowsafg.com
           
          Installation Notes
          Location: 
          Notes: Enter your comments here...
          **************************************************-->
          <?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="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>de-DE</UILanguage>
          			</SetupUILanguage>
          			<InputLocale>0407:00000407</InputLocale>
          			<SystemLocale>de-DE</SystemLocale>
          			<UILanguage>de-DE</UILanguage>
          			<UILanguageFallback>de-DE</UILanguageFallback>
          			<UserLocale>de-DE</UserLocale>
          		</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">
          			<FirstLogonCommands>
          				<SynchronousCommand wcm:action="add">
          					<CommandLine>cmd /c C:\Windows\Setup\scripts\UserFirstLogon.cmd</CommandLine>
          					<Description>Description_of_command2</Description>
          					<Order>1</Order>
          				</SynchronousCommand>
          			</FirstLogonCommands>
          		</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">
          			<DiskConfiguration>
          				<Disk wcm:action="add">
          					<DiskID>0</DiskID>
          					<WillWipeDisk>true</WillWipeDisk>
          					<CreatePartitions>
          						<!-- Windows RE Tools partition -->
          						<CreatePartition wcm:action="add">
          							<Order>1</Order>
          							<Type>Primary</Type>
          							<Size>300</Size>
          						</CreatePartition>
          						<!-- System partition (ESP) -->
          						<CreatePartition wcm:action="add">
          							<Order>2</Order>
          							<Type>EFI</Type>
          							<Size>100</Size>
          						</CreatePartition>
          						<!-- Microsoft reserved partition (MSR) -->
          						<CreatePartition wcm:action="add">
          							<Order>3</Order>
          							<Type>MSR</Type>
          							<Size>128</Size>
          						</CreatePartition>
          						<!-- Windows partition -->
          						<CreatePartition wcm:action="add">
          							<Order>4</Order>
          							<Type>Primary</Type>
          							<Extend>true</Extend>
          						</CreatePartition>
          					</CreatePartitions>
          					<ModifyPartitions>
          						<!-- Windows RE Tools partition -->
          						<ModifyPartition wcm:action="add">
          							<Order>1</Order>
          							<PartitionID>1</PartitionID>
          							<Label>WINRE</Label>
          							<Format>NTFS</Format>
          							<TypeID>DE94BBA4-06D1-4D40-A16A-BFD50179D6AC</TypeID>
          						</ModifyPartition>
          						<!-- System partition (ESP) -->
          						<ModifyPartition wcm:action="add">
          							<Order>2</Order>
          							<PartitionID>2</PartitionID>
          							<Label>System</Label>
          							<Format>FAT32</Format>
          						</ModifyPartition>
          						<!-- MSR partition does not need to be modified -->
          						<ModifyPartition wcm:action="add">
          							<Order>3</Order>
          							<PartitionID>3</PartitionID>
          						</ModifyPartition>
          						<!-- Windows partition -->
          						<ModifyPartition wcm:action="add">
          							<Order>4</Order>
          							<PartitionID>4</PartitionID>
          							<Label>OS</Label>
          							<Letter>C</Letter>
          							<Format>NTFS</Format>
          						</ModifyPartition>
          					</ModifyPartitions>
          				</Disk>
          			</DiskConfiguration>
          			<ImageInstall>
          				<OSImage>
          					<InstallTo>
          						<DiskID>0</DiskID>
          						<PartitionID>4</PartitionID>
          					</InstallTo>
          					<InstallToAvailablePartition>false</InstallToAvailablePartition>
          				</OSImage>
          			</ImageInstall>
          			<UserData>
          				<ProductKey>
          					<!-- Do not uncomment the Key element if you are using trial ISOs -->
          					<!-- You must uncomment the Key element (and optionally insert your own key) if you are using retail or volume license ISOs -->
          					<Key></Key>
          					<WillShowUI>Never</WillShowUI>
          				</ProductKey>
          				<AcceptEula>true</AcceptEula>
          				<FullName>administrator</FullName>
          				<Organization></Organization>
          			</UserData>
          		</component>
          	</settings>
          	<settings pass="offlineServicing">
          		<component name="Microsoft-Windows-LUA-Settings" 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">
                                  <DriverPaths>
                                      <PathAndCredentials wcm:action="add" wcm:keyValue="1">
                                      <Path>C:\Drivers</Path>
                                      </PathAndCredentials>
                                  </DriverPaths>
          			<EnableLUA>false</EnableLUA>
          		</component>
          	</settings>
          	<settings pass="generalize">
          		<component name="Microsoft-Windows-Security-SPP" 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">
          			<SkipRearm>1</SkipRearm>
          		</component>
          	</settings>
          	<settings pass="specialize">
          		<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>0407:00000407</InputLocale>
          			<SystemLocale>de-DE</SystemLocale>
          			<UILanguage>de-DE</UILanguage>
          			<UILanguageFallback>de-DE</UILanguageFallback>
          			<UserLocale>de-DE</UserLocale>
          		</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-SQMApi" 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">
          			<CEIPEnabled>0</CEIPEnabled>
          		</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">
                                  <CopyProfile>true</CopyProfile>
          		</component>
          	</settings>
          	<settings pass="oobeSystem">
          		<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">
          			<AutoLogon>
          				<Password>
          					<Value>010Filer</Value>
          					<PlainText>true</PlainText>
          				</Password>
          				<Enabled>true</Enabled>
          				<LogonCount>1</LogonCount>
          				<Username>administrator</Username>
          			</AutoLogon>
          			<OOBE>
          				<HideEULAPage>true</HideEULAPage>
          				<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
          				<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
          				<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
          				<NetworkLocation>Work</NetworkLocation>
          				<SkipUserOOBE>true</SkipUserOOBE>
          				<SkipMachineOOBE>true</SkipMachineOOBE>
          				<ProtectYourPC>1</ProtectYourPC>
          			</OOBE>
          			<UserAccounts>
          				<LocalAccounts>
          					<LocalAccount wcm:action="add">
          						<Password>
          							<Value>Start123!</Value>
          							<PlainText>true</PlainText>
          						</Password>
          						<Description></Description>
          						<DisplayName>administrator</DisplayName>
          						<Group>Administrators</Group>
          						<Name>administrator</Name>
          					</LocalAccount>
          				</LocalAccounts>
          			</UserAccounts>
          			<RegisteredOrganization></RegisteredOrganization>
          			<RegisteredOwner>administrator</RegisteredOwner>
          			<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
          			<FirstLogonCommands>
          				<SynchronousCommand wcm:action="add">
          					<Description>Control Panel View</Description>
          					<Order>1</Order>
          					<CommandLine>reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v StartupPage /t REG_DWORD /d 1 /f</CommandLine>
          					<RequiresUserInput>true</RequiresUserInput>
          				</SynchronousCommand>
          				<SynchronousCommand wcm:action="add">
          					<Order>2</Order>
          					<Description>Control Panel Icon Size</Description>
          					<RequiresUserInput>false</RequiresUserInput>
          					<CommandLine>reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v AllItemsIconView /t REG_DWORD /d 0 /f</CommandLine>
          				</SynchronousCommand>
          				<SynchronousCommand wcm:action="add">
          					<Order>3</Order>
          					<RequiresUserInput>false</RequiresUserInput>
          					<CommandLine>cmd /C wmic useraccount where name="administrator" set PasswordExpires=false</CommandLine>
          					<Description>Password Never Expires</Description>
          				</SynchronousCommand>
          			</FirstLogonCommands>
          			<TimeZone>W. Europe Standard Time</TimeZone>
          		</component>
          	</settings>
          </unattend>
          

          The default password is “Start123!” you can change it. Remember you have to use StartScript. the first Login will be automaticly after that you should put the password

          1 Reply Last reply Reply Quote 1
          • 1 / 1
          • First post
            Last post

          265

          Online

          12.0k

          Users

          17.3k

          Topics

          155.2k

          Posts
          Copyright © 2012-2024 FOG Project