447 lines
25 KiB
Django/Jinja
447 lines
25 KiB
Django/Jinja
<?xml version="1.0" encoding="utf-8"?>
|
||
<unattend xmlns="urn:schemas-microsoft-com:unattend">
|
||
<settings pass="windowsPE">
|
||
<!-- look for drivers on floppy -->
|
||
<component name="Microsoft-Windows-PnpCustomizationsWinPE" 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:keyValue="1" wcm:action="add">
|
||
<Path>E:\</Path>
|
||
</PathAndCredentials>
|
||
</DriverPaths>
|
||
</component>
|
||
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<SetupUILanguage>
|
||
<UILanguage>en-US</UILanguage>
|
||
</SetupUILanguage>
|
||
<InputLocale>en-US</InputLocale>
|
||
<SystemLocale>en-US</SystemLocale>
|
||
<UILanguage>en-US</UILanguage>
|
||
<UILanguageFallback>en-US</UILanguageFallback>
|
||
<UserLocale>en-US</UserLocale>
|
||
</component>
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<DiskConfiguration>
|
||
<Disk wcm:action="add">
|
||
{% if template_vm_efi is undefined or not template_vm_efi|bool %}
|
||
<ModifyPartitions>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Active>true</Active>
|
||
<Format>NTFS</Format>
|
||
<Label>boot</Label>
|
||
<Order>1</Order>
|
||
<PartitionID>1</PartitionID>
|
||
</ModifyPartition>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Format>NTFS</Format>
|
||
<Label>{{ distro_name[0:31] }}</Label>
|
||
<Letter>C</Letter>
|
||
<Order>2</Order>
|
||
<PartitionID>2</PartitionID>
|
||
</ModifyPartition>
|
||
</ModifyPartitions>
|
||
<DiskID>0</DiskID>
|
||
<WillWipeDisk>true</WillWipeDisk>
|
||
<CreatePartitions>
|
||
<CreatePartition wcm:action="add">
|
||
<Type>Primary</Type>
|
||
<Order>1</Order>
|
||
<Size>350</Size>
|
||
</CreatePartition>
|
||
<CreatePartition wcm:action="add">
|
||
<Order>2</Order>
|
||
<Type>Primary</Type>
|
||
<Extend>true</Extend>
|
||
</CreatePartition>
|
||
</CreatePartitions>
|
||
{% else %}
|
||
<ModifyPartitions>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Order>1</Order>
|
||
<Format>NTFS</Format>
|
||
<PartitionID>1</PartitionID>
|
||
<Label>WINRE</Label>
|
||
<TypeID>de94bba4-06d1-4d40-a16a-bfd50179d6ac</TypeID>
|
||
</ModifyPartition>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Order>2</Order>
|
||
<Format>FAT32</Format>
|
||
<PartitionID>2</PartitionID>
|
||
<Label>System</Label>
|
||
</ModifyPartition>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Order>3</Order>
|
||
<PartitionID>3</PartitionID>
|
||
</ModifyPartition>
|
||
<ModifyPartition wcm:action="modify">
|
||
<Format>NTFS</Format>
|
||
<Letter>C</Letter>
|
||
<Order>4</Order>
|
||
<PartitionID>4</PartitionID>
|
||
<Label>{{ distro_name[0:31] }}</Label>
|
||
</ModifyPartition>
|
||
</ModifyPartitions>
|
||
<DiskID>0</DiskID>
|
||
<WillWipeDisk>true</WillWipeDisk>
|
||
<CreatePartitions>
|
||
<CreatePartition wcm:action="add">
|
||
<Order>1</Order>
|
||
<Type>Primary</Type>
|
||
<Size>300</Size>
|
||
</CreatePartition>
|
||
<CreatePartition wcm:action="add">
|
||
<Order>2</Order>
|
||
<Type>EFI</Type>
|
||
<Size>100</Size>
|
||
</CreatePartition>
|
||
<CreatePartition wcm:action="add">
|
||
<Order>3</Order>
|
||
<Type>MSR</Type>
|
||
<Size>128</Size>
|
||
</CreatePartition>
|
||
<CreatePartition wcm:action="add">
|
||
<Order>4</Order>
|
||
<Type>Primary</Type>
|
||
<Extend>true</Extend>
|
||
</CreatePartition>
|
||
</CreatePartitions>
|
||
{% endif %}
|
||
</Disk>
|
||
</DiskConfiguration>
|
||
<ImageInstall>
|
||
<OSImage>
|
||
<InstallFrom>
|
||
<MetaData wcm:action="add">
|
||
<Key>/IMAGE/INDEX </Key>
|
||
<Value>{{ iso_image_index }}</Value>
|
||
</MetaData>
|
||
</InstallFrom>
|
||
<InstallTo>
|
||
<DiskID>0</DiskID>
|
||
{% if template_vm_efi is undefined or not template_vm_efi|bool %}
|
||
<PartitionID>2</PartitionID>
|
||
{% else %}
|
||
<PartitionID>4</PartitionID>
|
||
{% endif %}
|
||
</InstallTo>
|
||
</OSImage>
|
||
</ImageInstall>
|
||
<UserData>
|
||
<AcceptEula>true</AcceptEula>
|
||
<FullName>Ansible</FullName>
|
||
<Organization>Your Org.</Organization>
|
||
<ProductKey>
|
||
{% if unattend.product_key is defined and unattend.product_key|length %}
|
||
<Key>{{ unattend.product_key | trim }}</Key>
|
||
{% endif %}
|
||
<WillShowUI>Never</WillShowUI>
|
||
</ProductKey>
|
||
</UserData>
|
||
</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>
|
||
<component name="Microsoft-Windows-PnpSysprep" 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">
|
||
<PersistAllDeviceInstalls>false</PersistAllDeviceInstalls>
|
||
<DoNotCleanUpNonPresentDevices>false</DoNotCleanUpNonPresentDevices>
|
||
</component>
|
||
</settings>
|
||
<settings pass="oobeSystem">
|
||
<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>en-US</InputLocale>
|
||
<SystemLocale>en-US</SystemLocale>
|
||
<UILanguage>en-US</UILanguage>
|
||
<UserLocale>en-US</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">
|
||
<OOBE>
|
||
<HideEULAPage>true</HideEULAPage>
|
||
{% if not '2008' in distro_name %}
|
||
<HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
|
||
<HideOnlineAccountScreens>true</HideOnlineAccountScreens>
|
||
<HideLocalAccountScreen>true</HideLocalAccountScreen>
|
||
{% endif %}
|
||
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
|
||
<NetworkLocation>Home</NetworkLocation>
|
||
<ProtectYourPC>1</ProtectYourPC>
|
||
</OOBE>
|
||
<TimeZone>{{ settings.time_zone | default('UTC') }}</TimeZone>
|
||
<UserAccounts>
|
||
{% if unattend.administrator_password is defined %}
|
||
<AdministratorPassword>
|
||
<Value>{{ unattend.administrator_password }}</Value>
|
||
<PlainText>true</PlainText>
|
||
</AdministratorPassword>
|
||
{% endif %}
|
||
{% if unattend.local_accounts is defined %}
|
||
<LocalAccounts>
|
||
{% for local_account in unattend.local_accounts %}
|
||
<LocalAccount wcm:action="add">
|
||
{% if local_account.password is defined %}
|
||
<Password>
|
||
<Value>{{ local_account.password }}</Value>
|
||
<PlainText>true</PlainText>
|
||
</Password>
|
||
{% endif %}
|
||
{% if local_account.description is defined %}
|
||
<Description>{{ local_account.description }}</Description>
|
||
{% endif %}
|
||
{% if local_account.display_name is defined %}
|
||
<DisplayName>{{ local_account.display_name }}</DisplayName>
|
||
{% endif %}
|
||
{% if local_account.group is defined %}
|
||
<Group>{{ local_account.group }}</Group>
|
||
{% endif %}
|
||
{% if local_account.name is defined %}
|
||
<Name>{{ local_account.name }}</Name>
|
||
{% endif %}
|
||
</LocalAccount>
|
||
{% endfor %}
|
||
</LocalAccounts>
|
||
{% endif %}
|
||
</UserAccounts>
|
||
{% if enable_auto_logon and unattend.local_accounts and unattend.local_accounts[0].name and unattend.local_accounts[0].password %}
|
||
<AutoLogon>
|
||
<Password>
|
||
<Value>{{ unattend.local_accounts[0].password }}</Value>
|
||
<PlainText>true</PlainText>
|
||
</Password>
|
||
<Username>{{ unattend.local_accounts[0].name }}</Username>
|
||
<Enabled>true</Enabled>
|
||
</AutoLogon>
|
||
{% endif %}
|
||
<FirstLogonCommands>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force"</CommandLine>
|
||
<Description>Set Execution Policy 64 Bit</Description>
|
||
<Order>1</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% if not '2008' in distro_name %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "Set-NetConnectionProfile -NetworkCategory Private"</CommandLine>
|
||
<Description>Set network connection profile to private</Description>
|
||
<Order>2</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% else %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell –EncodedCommand {{ set_network_to_private | b64encode(encoding='utf-16-le') }}</CommandLine>
|
||
<Description>Set network connection profile to private</Description>
|
||
<Order>2</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm quickconfig -q</CommandLine>
|
||
<Description>winrm quickconfig -q</Description>
|
||
<Order>4</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm quickconfig -transport:http</CommandLine>
|
||
<Description>winrm quickconfig -transport:http</Description>
|
||
<Order>5</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config @{MaxTimeoutms="1800000"}</CommandLine>
|
||
<Description>Win RM MaxTimoutms</Description>
|
||
<Order>6</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config/winrs @{MaxMemoryPerShellMB="800"}</CommandLine>
|
||
<Description>Win RM MaxMemoryPerShellMB</Description>
|
||
<Order>7</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config/service @{AllowUnencrypted="true"}</CommandLine>
|
||
<Description>Win RM AllowUnencrypted</Description>
|
||
<Order>8</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config/service/auth @{Basic="true"}</CommandLine>
|
||
<Description>Win RM auth Basic</Description>
|
||
<Order>9</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config/client/auth @{Basic="true"}</CommandLine>
|
||
<Description>Win RM client auth Basic</Description>
|
||
<Order>10</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c winrm set winrm/config/listener?Address=*+Transport=HTTP @{Port="5985"} </CommandLine>
|
||
<Description>Win RM listener Address/Port</Description>
|
||
<Order>11</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c netsh firewall add portopening TCP 5985 "Port 5985"</CommandLine>
|
||
<Description>Win RM port open</Description>
|
||
<Order>12</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c net stop winrm</CommandLine>
|
||
<Description>Stop Win RM Service </Description>
|
||
<Order>13</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c sc config winrm start= auto</CommandLine>
|
||
<Description>Win RM Autostart</Description>
|
||
<Order>14</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c net start winrm</CommandLine>
|
||
<Description>Start Win RM Service</Description>
|
||
<Order>15</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c dism /online /enable-feature /featurename:NetFx2-ServerCore</CommandLine>
|
||
<Description>Enable NetFx2-ServerCore feature</Description>
|
||
<Order>16</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c dism /online /enable-feature /featurename:NetFx2-ServerCore-WOW64</CommandLine>
|
||
<Description>Enable NetFx2-ServerCore feature</Description>
|
||
<Order>17</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c dism /online /enable-feature /featurename:MicrosoftWindowsPowerShell</CommandLine>
|
||
<Description>Enable MicrosoftWindowsPowerShell feature</Description>
|
||
<Order>18</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c dism /online /enable-feature /featurename:ServerManager-PSH-Cmdlets</CommandLine>
|
||
<Description>Enable ServerManager-PSH-Cmdlets feature</Description>
|
||
<Order>19</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% endif %}
|
||
{% if '2016' in distro_name %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SchUseStrongCrypto /t REG_DWORD /d 1 /reg:64 /f</CommandLine>
|
||
<Description>Configure security protocol</Description>
|
||
<Order>19</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% endif %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -ExecutionPolicy ByPass -File E:\ConfigureRemotingForAnsible.ps1 -ForceNewSSLCert -EnableCredSSP</CommandLine>
|
||
<Description>Enable winrm</Description>
|
||
<Order>20</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "Enable-WSManCredSSP -Role Server -Force"</CommandLine>
|
||
<Description>Enable winrm server role</Description>
|
||
<Order>21</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "Set-Item -Path 'WSMan:\localhost\Service\Auth\CredSSP' -Value $true"</CommandLine>
|
||
<Description>Enable credssp authentication</Description>
|
||
<Order>22</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% if template.networks is defined and template.networks[0].ip is defined and template.networks[0].gateway is defined and template.networks[0].netmask is defined %}
|
||
{% if not '2008' in distro_name %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "New-NetIPAddress –IPAddress {{ template.networks[0].ip }} -DefaultGateway {{ template.networks[0].gateway }} -PrefixLength {{ (template.networks[0].ip + '/' + template.networks[0].netmask) | ipaddr('prefix') }} -InterfaceIndex (Get-NetAdapter).InterfaceIndex"</CommandLine>
|
||
<Description>Set static ip</Description>
|
||
<Order>50</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% else %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c netsh int ipv4 set address "Local Area connection" static {{ template.networks[0].ip }} {{ template.networks[0].netmask }} {{ template.networks[0].gateway }}</CommandLine>
|
||
<Description>Set static ip</Description>
|
||
<Order>50</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% endif %}
|
||
{% if template.networks[0].dns_servers is defined %}
|
||
{% if not '2008' in distro_name %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c powershell -Command "Set-DNSClientServerAddress –InterfaceIndex (Get-NetAdapter).InterfaceIndex –ServerAddresses {{ template.networks[0].dns_servers|join(',') }}"</CommandLine>
|
||
<Description>Set static ip</Description>
|
||
<Order>51</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% else %}
|
||
<SynchronousCommand wcm:action="add">
|
||
<CommandLine>cmd.exe /c netsh int ipv4 set dns "Local Area connection" static {{ template.networks[0].dns_servers[0] }}</CommandLine>
|
||
<Description>Set static ip</Description>
|
||
<Order>51</Order>
|
||
<RequiresUserInput>true</RequiresUserInput>
|
||
</SynchronousCommand>
|
||
{% endif %}
|
||
{% endif %}
|
||
{% endif %}
|
||
</FirstLogonCommands>
|
||
</component>
|
||
</settings>
|
||
<settings pass="specialize">
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-ServerManager-SvrMgrNc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<DoNotOpenServerManagerAtLogon>true</DoNotOpenServerManagerAtLogon>
|
||
</component>
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-IE-ESC" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<IEHardenAdmin>false</IEHardenAdmin>
|
||
<IEHardenUser>false</IEHardenUser>
|
||
</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">
|
||
<SearchScopes>
|
||
<Scope wcm:action="add">
|
||
<ScopeDefault>true</ScopeDefault>
|
||
<ScopeDisplayName>Google</ScopeDisplayName>
|
||
<ScopeKey>Google</ScopeKey>
|
||
<ScopeUrl>http://www.google.com/search?q={searchTerms}</ScopeUrl>
|
||
</Scope>
|
||
</SearchScopes>
|
||
<DisableAccelerators>true</DisableAccelerators>
|
||
<DisableFirstRunWizard>true</DisableFirstRunWizard>
|
||
<Home_Page>about:blank</Home_Page>
|
||
</component>
|
||
<component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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">
|
||
<fDenyTSConnections>false</fDenyTSConnections>
|
||
</component>
|
||
<component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" 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">
|
||
<UserAuthentication>0</UserAuthentication>
|
||
</component>
|
||
<component name="Networking-MPSSVC-Svc" 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">
|
||
<FirewallGroups>
|
||
<FirewallGroup wcm:action="add" wcm:keyValue="RemoteDesktop">
|
||
<Active>true</Active>
|
||
<Group>Remote Desktop</Group>
|
||
<Profile>all</Profile>
|
||
</FirewallGroup>
|
||
</FirewallGroups>
|
||
</component>
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-OutOfBoxExperience" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<DoNotOpenInitialConfigurationTasksAtLogon>true</DoNotOpenInitialConfigurationTasksAtLogon>
|
||
</component>
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<SkipAutoActivation>{{ settings.skip_auto_activation | default('true') }}</SkipAutoActivation>
|
||
</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>*</ComputerName>
|
||
</component>
|
||
</settings>
|
||
<settings pass="offlineServicing">
|
||
<component xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
|
||
<EnableLUA>false</EnableLUA>
|
||
</component>
|
||
</settings>
|
||
</unattend> |