- Project URL
- Latest stable version
-
3.1.0
- Minimum Powershell version
-
5.1
This module is the successor of the ch2.ps1 script, which was converted into a Powershell module as a training exercise.
The ch2.ps1 script was created to make a very simple path shortcut navigation.
While it was fun to make and is still used occasionally, it does not hand the torch to the excellent z module from badmotorfinger, which I highly recommend if you like Powershell.
-
Allows creation, management and usage of user defined path aliases.
-
Stores path aliases in a user defined text file.
-
Offers convenience functions for easier shell navigation.
-
Works on Windows and Linux.
-
Supported path placeholders:
-
{user}will be replaced with the current user name. -
{<SpecialFolder>}will be resolved with the path defined by SpecialFolder.
-
-
Run the build script.
-
Decide which Powershell profile you want to install this module in.
-
Find available Powershell module locations with
$Env:PSModulePath -split ';'
-
-
Copy the entire output folder
NickNameManagerto the chosen module folder.-
See the module available for import with
Get-Module -ListAvailable.
-
-
Open a Powershell console and import the module with
Import-Module -Name NickNameManager.-
The module will only be available for the duration of the session.
-
-
Use the
Add-NickNameManagerToProfilecmdlet to make the module available for future sessions.-
This cmdlet is only available when the module has been imported into the current session.
-
Please keep latest changes at the top.
| Date | Version | Changes |
|---|---|---|
2022-07-27 |
3.1.0 |
Added new feature: Special folder resolver
|
2022-02-09 |
3.0.1 |
Replaced
|
2022-01-29 |
3.0.0 |
Initial version of |