Skip to content

Getting Started

Griffeth Barker edited this page Sep 1, 2024 · 3 revisions

Installation Methods

Presently, the module's .zip archive can manually downloaded and imported into your PowerShell session.

Invoke-WebRequest -Uri "https://github.com/gbarker/obsidianmd-powershell/archive/refs/tags/v0.1.0.zip" -OutFile "$env:USERPROFILE\Downloads\obsidianmd-powershell-0.1.0.zip"

Expand-Archive -Path "$env:USERPROFILE\Downloads\obsidianmd-powershell-0.1.0.zip" -DestinationPath "$env:USERPROFILE\Documents\WindowsPowerShell\Modules\obsidianmd-powershell"

At the first release of the module, I hope to publish it to the PowerShell Gallery for easier installation.

Importing the Module

Once you've obtained the module, you can import it into your PowerShell session:

Import-Module obsidianmd-powershell
# OR
Import-Module -Name "$env:USERPROFILE\Documents\WindowsPowerShell\Modules\obsidianmd-powershell"

Next Steps

Check out Interacting with your Vault.

Clone this wiki locally