Created
October 31, 2021 04:19
-
-
Save Saket-Upadhyay/05a73c050ec31934d9e7bd7a91812ea7 to your computer and use it in GitHub Desktop.
This program will create a executable which can launch MS Whiteboard. Then you can map this executable to any 3rd party legacy application to launch the same.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This program will create a executable which can launch MS Whiteboard. | |
// As the Whiteboard is now a Windows Store App it's hard to map it to a 3rd part software like Huion tablet interface, so you can compile and map this binary instead to the 3rd party client, which in turn will launch whiteboard for you. | |
// This code is not that big of a deal, hence there is no need for any License. Use it as you wish. | |
#include <iostream> | |
#include <stdlib.h> | |
int main() { | |
std::system("start shell:appsfolder\\Microsoft.Whiteboard_8wekyb3d8bbwe!Whiteboard"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment