Files
SabreTools.Serialization/SabreTools.Data.Models/WiseInstaller/Actions/AddToSystemIni.cs

25 lines
969 B
C#
Raw Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WiseInstaller.Actions
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Add to SYSTEM.INI
2025-10-30 23:54:22 -04:00
///
2025-09-26 12:09:34 -04:00
/// (Windows 3.1x or Windows 9x only) This action adds a device entry to the 386Enh
/// section of the System.ini file. The destination computer is restarted automatically to
/// force the new device driver to be loaded.
2025-10-30 23:54:22 -04:00
///
2025-09-26 12:09:34 -04:00
/// Do not use this action to modify the display driver (display=xxx) or any other non-
/// device entry. Instead, use the Edit INI action.
/// </summary>
/// <remarks>
/// This action is called through Call DLL Function and is mapped to "f3".
/// </remarks>
2025-10-30 23:54:22 -04:00
/// <see href="https://www.manualslib.com/manual/404969/Symantec-Wisescript-Editor-8-0-Reference-For-Wise-Package-Studio-V1-0.html"/>
2025-09-26 12:09:34 -04:00
public class AddToSystemIni : FunctionData
{
/// <summary>
/// Full commandline for the device
/// </summary>
public string? DeviceName { get; set; }
}
2025-10-30 23:54:22 -04:00
}