About 266,000 results
Open links in new tab
  1. How to run powershell script from .ps1 file? - Stack Overflow

    Oct 23, 2019 · I'm trying to automate the execution of a simple PS script (to delete a certain .txt file). Obviously, I'm new to powershell :) When I run the code in shell, it works flawless. But when i save …

  2. windows - How to run a PowerShell script - Stack Overflow

    How do I run a PowerShell script? I have a script named myscript.ps1 I have all the necessary frameworks installed I set that execution policy thing I have followed the instructions on this MSDN help

  3. Adding git branch on the Bash command prompt - Stack Overflow

    See commit 8976500 by Richard Hansen (richardhansen): Both bash and zsh subject the value of PS1 to parameter expansion, command substitution, and arithmetic expansion. Rather than include the …

  4. Call PowerShell script PS1 from another PS1 script inside Powershell ...

    I want call execution for a myScript1.ps1 script inside a second myScript2.ps1 script inside Powershell ISE. The following code inside MyScript2.ps1, works fine from Powershell Administration, but...

  5. dot source - In PowerShell, how do I define a function in a file and ...

    May 16, 2011 · I have a .ps1 file in which I want to define custom functions. Imagine the file is called MyFunctions.ps1, and the content is as follows: Write-Host "Installing functions" function A1 { Write...

  6. How to fix "running scripts is disabled on this system"?

    Nov 1, 2020 · This is because of Execution Policy. This defines how powershell scripts will run. In Default windows desktops, it is Restricted, not allowing any scripts (signed or unsigned) only …

  7. Why are my PowerShell scripts not running? - Stack Overflow

    Aug 14, 2008 · powershell -executionpolicy bypass -File .\MYSCRIPT.ps1 That is, I added the -executionpolicy bypass to the way I invoked the script. This worked on Windows 7 Service Pack 1. I …

  8. How to pass command-line arguments to a PowerShell ps1 file

    Aug 18, 2009 · For years, I have used the cmd/DOS/Windows shell and passed command-line arguments to batch files. For example, I have a file, zuzu.bat and in it, I access %1, %2, etc. Now, I …

  9. How can I pass an argument to a PowerShell script?

    powershell.exe itunesForward.ps1 Is it possible to pass an argument from the command line and have it applied in the script instead of the hardcoded 30 seconds value?

  10. How can I get the current PowerShell executing file?

    In function: MyInvocation.ScriptName: C:\temp\test.ps1 script:MyInvocation.MyCommand.Name: test.ps1 MyInvocation.MyCommand.Name: printme Notice how the above accepted answer does …