Skip to main content

Scripts for Powershell

About 8 minPowershellpowershellwindowsscriptuseful-script

Scripts for Powershell 관련


introduce-powershell.ps1

introduce-powershell.ps1

Introduces PowerShell to new users.

This PowerShell script introduces PowerShell to new users.

Parameters
PS> ./introduce-powershell.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-aliases.ps1

list-aliases.ps1

Lists all PowerShell aliases.

This PowerShell scripts lists all PowerShell aliases.

Parameters
PS> ./list-aliases.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-automatic-variables.ps1

list-automatic-variables.ps1

Lists the automatic variables of PowerShell.
Parameters
PS> ./list-automatic-variables.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-cheat-sheet.ps1

list-cheat-sheet.ps1

Lists the PowerShell cheat sheet.

This PowerShell script lists the PowerShell cheat sheet.

Parameters
PS> ./list-cheat-sheet.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-cmdlets.ps1

list-cmdlets.ps1

Lists the PowerShell cmdlets.

This PowerShell script lists all PowerShell cmdlets.

Parameters
PS> ./list-cmdlets.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-console-colors.ps1

list-console-colors.ps1

Lists all console colors.

This PowerShell script lists all available console colors.

Parameters
PS> ./list-console-colors.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-modules.ps1

list-modules.ps1

Lists the PowerShell modules.

This PowerShell script lists the installed PowerShell modules.

Parameters
PS> ./list-modules.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-profiles.ps1

list-profiles.ps1

Lists your PowerShell profiles.
Parameters
PS> ./list-profiles.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

list-scripts.ps1

list-scripts.ps1

Lists all PowerShell scripts in this repository.
Parameters
PS> ./list-scripts.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

new-script.ps1

new-script.ps1

Creates a new PowerShell script.

This PowerShell script creates a new powershell script file (by using template file ../Data/template.ps1).

Parameters
PS> ./new-script.ps1 [[-filename] <String>] [<CommonParameters>]

-filename <String>
    Specifies the path to the resulting file
    
    Required?                    false
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

set-profile.ps1

set-profile.ps1

Updates your PowerShell user profile.

This PowerShell script sets the PowerShell profile for the current user.

Parameters
PS> ./set-profile.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

이찬희 (MarkiiimarK)
Never Stop Learning.