devxlogo

How did Windows start?

If you need to know how Windows was started you have just to call an API function: GetSystemMetrics. Passing the SM_CLEANBOOT constant as parameter, the function returns a Long value with this meaning:

0 = Normal boot
1 = Fail-safe boot
2 = Fail-safe with network boot

Here ia an example that shows how to call the function:

Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) _    As LongPublic Const SM_CLEANBOOT = 67Private Sub Command1_Click()    Select Case GetSystemMetrics(SM_CLEANBOOT)        Case 0: MsgBox "Normal boot"        Case 1: MsgBox "Fail-safe boot"        Case 2: MsgBox "Fail-safe with network boot"    End SelectEnd Sub  

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.