13 lines
1.1 KiB
Plaintext
13 lines
1.1 KiB
Plaintext
|
|
[ClassVersion("1.0.0.0"), FriendlyName("AdvancedBootOptions")]
|
|
class DCPP_AdvancedBootOptions : OMI_BaseResource
|
|
{
|
|
[Key] String Category;
|
|
[Write, Description("LegacyOrom"), ValueMap{"Enabled","Disabled"}, Values{"Enabled","Disabled"}] string LegacyOrom;
|
|
[Write, Description("AttemptLegacyBoot"), ValueMap{"Enabled","Disabled"}, Values{"Enabled","Disabled"}] string AttemptLegacyBoot;
|
|
[Write, Description("Password")] string Password;
|
|
[Write, Description("SecurePassword")] string SecurePassword;
|
|
[Write] string PathToKey;
|
|
};
|
|
|