Ask your Seven xml ? here Sample .xml's including Audit Mode for DVD and other Install's
#321
Posted 06 January 2012 - 06:22 AM
I tried to specify full path without any variable too and it doesn't work either.
#322
Posted 06 January 2012 - 07:27 AM
TheWalrus, on 06 January 2012 - 06:22 AM, said:
There is no folder temp at the root of C:\ partition, unless you create it!
There is a Temp folder inside: %Windir%\Temp
Have you tried to set your program inside: %SystemDrive%\Install\your_program /switches ?
You can also try to give a shorter name for the program, like: systemupdate.exe
Maybe that work !: (see quotes)
<SynchronousCommand wcm:action="add">
<Order>22</Order>
<CommandLine>cmd /c start /wait "%systemdrive%\TEMP\systemupdate.exe -s -a /s /v"/qn""</CommandLine>
<Description>install Lenovo System Update</Description>
<RequiresUserInput>false</RequiresUserInput>
</SynchronousCommand>
And if doesn't work you can use a batch file to solve this issue!
This post has been edited by myselfidem: 07 January 2012 - 01:57 AM
#323
Posted 07 January 2012 - 09:56 AM
REG ADD %KEY%\iAdd /V Inum /D "CMD /C Start /Wait %SystemDrive%\APPS\_Lenovo\systemupdate.exe -s -a /s /v\"/qn" /f
lenovo.PNG (12.01K)
Number of downloads: 14
#324
Posted 09 January 2012 - 06:17 AM
myselfidem: Of course I created/changed it, we try to have the temp folder in one easily to be accessed place
#325
Posted 09 January 2012 - 07:05 AM
Quote
This post has been edited by myselfidem: 09 January 2012 - 07:32 AM
#326
Posted 09 January 2012 - 08:02 AM
Not sure, testing now again and the variant maxx mentioned as well.
#327
Posted 09 January 2012 - 08:06 AM
This post has been edited by myselfidem: 09 January 2012 - 12:30 PM
#329
Posted 09 January 2012 - 02:53 PM
http://www.msfn.org/...t-wait-command/
http://technet.micro...y/cc723564.aspx
#330
Posted 10 January 2012 - 03:00 AM
<SynchronousCommand wcm:action="add">
<Order>22</Order>
<CommandLine>cmd /c "%systemdrive%\TEMP\systemupdate401-2011-07-25.exe -s -a /s /v"/qn"</CommandLine>
<Description>install Lenovo System Update</Description>
</SynchronousCommand>
Going to test something else. I believe it does work when there are no other commands before this. It happened with other program in past too btw.
#331
Posted 10 January 2012 - 06:36 AM
IF the command is run FIRST. It doesn't for otherwise for me. What's the deal here??
#332
Posted 10 January 2012 - 09:17 AM
TheWalrus, on 10 January 2012 - 06:36 AM, said:
IF the command is run FIRST. It doesn't for otherwise for me. What's the deal here??
Try running the previous command with the /wait. It is possible that the your EXE needs to use a process that is locked by a previous command. While it may add some extra time, I've learned to run all my commands with a wait on it.
#333
Posted 11 January 2012 - 03:03 AM
#334
Posted 12 January 2012 - 09:36 AM
TheWalrus, on 10 January 2012 - 06:36 AM, said:
IF the command is run FIRST. It doesn't for otherwise for me. What's the deal here??
Maybe the problem may be due to lack of space in the % temp% folder to deploy the application and install it. And happy to see it works by installing it first!
#335
Posted 12 January 2012 - 03:05 PM
There is no logical explanation for its behaviour.
Plenty of space on the disk so not a problem there...
In the end I gave up and just install it manually. And you know what? It doesn't even work - it crashes as soon as I try to check for updates
#336
Posted 21 January 2012 - 10:01 AM
myselfidem, on 05 July 2011 - 12:05 PM, said:
Solved:
http://www.msfn.org/...post__p__988316
This post has been edited by myselfidem: 21 January 2012 - 10:18 AM
#337
Posted 21 January 2012 - 08:28 PM
1. EULA window is still appearing, I can't post screenshot as it is only appearing on actual machine but not in virtual machine.
2. I see a Blank window just after OOBE animation for about 15-20 secs
3. I have used autologon but after installation when I set the password for Administrator and reboot, it again try to login automatically, and then I see a msg, of "The username of password is incorrect". How can I rectify my xml so that once I set the password it should not try to login automatically and wait at logon screen for me to enter password, instead for trying to login automatically.
My xml is attached herewith.
Attached File(s)
-
Autounattend.xml (7.23K)
Number of downloads: 7
#338
Posted 22 January 2012 - 03:02 AM
1. <AcceptEula> wasn't at the good place move to <UserData>
2. <DynamicUpdate> value change to <WillShowUI>Never</WillShowUI>
I'm guessing a blank window appears because the value was <WillShowUI>Always</WillShowUI> and <Enable>false</Enable>
3. Add for <AutoLogon> value: <LogonCount>3</LogonCount>
Like this you need to enter your password after 3 times AutoLogon!
This post has been edited by myselfidem: 26 January 2012 - 08:25 AM
#339
Posted 22 January 2012 - 07:02 AM
And regarding key, can I use "/image/index" at the both the places i.e. in user data of International-core-winpe and product key in user data, as I have already integrated the key in the wim itself.
This post has been edited by nice_guy75: 22 January 2012 - 07:29 AM
#340
Posted 22 January 2012 - 07:31 AM
Try the Autounattend.xml file attached and let me know the result, please...And use the same password!
Regards
*Edit: Remove this seetiings, if the key is already integrated:
<settings pass="windowsPE"> inside: <UserData>
<ProductKey>
<WillShowUI>OnError</WillShowUI>
<Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key>
</ProductKey>
And inside <settings pass="specialize">:
<ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>
>/IMAGE/INDEX< = is for the OSImage installation only!
<ImageInstall>
<OSImage>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/INDEX</Key>
<Value>1</Value>
</MetaData>
</InstallFrom>
<WillShowUI>OnError</WillShowUI>
<InstallToAvailablePartition>true</InstallToAvailablePartition>
</OSImage>
</ImageInstall>
Your new Autounattend.xml file without key.
Attached File(s)
-
Autounattend.xml (5.88K)
Number of downloads: 11
This post has been edited by myselfidem: 22 January 2012 - 08:15 AM
- ← Powerplan setting by unattend.xml
- Unattended Windows 7/Server 2008R2
- Batch script to install Updates Takes Forever! →



Help

Back to top









