file io - doubleclick on filename OPEN DEFAULT EDITOR in PowerShell ISE editor -
$fromdir = "c:\temp\sta\" $controlfilearray = get-childitem $fromdir\*.ssisdeploymentmanifest | % { ($_.basename)} echo $controlfilearray
from above script, taking file name in 1 variable, how double click filename using power shell open in desired editor.
if file c:\temp\t.txt try
:
$a = "c:\temp\t.txt" & $a
Comments
Post a Comment