Bookmarks 2.2.1
Install from the command line:
Learn more about NuGet packages
$ dotnet add package Bookmarks --version 2.2.1
About this version
Cmdlet | Alias |
---|---|
Add-PSBookmark | ba |
Remove-PSBookmark | br |
Open-PSBookmark | bo |
Get-PSBookmarks | bv |
Remove-AllPSBookmarks | bcl |
Update-PSBookmark | bu |
Add-PSBookmark - Add folder to the bookmarks list
[-Name] <string>
[-Path] <string> (Optional)
Remove-PSBookmark - Remove bookmark from the list
[-Bookmark] <string>
Open-PSBookmark - Navigate to bookmark
[-Bookmark] <string>
Get-PSBookmarks - List bookmarks
Save-PSBookmarkk - Save bookmarks to file
Remove-AllPSBookmarks - Clear bookmarks list
Update-PSBookmark - Update folder location in the bookmarks list
[-Name] <string>
[-Path] <string> (Optional)
Add bookmark:
/>Add-PSBookmark -Bookmark BookmarkName
/> $pwd | Add-PSBookmark -Name "ThisDirectory"
Open bookmarks:
/>Open-PSBookmark -Bookmark "Project"
/>"SourcesDir" | Open-PSBookmark
List bookmarks:
/>Get-PSBookmarks [ bv ]
.>Get-PSBookmarks [ bl ]
Clear bookmarks:
/>Remove-AllPSBookmarks [ bcl ]
Powershell Gallery:
PowerShellGet
Installation :
Install-Module -Name Bookmarks
Direct download instalation:
iex ('$module="Bookmarks"'+(new-object net.webclient).DownloadString('https://raw.githubusercontent.com/stadub/PowershellScripts/master/install.ps1'))
Module import:
Import-Module Bookmarks
*Fix Multisession sync(bookamrks was different for different console windows)
*Add update checker
*Change %userData% detection logic. *Move initation logic to Loader.psm1 *Change test environment to StrictMode=Latest *Update icon. *Remove extra shared functions
- Add versioning to Markdown page.
- Move Assets to an individual folder.
- Fix psget package - remove extra files.
- Separate functions and aliases.
- Move module to individual folder.
- Add module methods description.
- Added parameters pipeline for
Add-PSBookmark
andOpen-PSBookmark
$pwd | Add-PSBookmark -Name "ThisDirectory" "SourcesDir" | Open-PSBookmark [ bo ]
- Added command aliases.
v0.9 Aug 18, 2015
- Added CRUD Bookmark commands:
Add-PSBookmark - Add folder to the bookmarks list
[-Name] <string>
[-Path] <string> (Optional)
Remove-PSBookmark - Remove bookmark from the list
[-Bookmark] <string>
Open-PSBookmark - Navigate to bookmark
[-Bookmark] <string>
Get-PSBookmarks - List bookmarks
Save-PSBookmarkk - Save bookmarks to file
The modules are created and actively maintained during evenings and weekends for my own needs. If it's useful for you too, that's great. I don't demand anything in return.
However, if you like it and feel the urge to give something back, a coffee or a beer is always appreciated. Thank you very much in advance.
If you have any idea or suggestion - please add a github issue.