Get-VisioDocument
Get all documents
Get-VisioDocument -Name *Get all documents based on the document name
# To find a specific document with name "DocumentFoo"
Get-VisioDocument -Name "DocumentFoo"Get the active document
Get-VisioDocument -ActiveDocumentSet the Active Document
# using a document object
Set-VisioDocument $doc
# Using the name the document
Set-VisioDocument "Drawing5"Checking if the Active Document is valid
If (Test-VisioDocument)
{
# do something
}
else
{
# do something else
}Last updated