Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHow to use start to uwp application? #784
Comments
|
Hi @Escapingbug this is very good question. We have no built-in way to start UWP app by its name. But there are few ways to do that. If it's not critical to share your script for several PCs, you can run Task Manager, go to tab "Details", find your app, do right click and choose "Open file location". Path to executable file will be open in Also I could find PowerShell command (checked for Skype as an example): Get-AppxPackage -allusers *Skype* | foreach {start shell:AppsFolder\$($_.PackageFamilyName)!App}So you have to add powershell.exe to your command in Hope it helps for now. It's also possible to use new Win32 API functions controlling WindowsStore app packages inside pywinauto. But this feature request needs some time for learning and implementation. Can't promise to implement it soon. Let's keep this issue open for future contributions. |
I'm trying to automate the interaction with WindowsTerminal. It seems to be a UWP application, which I have no idea how to start such application directly using
Application().start. I've tried to locate it usingDesktop, but got quite confused..Any help on this?