Quantcast
Channel: Yusuf Ozturk
Browsing latest articles
Browse All 207 View Live

Getting MSSQL Server Login Information via PowerShell

You can get detailed SQL Server properties via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Logins $MSSQLLogin =...

View Article



Getting MSSQL Server Roles via PowerShell

You can get detailed info about SQL Server Role properties via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Roles $MSSQLRoles =...

View Article

How to use jscript on PoSHServer? (PowerShell Web Server)

There is no jscript limitation on PoSHServer. However you need to use escape characters to make it work. If you need to use something like this: $(function() { $.ajax({ Then you should change your...

View Article

Getting MSSQL Server Resource Pools via PowerShell

You can get detailed info about SQL Server Resource Pools via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Resource Pools $MSSQLResourcePool =...

View Article

Getting MSSQL Server Availability Groups via PowerShell

You can get detailed info about SQL Server Availability Groups via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Availability Groups...

View Article


Getting MSSQL Server Availability Group Listeners via PowerShell

You can get detailed info about SQL Server Availability Group Listeners via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Availability Group...

View Article

Getting MSSQL Server Database Replica States via PowerShell

You can get detailed info about SQL Server Database Replica States via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Database Replica States...

View Article

Getting MSSQL Server Availability Replicas via PowerShell

You can get detailed info about SQL Server Availability Replicas via following code: $MSSQLServerManager = New-Object 'Microsoft.SqlServer.Management.SMO.Server' # Get SQL Availability Replicas...

View Article


Agentless Monitoring of Nano Server on Azure

Nano Server monitoring is kind of a challenge for System Administrators. Even if your current monitoring product supports Nano Server, installing agents on Nano could be a headache. In this article, I...

View Article


Kayako Classic to Freshdesk Migration via PowerShell

If you need to migrate from Kayako Classic to Freshdesk, you may use following script. This is just an example script that i wrote in a few minutes. First create connection to Kayako Classic via API...

View Article
Browsing latest articles
Browse All 207 View Live




Latest Images