About 882,000 results
Open links in new tab
  1. How to disable/enable startup programs through Registry Editor

    May 8, 2024 · As we all know, startup programs can commonly be found in the task manager where we can either enable or disable them. The location of those programs are found in different parts of the …

  2. Automatically run program on Windows Server startup

    Jun 30, 2021 · You can do it with a Scheduled Task setup to run at startup time or on a schedule so there won't be problems with users logging on/off. Open Task Scheduler, Windows Key + R …

  3. Does an ASP.NET Core 8 application use a StartUp.cs file?

    Dec 14, 2023 · In ASP.NET Core (which includes .NET 8), the Startup.cs class is still a central part of the application's configuration, but it's not the only way to set up your application.

  4. linux - How to run a shell script at startup - Stack Overflow

    Oct 19, 2012 · The absolute easiest method if all you want to run is a simple script, (or anything) is if you have a gui to use system > preferences then startup apps. just browse to the script you want and …

  5. Run async code during startup in a ASP.Net Core application

    Aug 9, 2020 · Run async code during startup in a ASP.Net Core application Asked 5 years, 4 months ago Modified 5 years, 4 months ago Viewed 13k times

  6. PHP Warning: PHP Startup: Unable to load dynamic library

    Mar 12, 2011 · I started to get the PHP Warning: PHP Startup: Unable to load dynamic library message related to dll. I commented out mysql(and i).dll in the same file but the message didn't go away up …

  7. Please select a valid startup item - Stack Overflow

    Dec 4, 2017 · Obviously I have to select a valid startup item, but there are two pieces of information I need to do that: what are typical valid startup items that I can try to select? How do I select them? I …

  8. How to change StartupUri of WPF Application? - Stack Overflow

    I noticed that ShowDialog sets Application.MainWindow and when dialog ends, it sets it back to null, and because of this setting StartupUri does not work after calling Modal Dialog in OnStartup or Startup …

  9. How do I run a PowerShell script when the computer starts?

    I finally got my PowerShell script to run automatically on every startup. You will need to create two files: the first is the Powershell script (e.g. script.ps1) and the second is a .cmd file that will contain …

  10. How do I write logs from within Startup.cs? - Stack Overflow

    In order to debug a .NET Core app which is failing on startup, I would like to write logs from within the startup.cs file. I have logging setup within the file that can be used in the rest of the app