Raoul90 Posted August 18, 2009 Posted August 18, 2009 Hello,Could someone explain me how I can install programs from the DVD of Windows 7?In Windows XP:- Create Folder @ CD (root\Software\..)- Create a RunOncEx.cmd and call it from CMDlines.cmd contains:@echo offSetLocal EnableExtensionsSET CDROM=%~d0SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceExREG ADD %KEY% /V TITLE /D "Installing blabla.." /fREG ADD %KEY%\001 /VE /D "Installing blabla." /fREG ADD %KEY%\001 /V 1 /D "%~d0\SOFTWARE\Setup.exe /SP- /VERYSILENT /NORESTART" /fEndLocalEXITBut with Windows 7 this doesnt work?What is the easiest way to install some applications from the DVD (without using $OEM$ folder)?Someone that can tell me how to? Thank you!
cluberti Posted August 19, 2009 Posted August 19, 2009 There are really two options - either in the specialize settings pass, via component "Microsoft-Windows-Deployment" as a RunSynchronous section's RunSynchronousCommand command, or in the oobeSystem settings pass, via component "Microsoft-Windows-Shell-Setup" as a FirstLogonCommands section's SynchronousCommand. Here's a snippet from one of my unattend files, showing the relevant passes and sections only: <settings pass="specialize"> ... <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>EnableAdmin</Description> <Order>1</Order> <Path>cmd /c net user Administrator /active:yes</Path> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Description>EnableAdmin_ploc</Description> <Order>2</Order> <Path>cmd /c net user Administrator_ploc /active:yes</Path> </RunSynchronousCommand> <RunSynchronousCommand wcm:action="add"> <Description>UnfilterAdministratorToken</Description> <Order>3</Order> <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path> </RunSynchronousCommand> </RunSynchronous> </component> ... </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"> ... <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cscript.exe C:\Scripts\MyFirstScript.wsf /start</CommandLine> <Description>Run first WSF script from C: drive</Description> <Order>1</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cscript.exe D:\Scripts\MyFirstScript.wsf /start</CommandLine> <Description>Run first WSF script from D: drive</Description> <Order>2</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cscript.exe E:\Scripts\MyFirstScript.wsf /start</CommandLine> <Description>Run first WSF script from E: drive</Description> <Order>3</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cscript.exe F:\Scripts\MyFirstScript.wsf /start</CommandLine> <Description>Run first WSF script from F: drive</Description> <Order>4</Order> </SynchronousCommand> </FirstLogonCommands> </component> ... </settings>Obviously this is just a snippet of these sections - use the WSIM or MDT+WAIK if you need a GUI to try and configure this.
Raoul90 Posted August 27, 2009 Author Posted August 27, 2009 Thanks, I am using firstlogoncommands now, but is there a way to install the executables from the DVD, so without using the $OEM$ folder to copy the files to the harddrive, just start them from the Windows 7 DVD.
yanki Posted August 27, 2009 Posted August 27, 2009 Hello,Could someone explain me how I can install programs from the DVD of Windows 7?In Windows XP:- Create Folder @ CD (root\Software\..)- Create a RunOncEx.cmd and call it from CMDlines.cmd contains:@echo offSetLocal EnableExtensionsSET CDROM=%~d0SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceExREG ADD %KEY% /V TITLE /D "Installing blabla.." /fREG ADD %KEY%\001 /VE /D "Installing blabla." /fREG ADD %KEY%\001 /V 1 /D "%~d0\SOFTWARE\Setup.exe /SP- /VERYSILENT /NORESTART" /fEndLocalEXITBut with Windows 7 this doesnt work?What is the easiest way to install some applications from the DVD (without using $OEM$ folder)?Someone that can tell me how to? Thank you! There is a easier way.I have found after long searching a tool where you can do everything with such as:*intregating updates from windows;*intregating software into install.wim file ( does it all by him self)*driver intregation.no and its not vlite or nlite, its i a better one special for windows 7.I'm trying it out but i love it at the moment.
Raoul90 Posted August 27, 2009 Author Posted August 27, 2009 You mean Windows 7 Toolkit? http://www.wincert.net/forum/index.php?/fo...dows-7-toolkit/
jamesbebby Posted August 27, 2009 Posted August 27, 2009 (edited) hi, i found it a right in the a** trying 2 add some silent installs 2 vista & win7.what i did was was copy the file over in the setup [$OEM$] u could just put the files in a folder on the disc.when i made a CMD that saves 2 the desktop when the setup is runnin [$OEM$], so when the desktop coms up i just click on the CMD and the silent installs start the last command deletes the folder.i found this the best way coz when i was try with SETUPCOMPLETE.CMD [basically RunOncEx.cmd in vista/win7] thing where bein installed but icons and start menu entries were not showin up i found out it was something 2 do with somethings bein install 2 the pubic user & others to the main user.i know this is not the way u want 2 do it but it is an option & it works great.good luck!cheers james Edited August 27, 2009 by jamesbebby
yanki Posted August 27, 2009 Posted August 27, 2009 You mean Windows 7 Toolkit? http://www.wincert.net/forum/index.php?/fo...dows-7-toolkit/Yes thats it Raoul90 , but if i look on that site can i leave the number 90 away Coming back to you setupcomplete.cmd i've have no problem with it, a part i have intregatedwith the tool kit but the bigger programs like office i use the setcomplete file.
ajua Posted August 28, 2009 Posted August 28, 2009 I use FirstLogonCommands.Just make sure to include a variable (such as the one being used in the Unattended Guide of MSFN) so that you can put your folder/setups wverywhere you want, including DVD.
Raoul90 Posted August 28, 2009 Author Posted August 28, 2009 I use FirstLogonCommands.Just make sure to include a variable (such as the one being used in the Unattended Guide of MSFN) so that you can put your folder/setups wverywhere you want, including DVD.Yes I know, but where should i put it and what to put there. I assume something like:FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\bootmgr SET CDROM=%%But where should I put it?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now