-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Griffeth Barker edited this page Sep 1, 2024
·
3 revisions
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.
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"Check out Interacting with your Vault.