How to display active connections and running queries in SQL Server?
This query shows all queries executed at the moment, the session id, status, used cpu time and the execution duration SELECT st.text, r.session_id, r.status, r.command, r.cpu_time, r.total_elapsed_time FROM sys.dm_exec_requests r CROSS APPLY...
How to read and use the contents of a website from Powershell?
First we need to create a xmlhttp object, similar to what you would do in JavaScript $objXmlHttp = New-Object -ComObject MSXML2.ServerXMLHTTP Use the open method to specify the url, optional username and password. The third parameter (optional) is a boolean indicator...
How to connect to / read from / write to SQL Server from Powershell?
First create the connection object, set the connection string and open the connection: $objSqlConnection = New-Object System.Data.SqlClient.SqlConnection $objSqlConnection.ConnectionString = "Server=YourSqlServer; Database=YourDataBase; User Id=YourUsername;...
How to get some information on Bitlocker using VBScript and WMI?
Documentation for functions, methods and properties used in this post: Win32_EncryptableVolume GetEncryptionMethod GetProtectionStatus GetConversionStatus GetKeyProtectors GetLockStatus GetKeyProtectorFriendlyName
Recent Comments