Show / Hide Table of Contents

    Class AdditionalUnattendContent

    Specifies additional XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. Contents are defined by setting name, component name, and the pass in which the content is applied.

    Inheritance
    Object
    AdditionalUnattendContent
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class AdditionalUnattendContent

    Constructors

    AdditionalUnattendContent()

    Initializes a new instance of the AdditionalUnattendContent class.

    Declaration
    public AdditionalUnattendContent ();

    AdditionalUnattendContent(Nullable<PassNames>, Nullable<ComponentNames>, Nullable<SettingNames>, String)

    Initializes a new instance of the AdditionalUnattendContent class.

    Declaration
    public AdditionalUnattendContent (Nullable<Microsoft.Azure.Management.Compute.Models.PassNames> passName = null, Nullable<Microsoft.Azure.Management.Compute.Models.ComponentNames> componentName = null, Nullable<Microsoft.Azure.Management.Compute.Models.SettingNames> settingName = null, string content = null);
    Parameters
    Nullable<PassNames> passName

    The pass name. Currently, the only allowable value is OobeSystem. Possible values include: 'OobeSystem'

    Nullable<ComponentNames> componentName

    The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup. Possible values include: 'Microsoft-Windows-Shell-Setup'

    Nullable<SettingNames> settingName

    Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon. Possible values include: 'AutoLogon', 'FirstLogonCommands'

    String content

    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.

    Properties

    ComponentName

    Gets or sets the component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup. Possible values include: 'Microsoft-Windows-Shell-Setup'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="componentName")]
    public Nullable<Microsoft.Azure.Management.Compute.Models.ComponentNames> ComponentName { get; set; }
    Property Value
    Nullable<ComponentNames>

    Content

    Gets or sets 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.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="content")]
    public string Content { get; set; }
    Property Value
    String

    PassName

    Gets or sets the pass name. Currently, the only allowable value is OobeSystem. Possible values include: 'OobeSystem'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="passName")]
    public Nullable<Microsoft.Azure.Management.Compute.Models.PassNames> PassName { get; set; }
    Property Value
    Nullable<PassNames>

    SettingName

    Gets or sets specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon. Possible values include: 'AutoLogon', 'FirstLogonCommands'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="settingName")]
    public Nullable<Microsoft.Azure.Management.Compute.Models.SettingNames> SettingName { get; set; }
    Property Value
    Nullable<SettingNames>

    Back to top Azure SDK for Net