Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
5,206 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
Is it possible to open /navigate the Windows 10 Settings using VB.Net?
I have tried using SHELL as:
Shell("start ms-settings: activation", AppWinStyle.MaximizedFocus, False, 0)
And Process.Start () but both didn't worked.
Process.Start("start ms-settings:activation")
Several settings's URI are listing here:
https://4sysops.com/wiki/list-of-ms-settings-uri-commands-to-open-specific-settings-in-windows-10/
One of the ways :
Dim psinfo As New ProcessStartInfo("explorer")
psinfo.Arguments = "ms-settings:activation"
Process.Start(psinfo)