unknown
1970-01-01 00:00:00 UTC
I have a volume license and used that to install from. I don't know if
there are any differences that would stop this approach with OEM or retail
media.
I'm not very experienced with windows scripting, and but I imagine that
several of the things I do in the unattended (join domain, set local
admins, rename pc) could be done after the install via todos.
Thoughts?
Doug
http://marketshare.hitslink.com/operating-system-market-share.aspx?qprid=10
I got as far getting the WinPE 3.0 boot image up and running, but I need
to focus on other projects right now. Anyways, it did sound like they
got it to work.
Johan Ho
------------------------------------------------------------------------------
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
unattended-devel mailing list
https://lists.sourceforge.net/lists/listinfo/unattended-devel
--14dae93404c57dd8f904cd9936b0
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
I have a Win7 unattended going.� Well, kind of.<br><br>I boot from a USB drive with an unattended xml file on it, which does the basic install and then starts a modified "apps only" type of install after windows is done.<br> <br>I have to create/modify the unattended xml by hand every time - it has my computer name, domain, etc, as well as the main unattended bat file tor run.� I also create a user-pc specific .bat file that contains all of the todos for the user and pc type.<br> <br>It's been a couple of years since I set it up, and I know I ran into several problems, mainly around running scripts from a share that was in my windows domain and a computer that wasn't - or vice versa.� I created a special account in my domain to do the install with.� And I ended up breaking the pre.bat into two parts with perl being installed between them.� <br> <br>That part of my unattended xml looks like:<br><span style="font-family:courier new,monospace"><br><FirstLogonCommands><br> <SynchronousCommand wcm:action="add"><br> <Order>1</Order><br>
<Description>Running appsonly</Description><br> <CommandLine>cmd /C start /wait net use Z: \\ntinstall\install mypass /user:mydomain\myuser</CommandLine><br> </SynchronousCommand><br>
<SynchronousCommand wcm:action="add"><br> <Order>2</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\pre1.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>3</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C Z:\scripts\perl.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>4</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\pre2.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>5</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\<a href="http://todo.pl">todo.pl</a> UserSpecificFile.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>6</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\post.bat</CommandLine><br>
</SynchronousCommand><br></FirstLogonCommands></span><br>
<p class="MsoNoSpacing"><span style="font-size:9.0pt;font-family:"Courier New""><span style></span></span>I tried the WinPE boot then install from a network share yesterday for the first time, and it worked great. No PXE boot is required.<br>
</p>Here's my thoughts on how this could work:<br><br>User has to make a WinPE boot disk and boot from it. <br>Map \\ntinstall\install to Z:<br>
there are any differences that would stop this approach with OEM or retail
media.
I'm not very experienced with windows scripting, and but I imagine that
several of the things I do in the unattended (join domain, set local
admins, rename pc) could be done after the install via todos.
Thoughts?
Doug
Hi,
I just saw that win7 had become Nº1 in the operations Systems market
share.I just saw that win7 had become Nº1 in the operations Systems market
http://marketshare.hitslink.com/operating-system-market-share.aspx?qprid=10
I do not see myself with enough time to accomplish this task. So I beg
for some help on this matter.
------------------------------------------------------------------------------for some help on this matter.
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
unattended-devel mailing list
https://lists.sourceforge.net/lists/listinfo/unattended-devel
I also recently started trying to get unattended installation of WindowsMost devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
unattended-devel mailing list
https://lists.sourceforge.net/lists/listinfo/unattended-devel
I got as far getting the WinPE 3.0 boot image up and running, but I need
to focus on other projects right now. Anyways, it did sound like they
got it to work.
Johan Ho
------------------------------------------------------------------------------
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
unattended-devel mailing list
https://lists.sourceforge.net/lists/listinfo/unattended-devel
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
I have a Win7 unattended going.� Well, kind of.<br><br>I boot from a USB drive with an unattended xml file on it, which does the basic install and then starts a modified "apps only" type of install after windows is done.<br> <br>I have to create/modify the unattended xml by hand every time - it has my computer name, domain, etc, as well as the main unattended bat file tor run.� I also create a user-pc specific .bat file that contains all of the todos for the user and pc type.<br> <br>It's been a couple of years since I set it up, and I know I ran into several problems, mainly around running scripts from a share that was in my windows domain and a computer that wasn't - or vice versa.� I created a special account in my domain to do the install with.� And I ended up breaking the pre.bat into two parts with perl being installed between them.� <br> <br>That part of my unattended xml looks like:<br><span style="font-family:courier new,monospace"><br><FirstLogonCommands><br> <SynchronousCommand wcm:action="add"><br> <Order>1</Order><br>
<Description>Running appsonly</Description><br> <CommandLine>cmd /C start /wait net use Z: \\ntinstall\install mypass /user:mydomain\myuser</CommandLine><br> </SynchronousCommand><br>
<SynchronousCommand wcm:action="add"><br> <Order>2</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\pre1.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>3</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C Z:\scripts\perl.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>4</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\pre2.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>5</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\<a href="http://todo.pl">todo.pl</a> UserSpecificFile.bat</CommandLine><br>
</SynchronousCommand><br> <SynchronousCommand wcm:action="add"><br> <Order>6</Order><br> <Description>Running appsonly</Description><br> <CommandLine>cmd /C z:\bin\post.bat</CommandLine><br>
</SynchronousCommand><br></FirstLogonCommands></span><br>
<p class="MsoNoSpacing"><span style="font-size:9.0pt;font-family:"Courier New""><span style></span></span>I tried the WinPE boot then install from a network share yesterday for the first time, and it worked great. No PXE boot is required.<br>
</p>Here's my thoughts on how this could work:<br><br>User has to make a WinPE boot disk and boot from it. <br>Map \\ntinstall\install to Z:<br>