AdditionalUnattendContent Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AdditionalUnattendContent() |
Initializes a new instance of the AdditionalUnattendContent class. |
AdditionalUnattendContent(Nullable<PassNames>, Nullable<ComponentNames>, Nullable<SettingNames>, String) |
Initializes a new instance of the AdditionalUnattendContent class. |
AdditionalUnattendContent()
Initializes a new instance of the AdditionalUnattendContent class.
public AdditionalUnattendContent ();
Public Sub New ()
Applies to
AdditionalUnattendContent(Nullable<PassNames>, Nullable<ComponentNames>, Nullable<SettingNames>, String)
Initializes a new instance of the AdditionalUnattendContent class.
public AdditionalUnattendContent (Microsoft.Azure.Management.Compute.Models.PassNames? passName = default, Microsoft.Azure.Management.Compute.Models.ComponentNames? componentName = default, Microsoft.Azure.Management.Compute.Models.SettingNames? settingName = default, string content = default);
new Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent : Nullable<Microsoft.Azure.Management.Compute.Models.PassNames> * Nullable<Microsoft.Azure.Management.Compute.Models.ComponentNames> * Nullable<Microsoft.Azure.Management.Compute.Models.SettingNames> * string -> Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent
Public Sub New (Optional passName As Nullable(Of PassNames) = Nothing, Optional componentName As Nullable(Of ComponentNames) = Nothing, Optional settingName As Nullable(Of SettingNames) = Nothing, Optional content As String = Nothing)
Parameters
The pass name. Currently, the only allowable value is OobeSystem. Possible values include: 'OobeSystem'
- componentName
- Nullable<ComponentNames>
The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup. Possible values include: 'Microsoft-Windows-Shell-Setup'
- settingName
- Nullable<SettingNames>
Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon. Possible values include: 'AutoLogon', 'FirstLogonCommands'
- content
- String
Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
Applies to
Azure SDK for .NET