Reputation:
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
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