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

    Dec 12, 2008 · I've seen the @ symbol used in PowerShell to initialise arrays. What exactly does the @ symbol denote and where can I read more about it?

  2. powershell - How to effectively use the `-Filter` parameter on …

    Note about Azure AD cmdlets This answer is crafted around the Active Directory cmdlets installed and available from Remote Server Administration Tools (RSAT). However, the Azure AD …

  3. powershell - How to fix "running scripts is disabled on this system ...

    Nov 1, 2020 · In powershell # To check the current execution policy, use the following command: Get-ExecutionPolicy # To change the execution policy to Unrestricted, which allows running …

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

    Aug 16, 2010 · If you break down powershell to basics then everything is a script block including a script file a, functions and cmdlets. You can define your own parameters but in some …

  5. What does "%" (percent) do in PowerShell? - Stack Overflow

    It seems that the % operation starts script blocks after the pipeline, although about_Script_Blocks indicates the % isn't necessary. These all work just fine. get-childitem | % { write-host $_.Na...

  6. 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 indefinitely.

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

    The quickest way to real frustration when learning PowerShell is to start by thinking that it is just an expanded CMD or bash. It has a fundamentally different model, epecially when it comes to …

  8. How to define named parameter as [ref] in PowerShell

    Apr 13, 2015 · How to define named parameter as [ref] in PowerShell Asked 10 years, 4 months ago Modified 5 years, 10 months ago Viewed 46k times

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

    Feb 13, 2019 · The difference between the . and & operators matters only when calling PowerShell scripts or functions (or their aliases) - for cmdlets and external programs, they act …

  10. PowerShell guidelines for -Confirm, -Force, and -WhatIf

    19 Are there any official guidelines from Microsoft about when to add -Confirm, -Force, and -WhatIf parameters to custom PowerShell cmdlets? There doesn't seem to be a clear …