We have an application that excutes some code when system starts up. This code is written in our service starts up function. Since on system starts the service will also starts, our code gets executed on system starts.
But with windows 8.1 "Fast Startup" enabled (by default it is on), the services are already in the started mode when the system starts up. Windows does this for fast boot up. So our code will not be excuted, since we have written the code to execute on service starts up.
The problem is now that on windows 8.1 our code is not getting executed when system starts up.
Is there a way we can get notify when the system starts up.