Open a file with its default application
Hey there !
A little tip I’ve just found, really usefull.
If you need to open a file through Powershell with the default application set up in Windows parameter, just use “Start-process” and the full path of your file
Start-Process "c:\temp\MyExcelFile.xlsx"
In this short example, this command will launch Excel and your file !