user7188159
user7188159

Reputation:

Is there any way to open "Windows Mobility Center" using java?

I think that most of you have heard about the "Windows Mobility Center". That's the app by windows that can change volume, brightness etc.

I'm trying to ask you is there any way to open that "Windows Mobility Center" using Java code?

Thanks for answers, sorry if I was unspecific.

Upvotes: 2

Views: 52

Answers (1)

Grunzwanzling
Grunzwanzling

Reputation: 443

Windows Mobility Center can be found in C:\Windows\System32\
So you just need to run this cmd command: C:\Windows\System32\mblctr.exe

It should work like this: Runtime.getRuntime().exec("C:\\Windows\\System32\\mblctr.exe")

Upvotes: 2

Related Questions