Multiple choice technology architecture

You want to create a Windows service that will monitor specific folders on the hard drive. This service won't be shared with any other process and will launch when the system is booted. Which configuration would be appropriate for this particular service?

  1. Win32OwnProcess type, Network Service account, automatic startup type

  2. Win32OwnProcess type, LocalSystem account, automatic startup type

  3. Win32OwnProcess type, User account, manual startup type

  4. All

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Win32OwnProcess indicates the service runs in its own process (not shared with other services). LocalSystem account provides the extensive permissions needed for file system monitoring across the system. Automatic startup ensures the service launches when the system boots. Network Service has restricted permissions, and a User account won't be available at boot time.