Skip to content
View Molochnikov's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report Molochnikov

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Encode your powershell code with pas... Encode your powershell code with password!
    1
    If ($host.version.major -ne 2) {
    2
        $params = ($PSBoundParameters.GetEnumerator() | % {"-{0} {1}" -f $_.Key,$_.Value}) -join " "
    3
        Start-Process -File PowerShell.exe -Argument "-Version 2 -noprofile -noexit -file $($myinvocation.mycommand.definition) $params"
    4
        Break
    5
    }
  2. MetaPoint MetaPoint Public

    Fully customizable SharePoint in one SPFx extension.

    TypeScript

  3. ps.js ps.js
    1
    function arguments() {
    2
        $dict = iex('gv PSBoundParameters -scope 1 -ValueOnly');
    3
        $dict = iex('@($dict[$dict.keys])');
    4
        $pars = iex('(gv myinvocation -Scope 1 -ValueOnly).MyCommand.parameters');
    5
        $en = $pars.GetEnumerator();