About 339,000 results
Open links in new tab
  1. What does the "@" symbol do in PowerShell? - Stack Overflow

    Dec 13, 2008 · Because this type of question (what does 'x' notation mean in PowerShell?) is so common here on StackOverflow as well as in many reader comments, I put together a lexicon …

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

    powershell starts an PowerShell and runs the command specified in quotation marks. gc '%~0' is the first command that runs in PowerShell. It reads the content of the current file, as '%~0' is …

  3. Powershell: Scheduled Task with Daily Trigger and Repetition Interval

    Here is a way of creating a scheduled task in Powershell (v5 on my machine, YMMV) that will start at 12AM every day, and repeat hourly for the rest of the day. Therefore it will run …

  4. Can I get "&&" or "-and" to work in PowerShell? - Stack Overflow

    Quick Tip: With Powershell if you need to use the where command for the same result as you get in CMD, you can't just use where, you need to use where.exe (with the extension), because …

  5. How to run a PowerShell script without displaying a window?

    Jan 28, 2015 · I found a way to do this by compiling a PowerShell script to a Windows executable. Third party modules are required to build the executable but not to run it. My end goal was to …

  6. What is the difference between dot (.) and ampersand (&) in …

    Feb 13, 2019 · Whereas, & is the call operator in Powershell which will help you to call any of the outside executable like psexec and others. Invoking a command (either directly or with the call …

  7. What does $_ mean in PowerShell? - Stack Overflow

    Feb 1, 2016 · The closest analogy to c# and java is the lamda expression. If you break down powershell to basics then everything is a script block including a script file a, functions and …

  8. PowerShell and the -contains operator - Stack Overflow

    Sep 18, 2013 · Having re-read the question I think I need to clarify the difference between the Contains powershell operator and the .Contains().NET String method. – Kev Commented Nov …

  9. How to Remove the Banner Message in PowerShell

    Apr 15, 2018 · This command is then automatically run by PowerShell on start-up (this will require you to open a new terminal to see the changes). Note: The banner stuff does appear briefly, …

  10. How to make an authenticated web request in Powershell?

    For those that need Powershell to return additional information like the Http StatusCode, here's an example. Included are the two most likely ways to pass in credentials. Its a slightly modified …

Refresh