About 38,600 results
Open links in new tab
  1. How do I run multiple commands on one line in PowerShell?

    In a cmd prompt, you can run two commands on one line like so: ipconfig /release & ipconfig /renew When I run this command in PowerShell, I get: Ampersand not allowed. The `&` …

  2. View full history for powershell, not just current session

    Feb 17, 2019 · 33 Powershell now handily remembers history from previous sessions, and I can get to earlier commands simply by using the up-arrow. What I would like though is to be able …

  3. PowerShell es-es Language Installation: ErrorCode -2147418113

    Sep 21, 2023 · Ensure all Windows Updates are installed and that Windows is up-to-date, and has been restarted to make pending Windows Updates effective. Run a Windows Disk …

  4. PowerShell equivalent to DISM's /Cleanup-Image in Windows 10

    Apr 17, 2024 · The parameters of Dism commands are an almost 1:1 to the parameters of PowerShell's Dism cmdlets, with the main difference being cmdlets use - instead of /, coupled …

  5. Run Powershell with parameters from batch file - Super User

    Mar 2, 2021 · You can run PowerShell commands from cmd/bat files by passing the commands as an argument to the powershell command. Make you batch file look like this. Note, I have …

  6. Most PowerShell commands not working - Super User

    Dec 30, 2020 · PowerShell 5.1 is the last version of PowerShell 5.x, the next version, is PowerShell Core 6. PowerShell 7 is the current version, replaces both PowerShell 5.1 and …

  7. Copy and paste in Windows PowerShell - Super User

    Mar 28, 2012 · To select text in PowerShell with the mouse, just select it as usual. To copy the selected text to the clipboard you have to either hit Enter, or right-click. To paste into the …

  8. PowerShell equivalent to the Unix `which` command? - Super User

    Does PowerShell have an equivalent to the which command found in most (if not all) Unix shells? There are a number of times I'd like to know the location of something I'm running from the …

  9. windows - run powershell command from cmd - Super User

    May 24, 2016 · 0 I placed the following commands into a batch file to reset Edge (which has been giving some problems from time to time). The batch file was then run at Administrator level. …

  10. Equivalent of cmd's "where" in powershell - Super User

    Nov 12, 2013 · I can't seem to find anything about a Powershell equivalent of the where command from cmd. Should I just call it from cmd or is there something more elegant in PS?