Real Geek Forums  

Go Back   Real Geek Forums > Archives > Operating Systems > Windows XP > Windows XP Embedded

Notices

Reply

Help on creating administrative account.

 

LinkBack Thread Tools Display Modes
Old 08-24-2003, 08:44 PM   #1 (permalink)
Default Help on creating administrative account.

Hi, all

I am using XPE first release (not SP1), and I am building
a image with "Explorer Shell" and "Windows Logon". I
disselected the options "Show Friendly Winlogon"
and "Welcome to Windows" screen before Winlogon"
for "Windows
Logon".

I would like to create an administrative account with
username "thisuser" and password "helpme". I tried
the following steps, but it did not work:

1. Create a component called "myAdminAccount" in CD, set
its "Prototype" to "Administrative Account";

2. In "Advanced Properties" of
component "myAdminAccount", add three Extended Properties
entries:

Name Format Value

CmiUserPassword String helpme
cmiUserName String thisuser
cmiUserGroup Integer 1

3. Save the work in CD and add it into database;
4. Add the component into my configuration in TD, and
buid run-time image.

After the FBA rehearsal, the system boots up with a log
in prompt, showing username as "thisuser" and
asks me to input password. However, it does not accept
password "helpme" as I set before.

I can log in with username "Administrator" and
password "helpme". After login, i run "computer
management"
but only find that only two accounts exist there, "guest"
and "administrator". But how come the system logon
windows already has username "thisuser" typed in there?

Could anyone help me on this?

Thanks!

Song
Song Lin
Guest
 
Posts: n/a
Reply With Quote  
Old 08-25-2003, 04:49 PM   #2 (permalink)
Default Re: Help on creating administrative account.

Song,

Did you try modifying the advaced properties of the Administrator account
component to include your admin user name and password? You can also add one
or more User Account components and tweak passwords and user group settings
there as well.
--
Hope this helps,

Lynda

"This posting is provided "AS IS" with no warranties, and confers no rights"
"Song Lin" <slin@cs.dal.ca> wrote in message
news:011001c36a80$7707bda0$a601280a@phx.gbl...
Quote:
> Hi, all
>
> I am using XPE first release (not SP1), and I am building
> a image with "Explorer Shell" and "Windows Logon". I
> disselected the options "Show Friendly Winlogon"
> and "Welcome to Windows" screen before Winlogon"
> for "Windows
> Logon".
>
> I would like to create an administrative account with
> username "thisuser" and password "helpme". I tried
> the following steps, but it did not work:
>
> 1. Create a component called "myAdminAccount" in CD, set
> its "Prototype" to "Administrative Account";
>
> 2. In "Advanced Properties" of
> component "myAdminAccount", add three Extended Properties
> entries:
>
> Name Format Value
>
> CmiUserPassword String helpme
> cmiUserName String thisuser
> cmiUserGroup Integer 1
>
> 3. Save the work in CD and add it into database;
> 4. Add the component into my configuration in TD, and
> buid run-time image.
>
> After the FBA rehearsal, the system boots up with a log
> in prompt, showing username as "thisuser" and
> asks me to input password. However, it does not accept
> password "helpme" as I set before.
>
> I can log in with username "Administrator" and
> password "helpme". After login, i run "computer
> management"
> but only find that only two accounts exist there, "guest"
> and "administrator". But how come the system logon
> windows already has username "thisuser" typed in there?
>
> Could anyone help me on this?
>
> Thanks!
>
> Song

Lynda Allen [MS]
Guest
 
Posts: n/a
Reply With Quote  
Old 08-26-2003, 01:28 PM   #3 (permalink)
Default Re: Help on creating administrative account.

Quote:
>-----Original Message-----
>Song,
>
>Did you try modifying the advaced properties of the
Administrator account
Quote:
>component to include your admin user name and password?
You can also add one
Quote:
>or more User Account components and tweak passwords and
user group settings
Quote:
>there as well.
>--
>Hope this helps,
>
Thanks for reply, Lynda.

Yes, I did. I tried it before I used the method as
explained in my post. The results are the same.

I also tried to use "net.exe" utility as FBA generic
command, as the follows:

REM create account
C:\windows\system32\net.exe thisuser /add
REM add user to administrator group
C:\windows\system32\net.exe localgroup administrators
thisuer /add

However, in executing the second operation, command
returns error message as "missing 2 files". I used
Dependency Walker 2.1 to check the required module, and
it seemed that I have included all the required files.
(My footprint is pretty large caz I run Oracle8i on my
image.)

Still not any lucky!

Anyway, thanks for your help!


Song Lin
Guest
 
Posts: n/a
Reply With Quote  
Old 08-27-2003, 01:05 AM   #4 (permalink)
Default Re: Help on creating administrative account.

Song,
Please try this:
1. Add a User Account component to your configuration - Do not use the
custom component you created, it won't work.
2. Modify the User Account advanced cmi property values in TD to read the
following:
- cmiUserName = "Song"
- cmiUserPassword = "Test"
- cmiUserGroup = "1"
3. Re-run check dependency and redeploy the runtime, there will be a new
account added to the administrator group (Group #1) called Song.

The User Account component is one of the few components you can add as many
instances as you like without causing conflicts. If you want to create 10
more users, simply add 10 more User Account components and modify those
values ablove to read whatever you prefer.

cmiUserGroup 1 = Admin group
cmiUserGroup 2 = Power User group
cmiUserGroup 3 = User group
cmiUserGroup 4 = Guest group

Do not try to make your own user account components, it's causing you more
issues than it's resolving.
Thanks



--

This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ========


"Song Lin" <slin@cs.dal.ca> wrote in message
news:056f01c36bd5$e7ed98e0$a001280a@phx.gbl...
Quote:
>
Quote:
> >-----Original Message-----
> >Song,
> >
> >Did you try modifying the advaced properties of the
> Administrator account
Quote:
> >component to include your admin user name and password?
> You can also add one
Quote:
> >or more User Account components and tweak passwords and
> user group settings
Quote:
> >there as well.
> >--
> >Hope this helps,
> >
>
> Thanks for reply, Lynda.
>
> Yes, I did. I tried it before I used the method as
> explained in my post. The results are the same.
>
> I also tried to use "net.exe" utility as FBA generic
> command, as the follows:
>
> REM create account
> C:\windows\system32\net.exe thisuser /add
> REM add user to administrator group
> C:\windows\system32\net.exe localgroup administrators
> thisuer /add
>
> However, in executing the second operation, command
> returns error message as "missing 2 files". I used
> Dependency Walker 2.1 to check the required module, and
> it seemed that I have included all the required files.
> (My footprint is pretty large caz I run Oracle8i on my
> image.)
>
> Still not any lucky!
>
> Anyway, thanks for your help!
>
>

Andy Allred [MS]
Guest
 
Posts: n/a
Reply With Quote  
Old 08-27-2003, 06:51 PM   #5 (permalink)
Default Re: Help on creating administrative account.

Yes, this works. I only tried it with
component "administrative account", not the user account".

Thank you very much for your help, Andy.

Song
Quote:
>-----Original Message-----
>Song,
>Please try this:
>1. Add a User Account component to your configuration -
Do not use the
Quote:
>custom component you created, it won't work.
>2. Modify the User Account advanced cmi property values
in TD to read the
Quote:
>following:
> - cmiUserName = "Song"
> - cmiUserPassword = "Test"
> - cmiUserGroup = "1"
>3. Re-run check dependency and redeploy the runtime,
there will be a new
Quote:
>account added to the administrator group (Group #1)
called Song.
Quote:
>
>The User Account component is one of the few components
you can add as many
Quote:
>instances as you like without causing conflicts. If you
want to create 10
Quote:
>more users, simply add 10 more User Account components
and modify those
Quote:
>values ablove to read whatever you prefer.
>
>cmiUserGroup 1 = Admin group
>cmiUserGroup 2 = Power User group
>cmiUserGroup 3 = User group
>cmiUserGroup 4 = Guest group
>
>Do not try to make your own user account components,
it's causing you more
Quote:
>issues than it's resolving.
>Thanks
>
>
>
>--
>
>This posting is provided "AS IS" with no warranties, and
confers no rights.
Quote:
>================================================= ========
=
Quote:
>
>
>"Song Lin" <slin@cs.dal.ca> wrote in message
>news:056f01c36bd5$e7ed98e0$a001280a@phx.gbl...
Quote:
>>
Quote:
>> >-----Original Message-----
>> >Song,
>> >
>> >Did you try modifying the advaced properties of the
>> Administrator account
Quote:
>> >component to include your admin user name and
password?
Quote:
Quote:
>> You can also add one
Quote:
>> >or more User Account components and tweak passwords
and
Quote:
Quote:
>> user group settings
Quote:
>> >there as well.
>> >--
>> >Hope this helps,
>> >
>>
>> Thanks for reply, Lynda.
>>
>> Yes, I did. I tried it before I used the method as
>> explained in my post. The results are the same.
>>
>> I also tried to use "net.exe" utility as FBA generic
>> command, as the follows:
>>
>> REM create account
>> C:\windows\system32\net.exe thisuser /add
>> REM add user to administrator group
>> C:\windows\system32\net.exe localgroup administrators
>> thisuer /add
>>
>> However, in executing the second operation, command
>> returns error message as "missing 2 files". I used
>> Dependency Walker 2.1 to check the required module, and
>> it seemed that I have included all the required files.
>> (My footprint is pretty large caz I run Oracle8i on my
>> image.)
>>
>> Still not any lucky!
>>
>> Anyway, thanks for your help!
>>
>>
>
>
>.
>
Song Lin
Guest
 
Posts: n/a
Reply With Quote  
Reply

Tags
None

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
How to enable Administrative Shares in Vista ?? Synapse Syndrome Windows Vista File Management 8 03-25-2007 03:29 AM
Administrative Shares not working Shrek Windows Vista Networking & Sharing 4 12-07-2006 10:46 PM
Using the administrative C$ share Holger Windows Vista Networking & Sharing 3 11-24-2006 06:52 PM
Reset User Account Passowrd (Administrative Privilages) Eddie Martinez Windows XP Accessibility 0 07-28-2003 02:22 AM
User's administrative rights Bertie Windows XP New Users 2 07-08-2003 11:11 PM


All times are GMT. The time now is 12:06 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright © 2005 - 2007 RealGeek.com. All rights reserved.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90