Opening the "Windows 10 Settings" form from vb.net possible?
Visual Basic
2
Posts
2
Posters
2
Views
1
Watching
-
Is the a method to programmatically open the "Windows Settings" form (in Windows 10) from vb.net, as though you did it from the Start Menu?
-
Is the a method to programmatically open the "Windows Settings" form (in Windows 10) from vb.net, as though you did it from the Start Menu?
To open the settings home page:
System.Diagnostics.Process.Start("ms-settings:")
If you want to go to a specific page, you just need to append an extra string to the URI: Launch the Windows Settings app - Windows UWP applications | Microsoft Docs[^] Eg: To launch the "default apps" page:
System.Diagnostics.Process.Start("ms-settings:defaultapps")
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer