banner

[UserInfo]

Answer File = Oobeinfo.ini

The [UserInfo] section contains entries for prepopulating end-user information and personalizing the end user experience during Windows Welcome.

Entry Description
FirstName Specifies the end user's first name.
MiddleInitial Specifies the end user's middle initial.
LastName Specifies the end user's last name.
FuriganaName Specifies the end user's name, written in furigana.
CompanyName Specifies the end user's company name.
Address1 Specifies the end user's primary mailing address.
Address2 Specifies the end user's secondary mailing address.
City Specifies the end user's city.
State Specifies the end user's state or region.
Zip Specifies the end user's zip or postal code.
Country Specifies the end user's country/region.
PrimaryEmail Specifies the end user's e-mail address or temporary Windows ID.
SecondaryEmail Specifies the end user's secondary e-mail address.
AreaCode Specifies the end user's area or city code.
PhoneNumber Specifies the end user's telephone number.
Identity000 Specifies the end user's primary identity.
Identity001 Specifies the end user's secondary identity.
Identity002 Specifies the end user's third identity.
Identity003 Specifies the end user's fourth identity.
Identity004 Specifies the end user's fifth identity.
Identity005 Specifies the end user's sixth identity.

Sample

This sample demonstrates one use of the [UserInfo] section of Oobeinfo.ini.

[UserInfo]
FirstName = "Pat"
MiddleInitial = "L."
LastName = "Coleman"
FuriganaName = "furigana name"
CompanyName = "Woodgrove Bank"
Address1 = "1234 Main Street"
Address2 = "P.O. Box 12345"
City = "Woodgrove"
State = "WA"
Zip = "12345"
Country = "USA"
PrimaryEmail = "Pat@fabrikam.com"
SecondaryEmail = "Patc@fabrikam.com"
AreaCode = "123"
PhoneNumber = "456-7890"
Identity000 = "Pat"
Identity001 = "Zainal"
Identity002 = "Josh"
Identity003 = "Adam"
Identity004 = "Paula"
Identity005 = "Shay"

FirstName

Specifies the end user's first name.

Syntax FirstName = first name
Value firstname

The end user's first name.

Example
FirstName = "Pat"
Comments To determine the value of FirstName programmatically, use the UserInfo.get_FirstName method.

icon Return to top

MiddleInitial

Specifies the end user's middle initial.

Syntax MiddleInitial = letter
Value middleinitial

The end user's middle initial.

Example
MiddleInitial = "L."
Comments To determine the value of MiddleInitial programmatically, use the UserInfo.get_MiddleInitial method.

icon Return to top

LastName

Specifies the end user's last name.

Syntax LastName = last name
Value lastname

The end user's last name.

Example
LastName = "Coleman"
Comments To determine the value of LastName programmatically, use the UserInfo.get_LastName method.

icon Return to top

FuriganaName

Specifies the end user's name, written in furigana.

Syntax FuriganaName = furigana name
Value furigana

The end user's name, written in furigana.

Example
FuriganaName = furigana name
Comments The Japanese writing system comprises two different types of characters, kana and kanji. Each kana character has a specific pronunciation.

Individual kanji characters often have more than one pronunciation, and each pronunciation has a different meaning. Kanji characters are often augmented with tiny kana characters written above or next to the kanji characters, where the kana characters indicate the correct pronunciation of the word. Kana used in this way is called furigana.

To determine the value of FuriganaName programmatically, use the UserInfo.get_FuriganaName method.

icon Return to top

CompanyName

Specifies the end user's company name.

Syntax CompanyName = company name
Value companyname

The end user's company name.

Example
CompanyName = "Woodgrove Bank"
Comments To determine the value of CompanyName programmatically, use the UserInfo.get_CompanyName method.

icon Return to top

Address1

Specifies the end user's primary mailing address.

Syntax Address1 = address
Value address1

The end user's primary mailing address.

Example
Address1 = "1234 Main Street"
Comments To determine the value of Address1 programmatically, use the UserInfo.get_Address1 method.

icon Return to top

Address2

Specifies the end user's secondary mailing address.

Syntax Address2 = address
Value address2

The end user's secondary mailing address.

Example
Address2 = "P.O. Box 12345"
Comments To determine the value of Address2 programmatically, use the UserInfo.get_Address2 method.

icon Return to top

City

Specifies the end user's city.

Syntax City = city
Value city

The end user's city.

Example
City = "Woodgrove"
Comments To determine the value of City programmatically, use the UserInfo.get_City method.

icon Return to top

State

Specifies the end user's state or region.

Syntax State = state or region
Value state

The end user's state or region.

Example
State = "WA"
Comments To determine the value of State programmatically, use the UserInfo.get_State method.

icon Return to top

Zip

Specifies the end user's zip or postal code.

Syntax Zip = zip or postal code
Value zip

The end user's zip or postal code.

Example
Zip = "12345"
Comments To determine the value of Zip programmatically, use the UserInfo.get_Zip method.

icon Return to top

Country

Specifies the end user's country/region. Used only for registration or activation. Use the Default Region entry in the [Options] section to change the default setting on the computer.

Syntax Country = country
Value country

The end user's country/region.

Example
Country = "USA"
Comments To determine the value of Country programmatically, use the UserInfo.get_Country method.

icon Return to top

PrimaryEmail

Specifies the end user's e-mail address or temporary Microsoft® Windows® ID.

Syntax PrimaryEmail = e-mail address
Value primaryemail

The end user's e-mail address or temporary Windows ID.

Example
PrimaryEmail = "Pat@fabrikam.com"
Comments To determine the value of PrimaryEmail programmatically, use the UserInfo.get_PrimaryEmail method.

icon Return to top

SecondaryEmail

Specifies the end user's secondary e-mail address.

Syntax SecondaryEmail = e-mail address
Value secondaryemail

The end user's secondary e-mail address.

Example
SecondaryEmail = "PatC@fabrikam.com"
Comments To determine the value of SecondaryEmail programmatically, use the UserInfo.get_SecondaryEmail method.

icon Return to top

AreaCode

Specifies the end user's area or city code.

Syntax AreaCode = area code
Value areacode

The end user's area or city code.

Example
AreaCode = "123"
Comments To determine the value of AreaCode programmatically, use the UserInfo.get_AreaCode method.

icon Return to top

PhoneNumber

Specifies the end user's telephone number.

Syntax PhoneNumber = phone number
Value phonenumber

The end user's telephone number.

Example
PhoneNumber = "456-7890"
Comments To determine the value of PhoneNumber programmatically, use the UserInfo.get_PhoneNumber method.

icon Return to top

Identity000

Specifies the end user's primary identity.

Syntax Identity000 = user name
Value identity000

The end user's primary identity.

Example
Identity000 = "Pat"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top

Identity001

Specifies the end user's secondary identity.

Syntax Identity001 = user name
Value identity001

The end user's secondary identity.

Example
Identity001 = "Zainal"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top

Identity002

Specifies the end user's third identity.

Syntax Identity002 = user name
Value identity002

The end user's third identity.

Example
Identity002 = "Josh"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top

Identity003

Specifies the end user's fourth identity.

Syntax Identity003 = user name
Value identity003

The end user's fourth identity.

Example
Identity003 = "Adam"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top

Identity004

Specifies the end user's fifth identity.

Syntax Identity004 = user name
Value identity004

The end user's fifth identity.

Example
Identity004 = "Paula"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top

Identity005

Specifies the end user's sixth identity.

Syntax Identity005 = user name
Value identity005

The end user's sixth identity.

Example
Identity005 = "Shay"
Comments You can prepopulate up to six end-user identities.

To determine the value of Identity programmatically, use the UserInfo.get_Identity method.

icon Return to top