Microsoft Azure Blog
Blog on Windows Azure, Microsoft's Cloud Computing Platform, as well as other technical IT matters.
-
Office 365 Sign-in activity report error codes
https://docs.microsoft.com/en-us/azure/active-directory/reports-monitoring/reference-sign-ins-error-codes more
-
Can't connect to Azure File Storage using “net use” command - System error 5
You cannot mount an Azure file share from an external Windows 7 computer, because Windows 7 does not support SMB 3.0 file sharing protocol.
This newly posted grid from microsoft might help others. … more
-
Azure File Shares
https://docs.microsoft.com/en-us/azure/storage/files/storage-files-quick-create-use-windows
https://docs.microsoft.com/en-us/azure/storage/files/storage-how-to-use-files-windows
-
Microsoft Partner Changes: Moving from PMC to Partner Center
https://docs.microsoft.com/en-au/partner-center/move-pmc-pc-map more
-
How to configure IIS for relay with Office 365
https://docs.microsoft.com/en-us/exchange/mail-flow-best-practices/how-to-configure-iis-for-relay-with-office-365 more
-
Create Your Own Email Forwarding Server
http://www.techknowjoe.com/article/create-your-own-email-forwarding-server more
-
How to Set Up Your Own Email Server on Windows
https://www.maketecheasier.com/set-up-own-email-server-windows/ more
-
SQL Server Get Row Count of All Tables
Get all the tables with a count of their records with the following query:
CREATE TABLE #Temp
(
TableName VARCHAR(MAX),
Rows INT
);
EXEC sp_MSForEachTable @command1 = 'INSERT INTO # … more
-
Stopping an Azure Firewall
https://feedback.azure.com/forums/217313-networking/suggestions/34835068-support-for-stopping-an-azure-firewall more
-
Connect Azure to your local network
https://blogs.solidq.com/en/updates/connect-azure-to-your-local-network/ more
-
SQL Mistakes
https://www.sqlservercentral.com/articles/some-of-my-greatest-mistakes more
-
Configure public endpoint in Azure SQL Database managed instance
https://docs.microsoft.com/en-us/azure/sql-database/sql-database-managed-instance-public-endpoint-configure more
-
Audit Users logging in using "sa" or service accounts
source: https://www.sqlservercentral.com/scripts/audit-users-logging-in-using-sa-or-service-accountsIF OBJECT_ID ('AuditSqlLogins') IS NOT NULL DROP TABLE AuditSqlLogins
GO
CREATE TABLE … more
-
Automate Gathering SQL Server Information and Emailing CSV File
https://www.mssqltips.com/sqlservertip/6085/automate-gathering-sql-server-information-and-cpu-count/
-
SQL Server Get Product Version and CPU Cores
SELECT @@SERVERNAME AS SQLServerName, CASE SUBSTRING(CONVERT(NVARCHAR(20),SERVERPROPERTY('ProductVersion')),1,4) WHEN '15.0' THEN 'SQL Server 2019' WHEN '14.0' THEN 'SQL Server 2017' WHEN '13.0' … more
-
Ten SQL Commands You Should Be Using
https://www.databasejournal.com/features/mssql/ten-sql-commands-you-should-be-using.html
-
SQL Server Introduction to Statistics
-
sp_BlitzWho and SQL Server First Responder Kit
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/blob/dev/sp_BlitzWho.sql
-
Free Web Hosting On Github
https://gist.github.com/TylerFisher/6127328
https://pages.github.com/
https://medium.com/@svinkle/publish-and-share-your-own-website-for-free-with-github-2eff049a1cb5
http://jmcglone.com/guides/ … more
-
KB4503293 Cumulative update breaks Event Viewer Custom views
https://www.winhelponline.com/blog/windows-10-v1903-19h1-is-available-now/#eventvwr
https://www.winhelponline.com/blog/process-monitor-track-events-generate-log-file/ more