Skip to content

PowerPlug 0.2.1-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@manu-p-1 manu-p-1 released this 25 Dec 01:11
· 150 commits to master since this release

0.2.1-alpha Release of PowerPlug

The second and patch release of PowerPlug is now available on the PowerShell gallery as a prerelease available here: PowerPlug

Install PowerPlug to PowerShell with:

Install-Module -Name PowerPlug -AllowPrerelease

Features

  • Cmdlet for creating a new alias to your Profile across various sessions

    • New-Byname [-Name] <string> [-Value] <string> [-Description <string>] [-Option {None | ReadOnly | Constant | Private | AllScope | Unspecified}] [-PassThru] [-WhatIf] [-Confirm] [-Scope {Global | Local | Private | Numbered scopes | Script}] [-Force] [<CommonParameters>]
    • The underlying structure of the command is the same as New-Alias, however, New-Byname writes to the user's $PROFILE
  • Cmdlet for setting an alias to your Profile across various sessions

    • Set-Byname [-Name] <string> [-Value] <string> [-Description <string>] [-Option {None | ReadOnly | Constant | Private | AllScope | Unspecified}] [-PassThru] [-WhatIf] [-Confirm] [-Scope {Global | Local | Private | Numbered scopes | Script}] [-Force] [<CommonParameters>]
    • The underlying structure of the command is the same as Set-Alias, however, Set-Byname writes to the user's $PROFILE
  • Cmdlet for removing an alias to your Profile across various sessions

    • Remove-Byname [-Name] <string> [-Scope {Global | Local | Private | Numbered scopes | Script}] [-Force] [<CommonParameters>]
    • The underlying structure of the command is the same as Remove-Alias, however, Remove-Byname removes and "bynames" from the user's $PROFILE