About 407,000 results
Open links in new tab
  1. How do I start PowerShell from Windows Explorer?

    In Windows Explorer, just go to the Address Bar at the top (keyboard shortcuts: Alt + D or Ctrl + L) and type powershell or powershell_ise and press Enter. A PowerShell command window …

  2. Is it possible to open a Windows Explorer window from PowerShell ...

    Nov 26, 2008 · 25 I came across this question looking for a way to open an Explorer window from PowerShell and also select a file. I'm adding this answer in case others come across it for the …

  3. microsoft file explorer - How do I open a specific folder from …

    Dec 12, 2011 · I would like to be able to navigate to a certain file, then open it using a Powershell command.

  4. Is there an easy way to open PowerShell in admin mode for the …

    Mar 29, 2024 · I found a workaround that typing powershell in the file explorer's address bar, which opens PowerShell in the current folder but not with administrator privileges.

  5. How do you call Windows Explorer with a file selected from …

    PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& 'C:\Projects\Scripts\test.ps1'" I've tried a few different combinations and the output from echoargs suggests that the syntax is …

  6. How do I open a folder(on my desktop) from Powershell on …

    Jul 28, 2017 · 2 On an online tutorial on webservers, the guy (on a MAC) opened a folder which was on his desktop by typing **>> cd folder-2 open .** how do I do the same (equivalent to …

  7. Open Powershell in a specific directory from shortcut

    Jan 9, 2013 · If we're talking about any sort of shortcut (as in, tips and tricks), there's this: if you are in the desired folder in Windows Explorer, you can type powershell in the address bar and …

  8. Opening two tabs in Windows 11 file explorer via Powershell

    Aug 8, 2023 · I currently have the script running the Invoke-Item command twice to open up both the old and new directory in separate explorer windows. Is there any way I can modify the …

  9. Start explorer.exe remotely with a path specified in Powershell

    Feb 10, 2017 · Invoke-Command -ScriptBlock {C:\Windows\explorer.exe "C:\folder"} But the problem, is how powershell will open a GUI console invoked from the remote system. …

  10. get a folder path from the explorer menu to a powershell variable

    Jul 10, 2012 · 0 Here is a solution that opens explorer dialog window, asking user to select a folder. Then stores the folder path inside a variable named "path":