...
Follow these steps:
Open PowerShell:
PressWin + X
and select Windows PowerShell or Windows PowerShell (Admin).Execute the following command to list apps related to wireless display:
Code Block Get-StartApps | Where-Object { $_.Name -like "*Wireless*" -or $_.Name -like "*Display*" -or $_.Name -like "*Connect*" }
Note the
AppID
from the output, which should resemble:Code Block language none Name AppID ---- ----- Wireless Display Microsoft.WirelessDisplay.Connect_cw5n1h2txyewy!App
In this example, the
AppID
isMicrosoft.WirelessDisplay.Connect_cw5n1h2txyewy!App
.
Step 3: Create a Batch File to Launch the App via Igloo Core Engine
...
Open Notepad or your preferred text editor.
...
Use the following commands, replacing {AppID}
with the actual AppID you obtained:
Code Block |
---|
@echo off
start explorer.exe shell:appsFolder\{AppID}
exit |
Example:
Code Block |
---|
@echo off
start explorer.exe shell:appsFolder\Microsoft.PPIProjection_cw5n1h2txyewy!Microsoft.PPIProjection
exit |
...