IPB

Google Frontpage Forums Unattended CD/DVD Guide
 Forum Rules Unattended CD/DVD Guide Homepage · MSFN Forum Rules
 
Reply to this topicStart new topic
> Adding the recovery console to CD installation, Can this be automatically installed as 2
gareththegod
post Oct 1 2003, 03:39 PM
Post #1


Member
**

Group: Members
Posts: 114
Joined: 28-September 03
Member No.: 7468



This is how to install it from within windows xp:

Install the Recovery Console to your hard drive and add it to the boot menu by inserting you XP CD, click Start, Run and typing X:\i386\winnt32.exe /cmdcons and click OK (replace X: with CD drive letter). Follow the instruction, pressing [Esc] to skip the updated files part of the process.

it changes the boot.ini file as well to start windows up in 30 seconds. If its possible could it be changed to 3?

Just to make this harder I want to be able to choose what drive/partition this is installed to.

to use the set command in windows xp reovery console so that you can gain access to all the drives removeable too, wild card usage and no copy comfirmation you need to add this reg hack but im not sure where to put it.

CODE
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole]
"SetCommand"=dword:00000001
"SecurityLevel"=dword:00000000


This post has been edited by gareththegod: Oct 1 2003, 03:43 PM
Go to the top of the page
 
+Quote Post
gareththegod
post Oct 1 2003, 04:21 PM
Post #2


Member
**

Group: Members
Posts: 114
Joined: 28-September 03
Member No.: 7468



Just found this. Could I make a winnt batch file (winnt.bat)
CODE
@rem SetupMgrTag
@echo off

set AnswerFile=.\winnt.sif
set SetupFiles=.\i386

.\i386\winnt /s:%SetupFiles% /unattend:%AnswerFile% /makelocalsource /cmdcons

but after reading the help file I don't think that the /cmdcons can be done until the [GUIRUNONCE] part but I would have to copy the i386 folder to the systemdrive first to enable it to run.
then it should look like this
CODE
@rem SetupMgrTag
@echo off

set AnswerFile=.\winnt.sif
set SetupFiles=.\i386

.\i386\winnt32 /s:%SetupFiles% /unattend:%AnswerFile% /makelocalsource


winnt.sif
CODE
[GUIRUNONCE]
%SYSTEMDRIVE%\i386\winnt32 /cmdcons


well i will need to test this.

This post has been edited by gareththegod: Oct 6 2003, 05:09 AM
Go to the top of the page
 
+Quote Post
gosh
post Oct 5 2003, 09:53 PM
Post #3


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


It should be winnt32.exe /cmdcons /dudisable, i believe. MS has an article called "how to install recovery console", and at the bottom it gives that command.

To change the timeout, use the command bootcfg.exe. This command is only installed on XP Pro (don't ask me why). Just type bootcfg /?. I used this command to specify the kernel on an unattended install (/kernel=)

And you HAVE to install recovery console via Guirunonce, it just won't work in cmdlines.txt.

If youre installing win2k you could also use rconsole.exe. rconsole.exe was the redistributed package for recovery console, but it's very hard to find. I've used it once.

-gosh
Go to the top of the page
 
+Quote Post
demlak
post Oct 5 2003, 10:22 PM
Post #4


Junior
*

Group: Members
Posts: 77
Joined: 16-August 03
Member No.: 5827



rconsole is on the win2k resource kit

btw: WINNT32.EXE /cmdcons /unattend works perfect on win2k..
Go to the top of the page
 
+Quote Post
gosh
post Oct 6 2003, 03:25 AM
Post #5


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


That's what i meant:

http://support.microsoft.com/default.aspx?...4&Product=winxp

Installing Recovery Console During an Unattended Install
In order to install the Recovery Console during the unattended installation of Windows, it is necessary to use the [GuiRunOnce] section of the unattend.txt file.
Command1="path\winnt32 /cmdcons /unattend"

For more information about how to use the Unattend.txt file, see the Deployment Planning Guide of the Windows 2000 Server Resource Kit.


-gosh
Go to the top of the page
 
+Quote Post
gareththegod
post Oct 31 2003, 03:35 PM
Post #6


Member
**

Group: Members
Posts: 114
Joined: 28-September 03
Member No.: 7468



is there a way to get a windows xp cd to install itself using a winnt.bat file without using a floppy drive just using it from a cd. As this is the only problem i have then i will have a nice cd.
Do you know if it needs to go in the root ob the cd?
Go to the top of the page
 
+Quote Post
DPR
post Oct 31 2003, 05:15 PM
Post #7


Newbie


Group: Members
Posts: 38
Joined: 21-October 03
Member No.: 8384



QUOTE (gosh @ Oct 6 2003, 04:53 AM)
And you HAVE to install recovery console via Guirunonce, it just won't work in cmdlines.txt.

That's not true ! I'm using a batch-file in cmdlines.txt to run the following line:

start /b /wait %SETUPDRV%i386\winnt32.exe /cmdcons /dudisable /unattend

whereas %SETUPDRV% represents the CD setup drive. And it works fine ! Besides - the M$ article doesn't say it's not possible to run it from cmdlines.txt ...
Go to the top of the page
 
+Quote Post
gosh
post Oct 31 2003, 05:23 PM
Post #8


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


Using cmdlines to install recovery console won't work. If it did, ms would recommend using it. I've seen cases where recovery console has problems if installed via cmdlines.

-gosh
Go to the top of the page
 
+Quote Post
DPR
post Oct 31 2003, 05:50 PM
Post #9


Newbie


Group: Members
Posts: 38
Joined: 21-October 03
Member No.: 8384



QUOTE (gosh @ Nov 1 2003, 12:23 AM)
Using cmdlines to install recovery console won't work.  If it did, ms would recommend using it.  I've seen cases where recovery console has problems if installed via cmdlines.

Well it does work perfectly for me. And I can't see any reason why it shouldn't work - the recovery console doesn't need any user specific data.

Not everything M$ recommends is good and not everything M$ does not recommend is bad ... rolleyes.gif
Go to the top of the page
 
+Quote Post
gosh
post Oct 31 2003, 06:07 PM
Post #10


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


I wish i could give you a better reason. All i remember from previous research is it didn't work for good reasons. I also know that the reason that article doesn't recommend cmdlines is because cmdlines doesn't work, the article intentionally didn't mention it.

-gosh
Go to the top of the page
 
+Quote Post
GreenMachine
post Oct 31 2003, 06:12 PM
Post #11


ineXPlicable
Group Icon

Group: Supreme Sponsors
Posts: 3082
Joined: 22-August 03
Member No.: 5995
Country Flag


Perhaps if you knew what the hell you were talking about you COULD give a reason. Once again, you're spreading untruths. Please do your research before posting such (false) claims. It does not help any of us.
Go to the top of the page
 
+Quote Post
gosh
post Oct 31 2003, 06:44 PM
Post #12


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


If i could give a more specific reason i would, but im not lieing. Why don't you go make a batch file or something green machine, make yourself useful.

-gosh
Go to the top of the page
 
+Quote Post
GreenMachine
post Oct 31 2003, 06:53 PM
Post #13


ineXPlicable
Group Icon

Group: Supreme Sponsors
Posts: 3082
Joined: 22-August 03
Member No.: 5995
Country Flag


I would certainly not accuse you of lying. You were simply misinformed, and spreading your mis-information. Is that useful? If you do not know what you are talking about, please, for the sake of all of us, have the decency to refrain from posting your ignorance. You claim in no uncertain terms that something cannot be done, even after a fellow member has said that he did it. What's the point? Is DPR lying? Do you honestly find such behaiviour constructive?
Go to the top of the page
 
+Quote Post
XtremeMaC
post Oct 31 2003, 06:54 PM
Post #14


MSFN SuperB
**********

Group: Members
Posts: 5542
Joined: 13-October 03
From: in front of the computer
Member No.: 8053
OS: Vista Ultimate x86
Country Flag


I don't have a great knowledge in recovery console
but afaik there are listed commands you can apply in there
type HELP in recovery console to get the commands that could be used.

or are u guys talking about something else smile.gif
Go to the top of the page
 
+Quote Post
bisco2k
post Oct 31 2003, 06:58 PM
Post #15


Junior
*

Group: Members
Posts: 72
Joined: 5-August 03
From: Glasgow UK
Member No.: 5487



ya are spot on DPR. the command does work perfect, good job mate thumbup.gif
Go to the top of the page
 
+Quote Post
gareththegod
post Oct 31 2003, 07:06 PM
Post #16


Member
**

Group: Members
Posts: 114
Joined: 28-September 03
Member No.: 7468



CODE
@rem SetupMgrTag
@echo off

set AnswerFile=.\i386\Winnt.sif
set SetupFiles=.\i386

.\i386\winnt32 /s:%SetupFiles% /unattend:%AnswerFile% /makelocalsource

the onlthing that I want to do is to make the i386 folder copy over to the %systemdrive% so that I can run recovery console install at the [GUIRUNONCE] bit of the winnt.sif
Go to the top of the page
 
+Quote Post
gosh
post Oct 31 2003, 07:08 PM
Post #17


gosh 2.0
Group Icon

Group: Patrons
Posts: 2217
Joined: 3-October 03
Member No.: 7679
OS: none
Country Flag


I am just giving my advice, like any advice you can take it or ignore it. My advice is don't install recovery console in cmdlines.txt. I wish i could give a better reason, but i can't. If you read between the lines you'll understand what I mean.

-gosh
Go to the top of the page
 
+Quote Post
eXPerience-XP
post Oct 31 2003, 07:14 PM
Post #18


The Offical MSFN Newbie
***

Group: Members
Posts: 354
Joined: 23-September 03
Member No.: 7321
Country Flag


ok this argument stops here... GreenMachine dont say anythign back that will cause gosh to make another post and same with u gosh

-eXPerience
Go to the top of the page
 
+Quote Post

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   4 code3x 2529 26th September 2001 - 12:40 PM
Last post by: code3x
No New Posts   1 Silent Z 825 12th January 2002 - 04:24 PM
Last post by: Big Booger
No New Posts