How to execute a PowerShell script from Notepad++

前端 未结 5 991
说谎
说谎 2021-02-06 03:44

I am using Notepad++ to edit a PowerShell file and want to be able to execute that file from inside Notepad++.

How can I set that up?

相关标签:
5条回答
  • 2021-02-06 04:09

    I would recommend using PowerShell ISE which comes as part of PowerShell and designed specifically for Powershell.

    0 讨论(0)
  • 2021-02-06 04:21

    You can run a saved script from "Run" -> "Run" menu in Notepad++ with the following command:

    powershell.exe -noexit -command . \"$(FULL_CURRENT_PATH)\"
    
    0 讨论(0)
  • 2021-02-06 04:22

    Based on the answers before:

    powershell.exe -ExecutionPolicy Unrestricted -NoLogo -File "$(FULL_CURRENT_PATH)"
    

    You can also add the -NoExit parameter to keep PowerShell from closing automatically:

    powershell.exe -ExecutionPolicy Unrestricted -NoExit -NoLogo -File "$(FULL_CURRENT_PATH)"
    

    Note: File has to be saved.

    0 讨论(0)
  • 2021-02-06 04:27

    It took me a little fiddling, but I finally got this working. (I am using version 1.0 but this should work in other versions as well.)

    Notepad++ can be set up to run commands, and assign shortcuts to those commands, as follows:

    From the menu, click Run → Run

    Add the command

    C:\NotepadRun.bat "$(FULL_CURRENT_PATH)"

    Save the command, giving it a name and a key shortcut.

    Below are the contents of the batch file. I named mine NotepadRun.bat, but you can name it whatever.

    @echo off
    
    GOTO %~sx1
    :.ps1
     cd "%~d1%~p1"
     powershell.exe .\%~n1%~sx1 
     GOTO end
    :.rb
     ruby "%~f1"
     GOTO end
    :.php
     php "%~f1"
     GOTO end
    
    :end
    
    pause
    

    As a note upgrading to Windows7 and Powershell 2 I found some Issues with this and have updated to passing in an ExecutionPolicy to ensure I can run the script I am editing.

    :.ps1
      cd "%~d1%~p1"
      powershell -ExecutionPolicy Unrestricted -File "%~n1%~sx1"
      GOTO end
    
    0 讨论(0)
  • 2021-02-06 04:30

    See Using Notepad++ to Compile and Run Java Programs and replace "javac" with "C:Windows\system32\WindowsPowerShell\v1.0\powershell.exe" (or your path to PowerShell). (Caveat: I'm not a Notepad++ user and haven't tried this.)

    That said, I'd just use PowerShell ISE (installs with PowerShell) or one of the other dedicated PowerShell IDEs instead.

    0 讨论(0)
提交回复
热议问题