Problem bei Automatisierter Installation von Win 7 64bit

Antworten
Medevil
Beiträge: 3
Registriert: 13 Apr 2018, 08:47

Problem bei Automatisierter Installation von Win 7 64bit

Beitrag von Medevil »

Guten Tag,

Bisher konnte ich all meine Probleme durch das Handbuch oder durch andere Beiträge im Forum lösen, doch hier leider nicht.
Wie im Betreff geschrieben habe ich ein Problem bei der Automatisierten Installation von Windows 7 64bit.
Ich gehe davon aus, dass die unattend.xml Fehlerhaft ist. Denn der Client kommt soweit das er das Windows 7 setup startet,
jedoch muss ab hier vom User die Version ausgewählt werden und ab hier geschieht dann alles manuell.

Hier die unattend.xml

Code: Alles auswählen

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
	<!--
	====================
	WINDOWSPE SETTINGS
	====================
	The windowsPE configuration pass is used to configure settings specific to Windows PE as well as settings that apply to installation.
	For example, you can specify the display resolution of Windows PE, where to save a log file, and other Windows PE-related settings.
	-->
	<settings pass="windowsPE">
		<!--
		<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>c:\drvpe</Path>
				</PathAndCredentials>
			</DriverPaths>
		</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>
				<WillShowUI>OnError</WillShowUI>
				<Disk wcm:action="add">
					<DiskID>0</DiskID>
					<WillWipeDisk>false</WillWipeDisk>
					
					<CreatePartitions>
						<CreatePartition wcm:action="add">
							<Order>1</Order>
							<Type>Primary</Type>
					<!--		
							<Size>20000</Size>
					-->		
						</CreatePartition>
					</CreatePartitions>
				
					<ModifyPartitions>
						<ModifyPartition wcm:action="add">
							<Format>NTFS</Format>
							<Label>System</Label>
						</ModifyPartition>	
					</ModifyPartitions>
				</Disk>
			</DiskConfiguration>
			<!--
			<component name="Microsoft-Windows-Deployment" 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">
				<RunSynchronous>
					<RunSynchronousCommand wcm:action="add">
						<Description>Do something</Description>
						<Order>1</Order>
						<Path>cmd.exe</Path>
					</RunSynchronousCommand>
				</RunSynchronous>
			</component>
			-->
			<UserData>
				<ProductKey>
					<WillShowUI>OnError</WillShowUI>
					<Key>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</Key> <!-- Kms client schlüsel -->
				</ProductKey>
				<AcceptEula>true</AcceptEula>
				<FullName>Administrator</FullName>
				<Organization>organisation</Organization>
			</UserData>
			<ImageInstall>
				<OSImage>
					<InstallFrom>
						<MetaData wcm:action="add">
							<Key>/IMAGE/NAME</Key>
							<Value>win7-x64</Value>
						</MetaData>
					</InstallFrom>
					<InstallTo>
						<DiskID>0</DiskID>
						<PartitionID>1</PartitionID>
					</InstallTo>
					<WillShowUI>OnError</WillShowUI>
				</OSImage>
			</ImageInstall>
		</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>de-DE</UILanguage>
				<WillShowUI>OnError</WillShowUI>
			</SetupUILanguage>
			<InputLocale>0407:00000407</InputLocale>
			<SystemLocale>de-DE</SystemLocale>
			<UILanguage>de-DE</UILanguage>
			<UILanguageFallback>en-US</UILanguageFallback>
			<UserLocale>de-DE</UserLocale>
			<LayeredDriver>1</LayeredDriver>
		</component>
	</settings>
	<!--
	=====================
	GENERALIZE SETTINGS
	=====================
	The generalize pass of Windows Setup is used to create a Windows reference image that can be used throughout an organization.
	A setting in the generalize pass enables you to automate the behavior for all deployments of this reference image.
	In comparison, a setting associated with the specialize configuration pass enables you to override behavior for a single, specific deployment.
	When a system is generalized, specific configuration data for a given installation of Windows is removed.
	For example, during the generalize pass, the unique security ID (SID) and other hardware-specific settings are removed from the image.
	The generalize configuration pass runs only when you use the sysprep /generalize command.
	Answer file settings in generalize are applied to the system before sysprep generalization occurs. The system then shuts down.
	-->
	<!--
	<settings pass="generalize">
	</settings>
	-->
	<!--
	=====================
	SPECIALIZE SETTINGS
	=====================
	During the specialize pass of Windows Setup, machine-specific information for the image is applied.
	For example, you can configure network settings, international settings, and domain information.
	The specialize pass is used in conjunction with the generalize pass.
	The generalize pass is used to create a Windows reference image that can be used throughout an organization.
	From this basic Windows reference image, you can add further customizations that apply to different divisions
	within an organization or apply to different installations of Windows.
	The specialize pass is used to apply these specific customizations.
	-->
	<settings pass="specialize">
		
		<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">
			<BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
			<ComputerName>Client</ComputerName>
			<!--  <ProductKey>#@productkey*#</ProductKey>  -->
			<CopyProfile>false</CopyProfile>
			<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
			<DoNotCleanTaskBar>false</DoNotCleanTaskBar>
			<ShowWindowsLive>false</ShowWindowsLive>
			<StartPanelOff>false</StartPanelOff>
			<TimeZone>W. Europe Standard Time</TimeZone>
			<WindowsFeatures>
				<ShowWindowsMail>false</ShowWindowsMail>
			</WindowsFeatures>
		</component>
		
		<component name="Microsoft-Windows-Security-Licensing-SLC-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-UnattendedJoin" 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">
			<Identification>
				<Credentials>
					<Domain>domain</Domain>
					<Password>password</Password>
					<Username>username</Username>
				</Credentials>
				<DebugJoin>true</DebugJoin>
				<JoinDomain>joindomain</JoinDomain>
				<JoinWorkgroup>joinworkgroup</JoinWorkgroup>
				<MachineObjectOU>machineobjectou</MachineObjectOU>
				<MachinePassword>machinepassword</MachinePassword>
				<UnsecureJoin>true</UnsecureJoin>
			</Identification>
		</component>
		-->
		
		<component name="Microsoft-Windows-RemoteAssistance-Exe" 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">
			<CreateEncryptedOnlyTickets>true</CreateEncryptedOnlyTickets>
			<fAllowToGetHelp>true</fAllowToGetHelp>
		</component>
		
		<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>de-DE</InputLocale>
			<SystemLocale>de-DE</SystemLocale>
			<UILanguage>de-DE</UILanguage>
			<UILanguageFallback>de-DE</UILanguageFallback>
			<UserLocale>de-DE</UserLocale>
		</component>
		
		<component name="Microsoft-Windows-Deployment" 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">
			<RunSynchronous>
				<RunSynchronousCommand wcm:action="add">
					<Description>Enable Admin Account</Description>
					<Order>1</Order>
					<Path>cmd.exe /c net user Administrator /active:yes</Path>
				</RunSynchronousCommand>
				<!--
				<RunSynchronousCommand wcm:action="add">
					<Description>Opsi tasks</Description>
					<Order>2</Order>
					<Path>cmd.exe /c #@winpe_partition_letter*#:\opsi\postinst.cmd</Path>
				</RunSynchronousCommand>
				-->
				<!--
				<RunSynchronousCommand wcm:action="add">
					<Description>EnableAdmin_ploc</Description>
					<Order>3</Order>
					<Path>cmd.exe /c net user Administrator_ploc /active:yes</Path>
				</RunSynchronousCommand>
				-->
			</RunSynchronous>
		</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">
			<DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
			<PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall>
			<PublicProfile_EnableFirewall>false</PublicProfile_EnableFirewall>
		</component>
		
		<component name="Security-Malware-Windows-Defender" 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">
			<DisableAntiSpyware>true</DisableAntiSpyware>
		</component>
		
	</settings>
	
	<!--
	=========================
	OFFLINESERVICING SETTINGS
	=========================
	Use the offlineServicing pass to apply unattended Setup settings to an offline Windows image.
	During this configuration pass, you can add language packs, updates, or other packages to the offline image.
	The offlineServicing pass runs during Windows Setup. Setup extracts and installs the Windows image, and then executes Package Manager (Pkgmgr.exe).
	Packages listed in the servicing section of the answer file are applied to the offline Windows image.
	The Unattend.xml settings in the offlineServicing pass are applied to the offline Windows image.
	Additionally, you can use Package Manager with an answer file to install packages.
	-->
	<settings pass="offlineServicing">
	
		<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>c:\drvpe</Path>
				</PathAndCredentials>
			</DriverPaths>
		</component>
		
		<component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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>c:\drv</Path>
				</PathAndCredentials>
			</DriverPaths>
		</component>
		
	</settings>
	
	<!--
	=====================
	AUDITSYSTEM SETTINGS
	=====================
	The auditSystem pass is an optional pass that enables you to add additional device drivers and applications to the image.
	This results in fewer required images because a reference image can be created with a minimal set of drivers.
	The image can be updated with additional drivers during the audit process.
	You can then test and resolve any operating system issues related to malfunctioning or incorrectly installed devices on the image.
	For example, you can install additional language packs, updates, or other applications, such as Microsoft Office.
	See Reseal mode in oobeSystem.
	-->
	<!--
	<settings pass="auditSystem">
	</settings>
	-->
	<!--
	=====================
	AUDITUSER SETTINGS
	=====================
	The auditUser pass is similar to the auditSystem pass.
	However, the auditUser pass processes these settings after users have logged on, not before they have logged on.
	Like the auditSystem pass, the auditUser pass is used to test the functionality of the Windows Vista image.
	See Reseal mode in oobeSystem.
	-->
	<!--
	<settings pass="auditUser">
	</settings>
	-->
	<!--
	=====================
	OOBESYSTEM SETTINGS
	=====================
	The oobeSystem pass configures settings that are applied during the first-boot experience for end users, also called Windows Welcome.
	oobeSystem settings are processed before a user first logs into Windows.
	Out-of-Box-Experience (OOBE) runs the first time the user starts a new computer.
	OOBE runs before the Windows shell or any additional software runs, and performs a small set of tasks necessary to configure and run Windows.
	-->
	<settings pass="oobeSystem">
		<!--
		<component name="Microsoft-Windows-Deployment" 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">
			<Reseal>
				<Mode>Audit</Mode>
			</Reseal>
		</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">
			<UserAccounts>
				<AdministratorPassword>
					<PlainText>true</PlainText>
					<Value>passwort</Value>
				</AdministratorPassword>
				<LocalAccounts>
					<!--
					<LocalAccount wcm:action="add">
						<Password>
							<PlainText>true</PlainText>
							<Value>uib</Value>
						</Password>
						<Description>UIB</Description>
						<Group>Administratoren</Group>
						<Name>UIB</Name>
						<DisplayName>UIB</DisplayName>
					</LocalAccount>
					-->
				</LocalAccounts>
			</UserAccounts>
			<BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
			<DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
			<DoNotCleanTaskBar>false</DoNotCleanTaskBar>
			<ShowWindowsLive>false</ShowWindowsLive>
			<StartPanelOff>false</StartPanelOff>
			<TimeZone>Central European Standard Time</TimeZone>
			<AutoLogon>
				<Enabled>true</Enabled>
				<LogonCount>1</LogonCount>
				<Username>Administrator</Username>
				<Password>
					<PlainText>true</PlainText>
					<Value>passwort</Value>
				</Password>
			</AutoLogon>
			<FirstLogonCommands>
				<SynchronousCommand wcm:action="add">
					<Description>Opsi tasks</Description>
					<Order>1</Order>
					<CommandLine>cmd.exe /c #@winpe_partition_letter*#:\opsi\postinst.cmd</CommandLine>
				</SynchronousCommand>
			</FirstLogonCommands>
			<!--
			<Display>
				<ColorDepth>32</ColorDepth>
				<DPI>96</DPI>
				<HorizontalResolution>1920</HorizontalResolution>
				<RefreshRate>60</RefreshRate>
				<VerticalResolution>1080</VerticalResolution>
			</Display>
			-->
			<OOBE>
				<HideEULAPage>true</HideEULAPage>
				<NetworkLocation>Work</NetworkLocation>
				<SkipUserOOBE>true</SkipUserOOBE>
				<ProtectYourPC>3</ProtectYourPC>
				<SkipMachineOOBE>true</SkipMachineOOBE>
			</OOBE>
			<OEMInformation>
				<Logo>c:\Program Files (x86)\opsi.org\opsi-client-agent\opsi-winst\opsi.bmp</Logo>
				<Manufacturer>opsi</Manufacturer>
				<Model></Model>
				<SupportURL>http://www.opsi.org</SupportURL>
			</OEMInformation>
		</component>
		<!--
		<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>#@system_keyboard_layout*#</InputLocale>
			<SystemLocale>#@system_language*#</SystemLocale>
			<UILanguage>#@system_language*#</UILanguage>
			<UILanguageFallback>#@system_language*#</UILanguageFallback>
			<UserLocale>#@system_language*#</UserLocale>
		</component>
		-->
	</settings>
	<cpi:offlineImage cpi:source="wim:y:/install.wim#Windows Vista ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
Die Verion vom Win7-x64 netboot ist die 4.1.0.0-4 und die von opsi-winst 4.12.0.15-1.
opsi-atftpd 0.7.dfsg-7
opsi-configed 4.07.6.34-2
opsi-depotserver 4.1.0.0-3
opsi-linux-bootimage 20180208-1
opsi-server 4.1.1.4-10
opsi-tftpd-hpa 5.2.8-47
opsi-utils 4.1.1.17-2
opsi-windows-support 4.1.1-5

bootimage log des Clients

Code: Alles auswählen

(0)       Apr 13 10:27:44 [opsiinit] opsi init script started
(1)       Apr 13 10:27:44 [opsiinit] opsi linux bootimage version: 20180208 (4.1)
(2)       Apr 13 10:27:44 [opsiinit] getBootParam(pwh): cmdline: *** confidential *** video=vesa:ywrap,mtrr vga=791 quiet splash --no-log console=tty1 console=ttyS0 service=https://192.168.4.15:4447/rpc BOOT_IMAGE=install-x64 
(3)       Apr 13 10:27:44 [opsiinit] boot param pwh=
(4)       Apr 13 10:27:44 [opsiinit] getBootParam(nodhcp): cmdline: *** confidential *** video=vesa:ywrap,mtrr vga=791 quiet splash --no-log console=tty1 console=ttyS0 service=https://192.168.4.15:4447/rpc BOOT_IMAGE=install-x64 
(5)       Apr 13 10:27:44 [opsiinit] boot param nodhcp=0
(6)       Apr 13 10:27:44 [opsiinit] getBootParam(hn): cmdline: *** confidential *** video=vesa:ywrap,mtrr vga=791 quiet splash --no-log console=tty1 console=ttyS0 service=https://192.168.4.15:4447/rpc BOOT_IMAGE=install-x64 
(7)       Apr 13 10:27:44 [opsiinit] boot param hn=
(8)       Apr 13 10:27:44 [opsiinit] getBootParam(lang): cmdline: *** confidential *** video=vesa:ywrap,mtrr vga=791 quiet splash --no-log console=tty1 console=ttyS0 service=https://192.168.4.15:4447/rpc BOOT_IMAGE=install-x64 
(9)       Apr 13 10:27:44 [opsiinit] boot param lang=
(10)      Apr 13 10:27:44 [opsiinit] loading keymap de-latin1-nodeadkeys
(11)      Apr 13 10:27:44 [opsiinit] setting language environment (LANG=de_DE.UTF8, LANGUAGE=de, LC_ALL=de_DE.UTF8)
(12)      Apr 13 10:27:44 [opsiinit] getNetworkDevices(): link forced
(13)      Apr 13 10:27:44 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(14)      Apr 13 10:27:44 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(15)      Apr 13 10:27:44 [opsiinit] no devices found, sleeping 3 seconds
(16)      Apr 13 10:27:47 [opsiinit] getNetworkDevices(): link forced
(17)      Apr 13 10:27:47 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(18)      Apr 13 10:27:47 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(19)      Apr 13 10:27:47 [opsiinit] no devices found, sleeping 3 seconds
(20)      Apr 13 10:27:50 [opsiinit] getNetworkDevices(): link forced
(21)      Apr 13 10:27:50 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(22)      Apr 13 10:27:50 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(23)      Apr 13 10:27:50 [opsiinit] no devices found, sleeping 3 seconds
(24)      Apr 13 10:27:53 [opsiinit] getNetworkDevices(): link forced
(25)      Apr 13 10:27:53 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(26)      Apr 13 10:27:53 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(27)      Apr 13 10:27:53 [opsiinit] no devices found, sleeping 3 seconds
(28)      Apr 13 10:27:56 [opsiinit] getNetworkDevices(): link forced
(29)      Apr 13 10:27:56 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(30)      Apr 13 10:27:56 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(31)      Apr 13 10:27:56 [opsiinit] no devices found, sleeping 3 seconds
(32)      Apr 13 10:27:59 [opsiinit] getNetworkDevices(): link forced
(33)      Apr 13 10:27:59 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(34)      Apr 13 10:27:59 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(35)      Apr 13 10:27:59 [opsiinit] no devices found, sleeping 3 seconds
(36)      Apr 13 10:28:02 [opsiinit] getNetworkDevices(): link forced
(37)      Apr 13 10:28:02 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(38)      Apr 13 10:28:02 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(39)      Apr 13 10:28:02 [opsiinit] no devices found, sleeping 3 seconds
(40)      Apr 13 10:28:05 [opsiinit] getNetworkDevices(): link forced
(41)      Apr 13 10:28:05 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(42)      Apr 13 10:28:05 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(43)      Apr 13 10:28:05 [opsiinit] no devices found, sleeping 3 seconds
(44)      Apr 13 10:28:08 [opsiinit] getNetworkDevices(): link forced
(45)      Apr 13 10:28:08 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(46)      Apr 13 10:28:08 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(47)      Apr 13 10:28:08 [opsiinit] no devices found, sleeping 3 seconds
(48)      Apr 13 10:28:11 [opsiinit] getNetworkDevices(): link forced
(49)      Apr 13 10:28:11 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(50)      Apr 13 10:28:11 [opsiinit] getNetworkDevices(): no devices with link found, returning error
(51)      Apr 13 10:28:11 [opsiinit] no devices found, sleeping 3 seconds
(52)      Apr 13 10:28:14 [opsiinit] getNetworkDevices(): device(s) found:  enp2s0, device(s) with link: 
(53)      Apr 13 10:28:14 [opsiinit] getNetworkDevices(): no devices with link found, returning  enp2s0
(54)      Apr 13 10:28:14 [opsiinit] using dhcp, adding entry for device enp2s0 to /etc/network/interfaces
(55)      Apr 13 10:28:25 [opsiinit] opsi init script ended
(896)     [5] [Apr 13 10:28:28] Detected link on device 'enp2s0' (master.py|658)
(897)     [5] [Apr 13 10:28:28] No file dhclient.enp2s0.leases found (master.py|669)
(898)     [5] [Apr 13 10:28:28] Waiting for network devices to get configured by dhcp (master.py|715)
(920)     [5] [Apr 13 10:28:28] All network devices configured (master.py|728)
(921)     [5] [Apr 13 10:28:28] leases: enp2s0:/var/lib/dhcp/dhclient.leases (master.py|752)
(922)     [5] [Apr 13 10:28:28] Getting dhcp result for device: enp2s0 (master.py|756)
(953)     [5] [Apr 13 10:28:28] Getting values from user (master.py|904)
(1005)    [2] [Apr 13 10:28:51] Traceback: (Logger.py|798)
(1006)    [2] [Apr 13 10:28:51]   File "/usr/lib/python2.7/dist-packages/OPSI/Backend/JSONRPC.py", line 100, in processResult
(1007)        raise exception
(1008)     (Logger.py|798)
(1073)    [5] [Apr 13 10:29:08] Product-id is 'win7-x64' (master.py|1158)
(1074)    [5] [Apr 13 10:29:08] Fetching product properties... (master.py|1185)
(1087)    [5] [Apr 13 10:29:08] Fetching config states... (master.py|1195)
(1100)    [5] [Apr 13 10:29:08] Requesting product license... (master.py|1205)
(1101)    [5] [Apr 13 10:29:08] Using product property to get licensekey (master.py|1212)
(1103)    [5] [Apr 13 10:29:08] Fetching pcpatch password... (master.py|1218)
(1123)    [5] [Apr 13 10:29:09] Copying action script 'win7-x64/setup.py' from depot to '/tmp/setup.py' (master.py|1322)
(1180)    [5] [Apr 13 10:29:11] ############################################################## (setup.py|38)
(1181)    [5] [Apr 13 10:29:11] initOpsiSetupLib() (opsisetuplib.py|30)
(1182)    [5] [Apr 13 10:29:11] OpsiSetupLib $Revision$ (opsisetuplib.py|31)
(1183)    [5] [Apr 13 10:29:11] OpsiSetupLib $Date$ (opsisetuplib.py|32)
(1184)    [5] [Apr 13 10:29:11] nt6.py (setup.py|40)
(1185)    [5] [Apr 13 10:29:11] ############################################################## (setup.py|42)
(1186)    [5] [Apr 13 10:29:11] Installing Product: win7-x64_4.1.0.0-4 on test13.opsitest.local (setup.py|50)
(1187)    [5] [Apr 13 10:29:11] ############################################################## (setup.py|53)
(1194)    [5] [Apr 13 10:29:11] Installed opsi-script: opsi-winst_4.12.0.15  (setup.py|63)
(1196)    [5] [Apr 13 10:29:11] try to load efivars module: modprobe efivars (opsisetuplib.py|490)
(1201)    [5] [Apr 13 10:29:11] we are not running in uefi mode (opsisetuplib.py|494)
(1202)    [5] [Apr 13 10:29:11] We install to disk (setup.py|77)
(1203)    [5] [Apr 13 10:29:11] useRaid1 is False (setup.py|209)
(1204)    [5] [Apr 13 10:29:11] preserve_winpe_partition is False (setup.py|214)
(1205)    [5] [Apr 13 10:29:11] preserve_winpe_partition is False (setup.py|218)
(1206)    [5] [Apr 13 10:29:11] Using installfiles_dir: installfiles (setup.py|225)
(1207)    [5] [Apr 13 10:29:11] We use as administrator: Administrator (setup.py|319)
(1208)    [5] [Apr 13 10:29:11] Partition numbers are now: , boot=0, system=1, winpe=2, data=0 (setup.py|372)
(1209)    [5] [Apr 13 10:29:11] Fetching opsi hw audit configuration (setup.py|446)
(1216)    [5] [Apr 13 10:29:11] Running hardware inventory (setup.py|449)
(4169)    [4] [Apr 13 10:29:17] Attribute part 'id' not found (Posix.py|3560)
(4170)    [4] [Apr 13 10:29:17] Attribute part 'sku' not found (Posix.py|3560)
(4182)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4183)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4223)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4225)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4227)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4229)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4232)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4234)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4236)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4238)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4240)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4242)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4244)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4246)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4248)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4250)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4252)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4254)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4256)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4258)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4260)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4262)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4264)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4266)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4280)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4281)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4282)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4283)    [4] [Apr 13 10:29:17] Attribute part 'vendorId' not found (Posix.py|3560)
(4284)    [4] [Apr 13 10:29:17] Attribute part 'deviceId' not found (Posix.py|3560)
(4285)    [4] [Apr 13 10:29:17] Attribute part 'subsystemVendorId' not found (Posix.py|3560)
(4286)    [4] [Apr 13 10:29:17] Attribute part 'subsystemDeviceId' not found (Posix.py|3560)
(4287)    [4] [Apr 13 10:29:17] Attribute part 'revision' not found (Posix.py|3560)
(4288)    [4] [Apr 13 10:29:17] Attribute part 'port' not found (Posix.py|3560)
(4289)    [4] [Apr 13 10:29:17] Attribute part 'capacity' not found (Posix.py|3560)
(4290)    [4] [Apr 13 10:29:17] Attribute part 'ip' not found (Posix.py|3560)
(4291)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4292)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4293)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4294)    [4] [Apr 13 10:29:17] Attribute part 'vendorId' not found (Posix.py|3560)
(4295)    [4] [Apr 13 10:29:17] Attribute part 'deviceId' not found (Posix.py|3560)
(4296)    [4] [Apr 13 10:29:17] Attribute part 'subsystemVendorId' not found (Posix.py|3560)
(4297)    [4] [Apr 13 10:29:17] Attribute part 'subsystemDeviceId' not found (Posix.py|3560)
(4298)    [4] [Apr 13 10:29:17] Attribute part 'revision' not found (Posix.py|3560)
(4299)    [4] [Apr 13 10:29:17] Attribute part 'port' not found (Posix.py|3560)
(4300)    [4] [Apr 13 10:29:17] Attribute part 'capacity' not found (Posix.py|3560)
(4301)    [4] [Apr 13 10:29:17] Attribute part 'link' not found (Posix.py|3560)
(4302)    [4] [Apr 13 10:29:17] Attribute part 'autonegotiation' not found (Posix.py|3560)
(4303)    [4] [Apr 13 10:29:17] Attribute part 'ip' not found (Posix.py|3560)
(4307)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4308)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4313)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4317)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4318)    [4] [Apr 13 10:29:17] Attribute part 'description' not found (Posix.py|3560)
(4319)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4320)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4321)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4322)    [4] [Apr 13 10:29:17] Attribute part 'vendorId' not found (Posix.py|3560)
(4323)    [4] [Apr 13 10:29:17] Attribute part 'deviceId' not found (Posix.py|3560)
(4324)    [4] [Apr 13 10:29:17] Attribute part 'subsystemVendorId' not found (Posix.py|3560)
(4325)    [4] [Apr 13 10:29:17] Attribute part 'subsystemDeviceId' not found (Posix.py|3560)
(4326)    [4] [Apr 13 10:29:17] Attribute part 'revision' not found (Posix.py|3560)
(4327)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4328)    [4] [Apr 13 10:29:17] Attribute part 'description' not found (Posix.py|3560)
(4329)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4330)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4331)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4332)    [4] [Apr 13 10:29:17] Attribute part 'vendorId' not found (Posix.py|3560)
(4333)    [4] [Apr 13 10:29:17] Attribute part 'deviceId' not found (Posix.py|3560)
(4334)    [4] [Apr 13 10:29:17] Attribute part 'subsystemVendorId' not found (Posix.py|3560)
(4335)    [4] [Apr 13 10:29:17] Attribute part 'subsystemDeviceId' not found (Posix.py|3560)
(4336)    [4] [Apr 13 10:29:17] Attribute part 'revision' not found (Posix.py|3560)
(4337)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4338)    [4] [Apr 13 10:29:17] Attribute part 'description' not found (Posix.py|3560)
(4339)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4340)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4341)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4342)    [4] [Apr 13 10:29:17] Attribute part 'vendorId' not found (Posix.py|3560)
(4343)    [4] [Apr 13 10:29:17] Attribute part 'deviceId' not found (Posix.py|3560)
(4344)    [4] [Apr 13 10:29:17] Attribute part 'subsystemVendorId' not found (Posix.py|3560)
(4345)    [4] [Apr 13 10:29:17] Attribute part 'subsystemDeviceId' not found (Posix.py|3560)
(4346)    [4] [Apr 13 10:29:17] Attribute part 'revision' not found (Posix.py|3560)
(4356)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4357)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4358)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4359)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4360)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4361)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4362)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4383)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4384)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4386)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4387)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4388)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4389)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4390)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4391)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4392)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4393)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4394)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4395)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4396)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4397)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4398)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4399)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4400)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4401)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4402)    [4] [Apr 13 10:29:17] Attribute part 'vendor' not found (Posix.py|3560)
(4403)    [4] [Apr 13 10:29:17] Attribute part 'product' not found (Posix.py|3560)
(4404)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4405)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4412)    [4] [Apr 13 10:29:17] Attribute part 'serial' not found (Posix.py|3560)
(4413)    [4] [Apr 13 10:29:17] Attribute part 'size' not found (Posix.py|3560)
(4415)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4416)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4417)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4418)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4419)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4420)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4421)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4422)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4423)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4424)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4425)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4426)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4427)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4428)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4429)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4430)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4431)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4432)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4433)    [3] [Apr 13 10:29:17] Key 'description' not found (Posix.py|3656)
(4434)    [3] [Apr 13 10:29:17] Key 'serial' not found (Posix.py|3656)
(4467)    [5] [Apr 13 10:29:17] Sending hardware information to service (setup.py|452)
(4480)    [5] [Apr 13 10:29:17] Swapoff all to avoid disk in use ..... (setup.py|456)
(4484)    [5] [Apr 13 10:29:17] Clear all existing LVM volume groups.... (opsisetuplib.py|115)
(4488)    [5] [Apr 13 10:29:17] Remove all dead Links in /dev.... (opsisetuplib.py|135)
(4492)    [5] [Apr 13 10:29:17] Remove all empty directories in /dev.... (opsisetuplib.py|137)
(4493)    [5] [Apr 13 10:29:17] Look for still existing LVM volume groups.... (opsisetuplib.py|140)
(4625)    [5] [Apr 13 10:29:18] Disk order: (opsisetuplib.py|78)
(4626)    [5] [Apr 13 10:29:18]  - /dev/sda (rotational? True) (sizeG 232) (uuid ff1b99f5) (opsisetuplib.py|80)
(4627)    [5] [Apr 13 10:29:18] Normally we using disk 0 (setup.py|463)
(4753)    [5] [Apr 13 10:29:18] multi_disk_mode is 0 - so we use disk number: 0 uuid:ff1b99f5 (setup.py|486)
(4754)    [5] [Apr 13 10:29:18] Using disk device /dev/sda (setup.py|488)
(4755)    [5] [Apr 13 10:29:18] Check if disk /dev/sda is ssd or classic (rotational) HD (opsisetuplib.py|85)
(4756)    [5] [Apr 13 10:29:18] Disk /dev/sda is rotational (Classic HD) (opsisetuplib.py|92)
(4757)    [5] [Apr 13 10:29:18] Required winpe partition (2) size is 4000M (setup.py|516)
(4758)    [5] [Apr 13 10:29:18] /mnt/hd does not exists as directory - creating (opsisetuplib.py|343)
(4762)    [5] [Apr 13 10:29:18] maxDiskRange is 1 (setup.py|818)
(4763)    [5] [Apr 13 10:29:18] diskcounter is now 0 (setup.py|821)
(4764)    [5] [Apr 13 10:29:18] Disk order: (opsisetuplib.py|78)
(4765)    [5] [Apr 13 10:29:18]  - /dev/sda (rotational? True) (sizeG 232) (uuid ff1b99f5) (opsisetuplib.py|80)
(4766)    [5] [Apr 13 10:29:18] Using disk device /dev/sda (setup.py|824)
(4767)    [5] [Apr 13 10:29:18] Check if disk /dev/sda is ssd or classic (rotational) HD (opsisetuplib.py|85)
(4768)    [5] [Apr 13 10:29:18] Disk /dev/sda is rotational (Classic HD) (opsisetuplib.py|92)
(4769)    [5] [Apr 13 10:29:18] using sgdisk to clear not usable partition table of /dev/sda (setup.py|859)
(4809)    [5] [Apr 13 10:29:19] unrecognized partition table type, writing empty partitiontable (Posix.py|1532)
(4918)    [5] [Apr 13 10:29:20] Write Master Boot Record (setup.py|866)
(4951)    [5] [Apr 13 10:29:20] Create system partition on /dev/sda1 start: 0M, size: 233475M (opsisetuplib.py|213)
(5097)    [5] [Apr 13 10:29:22] /dev/sda1 exists as device - fine (opsisetuplib.py|198)
(5098)    [5] [Apr 13 10:29:22] Partition /dev/sda1 has a correct block alignment (opsisetuplib.py|106)
(5099)    [5] [Apr 13 10:29:22] Create file system ntfs on partition system (/dev/sda1) (opsisetuplib.py|289)
(5113)    [5] [Apr 13 10:29:39] /dev/sda1 exists as device - fine (opsisetuplib.py|279)
(5114)    [5] [Apr 13 10:29:39] /dev/sda1 created and formated (opsisetuplib.py|315)
(5115)    [5] [Apr 13 10:29:39] Check winpe partition (setup.py|931)
(5116)    [5] [Apr 13 10:29:39] Check winpe partition at number 2 (setup.py|933)
(5117)    [5] [Apr 13 10:29:39] Create winpe partition on /dev/sda2 start: 234475M, size: 4000M (opsisetuplib.py|213)
(5271)    [5] [Apr 13 10:29:42] /dev/sda2 exists as device - fine (opsisetuplib.py|198)
(5272)    [5] [Apr 13 10:29:42] Partition /dev/sda2 has a correct block alignment (opsisetuplib.py|106)
(5273)    [5] [Apr 13 10:29:42] /dev/sda2 exists as device - fine (opsisetuplib.py|198)
(5274)    [5] [Apr 13 10:29:42] Partition /dev/sda2 has a correct block alignment (opsisetuplib.py|106)
(5275)    [5] [Apr 13 10:29:42] /dev/sda2 is not mounted (opsisetuplib.py|401)
(5276)    [5] [Apr 13 10:29:42] Create file system ntfs on partition winpe (/dev/sda2) (opsisetuplib.py|289)
(5291)    [5] [Apr 13 10:29:58] /dev/sda2 exists as device - fine (opsisetuplib.py|279)
(5292)    [5] [Apr 13 10:29:58] /dev/sda2 created and formated (opsisetuplib.py|315)
(5293)    [5] [Apr 13 10:29:58] Write Master Boot Record (setup.py|1099)
(5323)    [5] [Apr 13 10:30:00] collect disk and partition infos (setup.py|1129)
(5324)    [5] [Apr 13 10:30:00] we have uuid None on /dev/sda (setup.py|1131)
(5325)    [5] [Apr 13 10:30:00] create new random disk uuid (setup.py|1133)
(5326)    [5] [Apr 13 10:30:00] we have uuid a335fd9d on /dev/sda (setup.py|1152)
(5332)    [5] [Apr 13 10:30:00] We save all partition infos .... (setup.py|1167)
(5345)    [5] [Apr 13 10:30:00] has disk /dev/sda a gpt partition table ? (setup.py|1171)
(5346)    [5] [Apr 13 10:30:00] disk /dev/sda have no gpt partition table (setup.py|1174)
(5347)    [5] [Apr 13 10:30:00] We have 2 partitions on disk /dev/sda (setup.py|1186)
(5348)    [5] [Apr 13 10:30:00] We have uuid a335fd9d  on disk /dev/sda (setup.py|1188)
(5357)    [5] [Apr 13 10:30:01] mount winpe partition (setup.py|1242)
(5358)    [5] [Apr 13 10:30:01] mountpoint /mnt/hd exists (opsisetuplib.py|357)
(5359)    [5] [Apr 13 10:30:01] mountpoint /mnt/hd >> /dev/null 2>&1 (opsisetuplib.py|362)
(5360)    [5] [Apr 13 10:30:01] Nothing mounted on /mnt/hd - fine (opsisetuplib.py|377)
(5361)    [5] [Apr 13 10:30:01] /dev/sda2 is not mounted (opsisetuplib.py|401)
(5365)    [5] [Apr 13 10:30:01]  mount -t ntfs /dev/sda2 /mnt/hd (opsisetuplib.py|417)
(5366)    [5] [Apr 13 10:30:06] /dev/sda2 mounted on /mnt/hd - fine.. (opsisetuplib.py|425)
(5457)    [5] [Apr 13 10:30:08] we do not copy the uefi boot files because we are not in uefi mode (setup.py|1253)
(10803)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10805)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10807)   [5] [Apr 13 10:30:23] Found driver for PCI_DEVICE device 'GM107 [GeForce GTX 750 Ti]', in dir 'win7-x64/drivers/pciids/10DE/1380' (WindowsDrivers.py|114)
(10809)   [3] [Apr 13 10:30:23] PCI_DEVICE device directory 'win7-x64/drivers/pciids/10DE/0FBC' not found (WindowsDrivers.py|105)
(10811)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10813)   [5] [Apr 13 10:30:23] Found driver for PCI_DEVICE device 'NetLink BCM57788 Gigabit Ethernet PCIe', in dir 'win7-x64/drivers/pciids/14E4/1691' (WindowsDrivers.py|114)
(10815)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10817)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10819)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10821)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10823)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10825)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10827)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10829)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10831)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10833)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10835)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10837)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10839)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1002' not found (WindowsDrivers.py|100)
(10841)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10843)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10845)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10847)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10849)   [3] [Apr 13 10:30:23] PCI_DEVICE vendor directory 'win7-x64/drivers/pciids/1022' not found (WindowsDrivers.py|100)
(10859)   [3] [Apr 13 10:30:23] HDAUDIO_DEVICE vendor directory 'win7-x64/drivers/hdaudioids/10EC' not found (WindowsDrivers.py|100)
(10861)   [5] [Apr 13 10:30:23] Found driver for HDAUDIO_DEVICE device 'Nvidia GPU 60 HDMI_DP', in dir 'win7-x64/drivers/hdaudioids/10DE/0060' (WindowsDrivers.py|114)
(10865)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10867)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10869)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/413C' not found (WindowsDrivers.py|100)
(10871)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/18E3' not found (WindowsDrivers.py|100)
(10873)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10875)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10877)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10879)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10881)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/413C' not found (WindowsDrivers.py|100)
(10883)   [3] [Apr 13 10:30:23] USB_DEVICE vendor directory 'win7-x64/drivers/usbids/1D6B' not found (WindowsDrivers.py|100)
(10888)   [5] [Apr 13 10:30:23] Integrating driver for device [10DE:1380] NVIDIA Corporation : GM107 [GeForce GTX 750 Ti] (WindowsDrivers.py|294)
(10889)   [5] [Apr 13 10:30:23] Integrating driver for device [14E4:1691] Broadcom Limited : NetLink BCM57788 Gigabit Ethernet PCIe (WindowsDrivers.py|294)
(10890)   [5] [Apr 13 10:30:23] Integrating driver for device [10DE:0060] : Nvidia GPU 60 HDMI/DP (WindowsDrivers.py|294)
(10893)   [5] [Apr 13 10:30:23] Integrating driver dir 'win7-x64/drivers/pciids/10DE/1380' (WindowsDrivers.py|199)
(11170)   [5] [Apr 13 10:30:29] Integrating driver dir 'win7-x64/drivers/pciids/14E4/1691' (WindowsDrivers.py|199)
(11207)   [5] [Apr 13 10:30:29] Integrating driver dir 'win7-x64/drivers/hdaudioids/10DE/0060' (WindowsDrivers.py|199)
(11256)   [5] [Apr 13 10:30:29] Creating work.cmd (setup.py|1313)
(11319)   [5] [Apr 13 10:30:37] Adding found driver c:\drv\2\oem2.inf to drvloadlist_org.txt
 (setup.py|1336)
(11329)   [5] [Apr 13 10:30:37] Creating startnet.cmd (setup.py|1409)
(11330)   [5] [Apr 13 10:30:37] Creating diskpart.txt to delete winpe (setup.py|1443)
(11331)   [5] [Apr 13 10:30:37] No Partition IDs to backup - do not create /mnt/hd/opsi/partunhide.txt (setup.py|1490)
(11332)   [5] [Apr 13 10:30:37] No Partition IDs to backup - do not create /mnt/hd/opsi/parthide.txt (setup.py|1511)
(11333)   [5] [Apr 13 10:30:37] write disk and partition infos to /mnt/hd/opsi/diskinfo.ini (setup.py|1517)
(11334)   [5] [Apr 13 10:30:37] Here comes the /mnt/hd/opsi/diskinfo.ini (setup.py|1522)
(11365)   [5] [Apr 13 10:30:37] Creating opsi-script-infos.ini (setup.py|1530)
(11366)   [5] [Apr 13 10:30:37] Patching unattend.xml and config.ini (setup.py|1549)
(11379)   [5] [Apr 13 10:30:38] Here comes the unattend.xml  (setup.py|1555)
(11751)   [5] [Apr 13 10:30:38] Reading config.ini data: config_service.url: https://192.168.4.15:4447  (setup.py|1572)
(11752)   [5] [Apr 13 10:30:38]  config_service.url from clientconfig: https://192.168.4.15:4447/rpc  (setup.py|1573)
(11753)   [4] [Apr 13 10:30:38]  service url from config.ini: https://192.168.4.15:4447 is different to clientconfig.configserver.url (commandline or input mask): https://192.168.4.15:4447/rpc (setup.py|1575)
(11754)   [5] [Apr 13 10:30:38] Using config.ini data as service url: config_service.url: https://192.168.4.15:4447  (setup.py|1576)
(11803)   [5] [Apr 13 10:30:38] diskcounter is still 0 (setup.py|1591)
(11808)   [5] [Apr 13 10:30:38] Script execution successful (master.py|1395)
(12046)   [5] [Apr 13 10:30:38] Writing log to service (master.py|1468)
(12047)   
(12048)   [1] [Apr 13 10:32:32:179] --
(12049)   [1] [Apr 13 10:32:32:179] --
(12050)   [1] [Apr 13 10:32:32:179] x:\\opsi-script-part-Cv02Sc53.log
(12051)   [1] [Apr 13 10:32:32:179] opsi-script 4.12.0.15 started at >>
(12052)   [1] [Apr 13 10:32:32:179] opsi-script log file with encoding utf8
(12053)   [1] [Apr 13 10:32:32:179] startmessage opsi-script created at CentralForm.FormCreate: 13.04.2018 10:32:31
(12054)   [1] [Apr 13 10:32:32:179] Loading skin from: c:\opsi\opsi-script\files64\opsi-winst\winstskin
(12055)   [1] [Apr 13 10:32:32:179] Called with parameter: c:\opsi\setup.opsiscript\r\n/batch\r\n/logfile\r\nx:\opsiscript.log\r\n
(12056)   [1] [Apr 13 10:32:32:179] startmessage StartProgramModes and create log: 13.04.2018 10:32:32
(12057)   [1] [Apr 13 10:32:32:179] pm: 6 13.04.2018 10:32:32
(12058)   [1] [Apr 13 10:32:32:179] Prog: force_min_loglevel: 4
(12059)   [1] [Apr 13 10:32:32:179] Prog: default_loglevel: 7
(12060)   [1] [Apr 13 10:32:32:179] Prog: debug_prog: false
(12061)   [1] [Apr 13 10:32:32:179] Prog: debug_lib: true
(12062)   [1] [Apr 13 10:32:32:179] Prog: AktProduktId:  = false
(12063)   [3] [Apr 13 10:32:32:179] readconfig failed: Perhaps got defaults 
(12066)   [1] [Apr 13 10:32:32:179] Prog: force_min_loglevel: 4
(12067)   [1] [Apr 13 10:32:32:179] Prog: default_loglevel: 7
(12068)   [1] [Apr 13 10:32:32:179] Prog: debug_prog: False
(12069)   [1] [Apr 13 10:32:32:179] Prog: debug_lib: True
(12070)   [1] [Apr 13 10:32:32:179] Prog: ScriptErrorMessages: False
(12071)   [1] [Apr 13 10:32:32:179] Prog: AutoActivityDisplay: False
(12073)   [1] [Apr 13 10:32:32:304] 
(12074)   [1] [Apr 13 10:32:32:304] ============ Version 4.12.0.15 script "c:\opsi\setup.opsiscript"
(12075)   [1] [Apr 13 10:32:32:304]              used script encoding: cp1252
(12076)   [1] [Apr 13 10:32:32:304]              used system encoding: cp1252
(12077)   [1] [Apr 13 10:32:32:304]              start: 2018-04-13  10:32:32 
(12078)   [1] [Apr 13 10:32:32:304]              on client named    "MINWINPC"
(12079)   [1] [Apr 13 10:32:32:304]              loggedin user    ""
(12080)   [1] [Apr 13 10:32:32:304]              opsi-script running as    "SYSTEM"
(12081)   [4] [Apr 13 10:32:32:304]              opsi-script not running with admin privileges
(12082)   [1] [Apr 13 10:32:32:304]              opsi-script running in standard script mode
(12083)   [1] [Apr 13 10:32:32:304] executing: "c:\opsi\opsi-script\files64\opsi-winst\winst64.exe"
(12084)   [1] [Apr 13 10:32:32:304] system infos:
(12085)   [3] [Apr 13 10:32:32:304] gethostname error 11001
(12086)   [1] [Apr 13 10:32:32:304] F6-B4-D7-D3-52-6B  -  PC hardware address
(12087)   [1] [Apr 13 10:32:32:304]   -  IP name 
(12088)   [1] [Apr 13 10:32:32:304]   -  IP address
(12089)   [1] [Apr 13 10:32:32:304] DEU  -  System default locale 
(12090)   [1] [Apr 13 10:32:32:304] MS Windows 6.1 64 Bit, Edition: Ultimate Edition"
(12091)   [1] [Apr 13 10:32:32:304] 
(12112)   [5] [Apr 13 10:32:32:491] Imported all functions from file: c:\opsi\opsi-script\files64\opsi-winst\lib\uib_bootutils.opsiscript
(12127)   [5] [Apr 13 10:32:32:522] comment: Show product picture
(12135)   [5] [Apr 13 10:32:32:553] message Running win7-x64 ...
(12153)   [5] [Apr 13 10:32:32:553] message Get Parameter ...
(12192)   [5] [Apr 13 10:32:32:616] message Init network connection ...
(12196)   [5] [Apr 13 10:32:32:616]   message Check volumes...
(12232)   [5] [Apr 13 10:32:34:394]   comment: get lines with ntfs volume ...
(12237)   [5] [Apr 13 10:32:34:394]   ShellCall Executing: "cmd.exe" /C "copy c:\opsi\unattend.xml x:\unattend.xml >nul"
(12242)   [5] [Apr 13 10:32:34:503]   message Initializing PE..... please wait ......
(12244)   [5] [Apr 13 10:32:34:503]   ShellCall Executing: "cmd.exe" /C "wpeinit"
(12253)   [5] [Apr 13 10:32:52:412]     comment: Initializing successful
(12257)   [5] [Apr 13 10:32:52:428]   ShellCall Executing: "cmd.exe" /C "wpeutil InitializeNetwork"
(12270)   [5] [Apr 13 10:32:54:939]     comment: InitializeNetwork successful
(12273)   [5] [Apr 13 10:32:54:939]   ShellCall Executing: "cmd.exe" /C "net use /y /delete *"
(12280)   [5] [Apr 13 10:32:55:048]   ShellCall Executing: "cmd.exe" /C "ping -n 5 127.0.0.1"
(12298)   [5] [Apr 13 10:32:59:198]   ShellCall Executing: "cmd.exe" /C "ipconfig /all"
(12332)   [5] [Apr 13 10:32:59:307]   comment: Try to open new network connection
(12334)   [5] [Apr 13 10:32:59:307]   Execution of: opsiservicecall_authenticated /username $clientId$ /password $hostKey$ /serviceurl $serviceurl$
(12335)   [5] [Apr 13 10:32:59:307]   
(12338)   [5] [Apr 13 10:33:07:404]     opsi Server Version : 4.1.1.29
(12347)   [5] [Apr 13 10:33:08:184]     comment: now authenticated 
(12351)   [5] [Apr 13 10:33:08:184]     
(12360)   [5] [Apr 13 10:33:08:371]   message Mount share...
(12361)   [5] [Apr 13 10:33:08:386]   Execution of: shellInAnIcon_workcmd winst /showoutput
(12397)   [5] [Apr 13 10:33:12:754] ShellCall Executing: "cmd.exe" /C "ipconfig /all"
(12437)   [5] [Apr 13 10:33:12:864] comment: check for diskcount match
(12438)   [5] [Apr 13 10:33:12:879] comment: Create diskcount.txt ....
(12449)   [5] [Apr 13 10:33:12:895] message Run diskcount ....
(12539)   [5] [Apr 13 10:33:13:378]   message Prepare setup...
(12547)   [5] [Apr 13 10:33:13:394]   message Send Log...
(12550)   [5] [Apr 13 10:33:13:581] -------- submitted part of log file ends here, see the rest of log file on client ----------
Falls Ihr noch Daten und Informationen benötigt erfragt diese bitte und ich werde diese schnellstmöglich nachliefern.

Mit freundlichen Grüßen
Alex
uncle_scrooge
Beiträge: 650
Registriert: 21 Feb 2012, 12:03
Wohnort: Mainz

Re: Problem bei Automatisierter Installation von Win 7 64bit

Beitrag von uncle_scrooge »

Code: Alles auswählen

<InstallFrom>
                  <MetaData wcm:action="add">
                     <Key>/IMAGE/NAME</Key>
                     <Value>win7-x64</Value>
                  </MetaData>
               </InstallFrom>
Hier ist unter value nicht das OPSI netboot-Produkt einzutragen, sondern ein Image, das sich in Deiner install.wim findet.
Welche das sind, bekommst Du mit

Code: Alles auswählen

dism /get-wiminfo /wimfile:<PfadzuDeinerInstall.wim>
heraus.
Ob damit dann auch Deine weiteren Probleme erschlagen sind, wird sich zeigen.
(Ich habe Deine unattend.xml jetzt nicht komplett durchgeflöht.)
Medevil
Beiträge: 3
Registriert: 13 Apr 2018, 08:47

Re: Problem bei Automatisierter Installation von Win 7 64bit

Beitrag von Medevil »

Erstmal vielen Dank für die schnelle Antwort.

Nachdem ich die Ausgabe von deinem Befehl, an der von dir genannten stelle in unattend.xml eingetragen habe
kam die Installation bis zu dem Punkt, an dem die Festplatte/Partition ausgewählt werden muss für die Windows Installation.

Ich werde versuchen weitere Fehler in der unattend.xml zu finden, wenn jedoch hier jemanden weitere Fehler auffallen bitte ich darum mir diese zu nennen.

MfG
Alex
uncle_scrooge
Beiträge: 650
Registriert: 21 Feb 2012, 12:03
Wohnort: Mainz

Re: Problem bei Automatisierter Installation von Win 7 64bit

Beitrag von uncle_scrooge »

Bitte den umgekehrten Weg gehen. Und die von uib mitgelieferte unattend.xml verwenden.
Wenn Du sie unter /win7-x64/custom ohne Sicherung überschrieben hast, gibt es eine Kopie als unattend.xml.template unter /win7-x64/opsi.
Die funktioniert nachweislich.
Wenn Du dann Änderungen durchführen willst/musst, kannst Du es dort tun. Möglichst eine nach der anderen. Vereinfacht eine eventuelle Fehlersuche.
Medevil
Beiträge: 3
Registriert: 13 Apr 2018, 08:47

Re: Problem bei Automatisierter Installation von Win 7 64bit

Beitrag von Medevil »

Vielen Dank für den Hinweis,
werde es dann so Versuchen und mich bei etwaigen Problemen hier wieder melden.

MfG
Alex
Antworten