Results 1 to 7 of 7

Thread: Windows Welcome Screen

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 2009
    Location
    Clive, IA in America!!!!
    Posts
    204

    Windows Welcome Screen

    OK,

    Some programs display a window, like some antivirus programs, at the windows welcome screen. This is before anybody has logged in.

    I want to do the same thing. I am creating a security program that can be used for maybe a library to monitor the computer and/or block webpages (That's another thread!).

    Anyhow, how would I be able to have my program run before anybody logs on. Would it have to be a Windows Service? How could I get it to be running in safe mode, too.

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Windows Welcome Screen

    Services dont have user interfaces. Why would it need to run in Safe Mode? Thats not what its for.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Oct 2009
    Location
    Clive, IA in America!!!!
    Posts
    204

    Re: Windows Welcome Screen

    Well, for one thing, I have a program called FireDaemon that lets me run any other application as a Windows Service. I have created programs before that DO have a visible GUI and still run as Windows Services.

    Secondly, I want to still have control over what's going on. Say a hacker gets hold of this computer. I want to still be able to block websites and other stuff. This is more of a security program. One to run hidden from the user. I don't necessarily want to display a form in safe mode Windows Welcome, but I want to BE ABLE to do so. To have my program running.

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Oct 2009
    Location
    Clive, IA in America!!!!
    Posts
    204

    Re: Windows Welcome Screen

    Go to this link to check out FireDeamon Pro

  5. #5
    Addicted Member
    Join Date
    Nov 2008
    Location
    UK
    Posts
    171

    Re: Windows Welcome Screen

    Quote Originally Posted by VBNetDude View Post
    Well, for one thing, I have a program called FireDaemon that lets me run any other application as a Windows Service. I have created programs before that DO have a visible GUI and still run as Windows Services.

    Secondly, I want to still have control over what's going on. Say a hacker gets hold of this computer. I want to still be able to block websites and other stuff. This is more of a security program. One to run hidden from the user. I don't necessarily want to display a form in safe mode Windows Welcome, but I want to BE ABLE to do so. To have my program running.
    You can't run your application in safe mode, hence why it's called safe mode because it runs only the nessercary system stuff.

    If you do want to do it, it sounds miscellaneous.

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Oct 2009
    Location
    Clive, IA in America!!!!
    Posts
    204

    Re: Windows Welcome Screen

    It IS possible. I don't know how, but it is possible. There is another program that has a dll name BSafeFltr.dll. When I boot up in safe mode it is one of the files loaded. It is still running in the background!

  7. #7
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Windows Welcome Screen

    I don't know for a fact but I doubt that you could do what you want to do in VB.NET. Applications like that need to work with the OS at a low level and VB just isn't built for that. You would end up writing a fair chunk of you app as Windows API declarations. I'm not saying that it can't be done in VB; just that it shouldn't. Vb wasn't built for that sort of thing so if you want an application like that that works then it should be written in unmanaged C++.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width