BcdLibrary_SafeBoot - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTBCD_H

/**
 * Enumeration for Safe Boot options in the Boot Configuration Data (BCD) library.
 * This enumeration defines the different safe boot modes that can be specified in the BCD library.
 */
typedef enum BcdLibrary_SafeBoot
{
    /**
     * Load the drivers and services specified by name or group under the following registry key:
     * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal.
     */
    SafemodeMinimal = 0,
    /**
     * Load the drivers and services specified by name or group under the following registry key:
     * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network.
     */
    SafemodeNetwork = 1,
    /**
     * Boot the system into a repair mode that restores the Active Directory service from backup medium.
     */
    SafemodeDsRepair = 2
} BcdLibrary_SafeBoot;

#endif

View code on GitHub

No description available.