Skip to content

Instantly share code, notes, and snippets.

@Saket-Upadhyay
Created October 31, 2021 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Saket-Upadhyay/05a73c050ec31934d9e7bd7a91812ea7 to your computer and use it in GitHub Desktop.
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 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