Reputation: 3146
If I do an RDP to the remote machine, open Powershell from the Start menu, then start Chrome, it will start up correctly, i.e., open a new window, with this command:
start chrome
I have Powershell configured as a remote app. When I log on to the RemoteApp instead, then I can enter
start firefox
start calc
Start-Process calc
and these applications all appear on the RDP client as I would expect. But
start chrome
does nothing. I don't get any errors, the window simply does not show up. Everything is up-to-date as of Oct 2015.
Upvotes: 0
Views: 279
Reputation: 1
Using PowerShell, start
is an alias for Start-Process
. This Cmdlet makes a
low level call to Shell.ShellExecute
which works like this:
So likely what has happened is that Firefox is on App Paths and and Chrome is not.
Upvotes: 1