From the directory that contains the zero-byte file WT.EXE (for example), this PowerShell command;
...is supposed to provide me with the target of a Windows App Execution Alias, in this case, WT.EXE
From the directory that contains the zero-byte file WT.EXE, when I try it from TCC;
...it returns nothing.
From the directory that contains the zero-byte file WT.EXE, when I try it from PowerShell;
Read more
Code:
(Get-Item wt.exe).Target
From the directory that contains the zero-byte file WT.EXE, when I try it from TCC;
Code:
pshell /s "(Get-Item wt.exe).Target"
From the directory that contains the zero-byte file WT.EXE, when I try it from PowerShell;
Code:
(Get-Item...
Read more