0

So in Linux you need to manually run some commands or write config files to connect to the network. Before these steps you can use the system perfectly fine without a connection. Is something like this possible on Windows 10? Currently, even if I haven't login yet I see a bunch of packets running somewhere. That is: is it possible to use Windows offline without disabling a network adapter or intentionally misconfiguring your connection?

cppbest
  • 3
  • 1

1 Answers1

0

If you mean wired connection, there is nothing out of the box. But you could schedule scripts for that. One would disable connection on device start up, another would enable it on user sign-in or manually by running the script.

The proper way to do this is actually not the device, but a network layer. For example, you could implement network layer authentication with .1X and user credentials. This way network will be down until user logs in and authenticates successfully. You need aditional infrastructure to achieve this, like support of .1X protocol on your network switches and some server to do authentication (Windows server can do that)

Another option might be some kind of third-party software, but it is out of scope and I can't even recommend any.

J-M
  • 1,930
  • 1
  • 11
  • 17
  • Interesting. Is it possible to schedule these user scripts before any system process that inits a connection? Please provide some links that I should read. – cppbest Mar 09 '23 at 15:00
  • I have updated my answer to better meet your requirements – J-M Mar 09 '23 at 16:25