[SQL Server] Exemples d'utilisation des commandes PowerShell

--Afficher le help de la commande Get-Command avec des exemples

EXECUTEmaster..xp_cmdshell'Powershell.exe "Get-Help Get-Command -detailed"'

 

--Afficher le help de la commande Get-Command avec des informations techniques

EXECUTEmaster..xp_cmdshell'Powershell.exe "Get-Help Get-Command –full"'

 

-- Afficher la date & heure courante

EXECUTE master..xp_cmdshell 'Powershell.exe "Get-Date"'

 

--Afficher la liste des process encours

EXECUTE master..xp_cmdshell 'Powershell.exe "get-process"'