Jump to content

ronmaster

Member
  • Posts

    5
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Denmark

Everything posted by ronmaster

  1. Hi there, My unattended installation is fully automatic. The only thing i want, is for the user to enter his licensekey. The following does not seam to work (under component name="Microsoft-Windows-Setup"): <UserData> <AcceptEula>true</AcceptEula> <FullName>User</FullName> <Organization>Company</Organization> <ProductKey> <WillShowUI>Always</WillShowUI> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> </ProductKey> </UserData> Please help, i can not figue out what i am doing wrong. /Ron
  2. Hi there. I have an unattended installation that does everything automaticly. The only thing i want the user to to is enter the licensekey, is this possible? I have tried the following (without any luck): <UserData> <AcceptEula>true</AcceptEula> <FullName>EndUserName</FullName> <Organization>Fabrikam</Organization> <ProductKey> <Key>12345-12345-12345-12345-12345</Key> <WillShowUI>Always</WillShowUI> </ProductKey> </UserData> Under component name="Microsoft-Windows-Setup" Br. Ron
  3. Thank you very much! typing /h, /help, /?... helped alot!
  4. Im brand new at this topic, and very insecure what to put where :-) I doubt that i can find the silent switch commands for my programs, as there are not very common. Whould it be possible to post the entire xml and for you guys to edit it? The main purpose for my installation is that everything should be automated, exept the licens key part. I have attached my Autounattend.xml
  5. Hi there, I am trying to install some programs in my unattended vista image. I don't know which commands to use when installing misc. software. <br> This is what it looks like now: <settings pass="auditUser"> <component name="Microsoft-Windows-Deployment" 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"> <RunSynchronous> <!-- ************************************************************* Installation af Java START --> <RunSynchronousCommand wcm:action="add"> <Order>5</Order> <Path>cmd /c %AppsRoot%\Install\Java6.exe /s /v/qn</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Java SLUT --> <!-- ************************************************************* Installation af ICA klient START --> <RunSynchronousCommand wcm:action="add"> <Order>10</Order> <Path>cmd /c %AppsRoot%\Install\ica32web.msi /qb</Path> <!-- OK! --> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af ICA klient SLUT --> <!-- ************************************************************* Installation af Audio START --> <RunSynchronousCommand wcm:action="add"> <Order>11</Order> <Path>cmd /c %AppsRoot%\Install\Audio\SETUP.exe /quiet /audit</Path> <!-- Tilføj driver istedet.. --> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Audio SLUT --> <!-- ************************************************************* Installation af HotKey START --> <RunSynchronousCommand wcm:action="add"> <Order>12</Order> <Path>cmd /c %AppsRoot%\Install\HOTKEY\SETUP.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af HotKey SLUT --> <!-- ************************************************************* Installation af EasyEject START --> <RunSynchronousCommand wcm:action="add"> <Order>13</Order> <Path>cmd /c %AppsRoot%\Install\EZEJECT\SETUP.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af EasyEject SLUT --> <!-- ************************************************************* Installation af Media Control Center START --> <RunSynchronousCommand wcm:action="add"> <Order>14</Order> <Path>cmd /c %AppsRoot%\Install\MBLCTR\Setup.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Media Control Center SLUT --> <!-- ************************************************************* Installation af Productivity Center START --> <RunSynchronousCommand wcm:action="add"> <Order>15</Order> <Path>cmd /c %AppsRoot%\Install\PRDCTR\SETUP.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Productivity Center SLUT --> <!-- ************************************************************* Installation af 4in1 START --> <RunSynchronousCommand wcm:action="add"> <Order>16</Order> <Path>cmd /c %AppsRoot%\Install\ny\4IN1\setup.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af 4in1 SLUT --> <!-- ************************************************************* Installation af HD Protection START --> <RunSynchronousCommand wcm:action="add"> <Order>17</Order> <Path>cmd /c %AppsRoot%\Install\ny\HPROTECT\setup.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af HD Protection SLUT --> <!-- ************************************************************* Installation af Power Management START --> <RunSynchronousCommand wcm:action="add"> <Order>18</Order> <Path>cmd /c %AppsRoot%\Install\ny\IBMPM\Setup.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Power Management SLUT --> <!-- ************************************************************* Installation af Interface START --> <RunSynchronousCommand wcm:action="add"> <Order>19</Order> <Path>cmd /c %AppsRoot%\Install\ny\Interface\SETUP.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Interface SLUT --> <!-- ************************************************************* Installation af WLAN START --> <RunSynchronousCommand wcm:action="add"> <Order>20</Order> <Path>cmd /c %AppsRoot%\Install\ny\WLANINT\Autorun.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af WLAN SLUT --> <!-- ************************************************************* Installation af Fingerprint START --> <RunSynchronousCommand wcm:action="add"> <Order>21</Order> <Path>cmd /c %AppsRoot%\Install\ny\FingerprintSoftware.exe</Path> <WillReboot>Never</WillReboot> </RunSynchronousCommand> <!-- ************************************************************* Installation af Fingerprint SLUT --> <RunSynchronousCommand wcm:action="add"> <Order>60</Order> <Path>%WINDIR%\system32\sysprep\sysprep.exe /quiet /oobe /reboot</Path> <WillReboot>Always</WillReboot> </RunSynchronousCommand> </RunSynchronous> </component> </settings> I have tried a few combinations, without any luck. / Ron
×
×
  • Create New...