Cmdlets for Microsoft Office 365

Build 24.0.9060

Invoke-Office365 Cmdlet

Parameters   Output Objects  

Searches and updates Microsoft Office 365 data.

Syntax

Invoke-Office365 [parameters]

Remarks

The Invoke-Office365 cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:

$query = Invoke-Office365 -Connection $connection -Query 'SELECT * FROM Events WHERE Id=@Id' -Params @{'@Id'='Jq74mCczmFXk1tC10GB'}
This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-Office365 -Connection $connection -Query 'EXEC SendMail MessageId = @MessageId' -Params @{"abc123"}
To pass multiple Params parameters, use a semicolon (;) as a delimiter. The code below outlines the structure of an EXEC command with two parameters (param1 and param2):
$query = Invoke-Office365 -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060