banner

[OEMRegistrationPage]

Answer File = Oobeinfo.ini

The [OEMRegistrationPage] section contains entries for specifying the original equipment manufacturer (OEM) registration page.

Entry Description
OEMAddRegPage Specifies whether to display up to two custom OEM registration pages in Windows Welcome.
PostToOEM Specifies whether to transmit registration information to the OEM's server.
RegPostURL Specifies the uniform resource locator (URL) of the location where Windows Welcome posts registration information.

Sample

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

[OEMRegistrationPage]
OEMAddRegPage = 1
PostToOEM = 1
RegPostURL = "http://www.fabrikam.com/registration"

OEMAddRegPage

Specifies whether to display up to two custom OEM registration pages in Windows Welcome.

Syntax OEMAddRegPage = 0 | 1
Values 0

Does not add additional registration pages to Windows Welcome. (Default)

1

Adds up to two additional registration pages to Windows Welcome.

Example
OEMAddRegPage = 1
Comments

To determine the value of OEMAddRegPage programmatically, use the Directions.get_DoOEMAddRegistration or the Register.get_OEMAddRegPage method.

icon Return to top

PostToOEM

Specifies whether to transmit registration information to the OEM's server.

Syntax PostToOEM = 0 | 1
Values 0

Does not transmit registration information to the OEM's server. (Default)

1

Transmits registration information to the OEM's server.

Example
PostToOEM = 1
Comments If PostToOEM = 1, Windows Welcome includes a check box on the registration page so that the end user can choose whether to transmit their registration data to your company. In addition, PostToOEM enables a hyperlink on this page to a Web page containing your company's privacy policy.

To determine the value of PostToOEM programmatically, use the Register.get_PostToOEM method.

icon Return to top

RegPostURL

Specifies the URL of the location where Windows Welcome posts registration information.

Syntax RegPostURL = URL
Value URL

URL of the location where Windows Welcome posts registration information.

Example
RegPostURL = "http://www.fabrikam.com/registration"
Comments To determine the value of RegPostURL programmatically, use the Register.get_RegPostURL method.

icon Return to top