Select-QBPOS Cmdlet
Searches QuickBooks POS data.
Syntax
Select-QBPOS [parameters]
Remarks
The Select-QBPOS cmdlet allows you to use a syntax similar to SQL SELECT statements to search QuickBooks POS data.
$conn = Connect-QBPOS -ApplicationName 'My PowerShell Script'
Select-QBPOS -Connection $conn -Table "Customers" -Columns @("ListId","LastName") -Where "LastName='Cook'"