Microsoft Azure Blog
Blog on Windows Azure, Microsoft's Cloud Computing Platform, as well as other technical IT matters.
-
Softether Alternatives to VPN and Virtual Ethernet and Virtual LAN
http://www.radmin-vpn.com and http://www.radmin.com
https://www.zerotier.com/
https://dynvpn.com/download/
https://github.com/virtualsquare/vde-2 more
-
Create an Azure VPN Gateway With Certificates With Powershell
https://docs.microsoft.com/en-us/learn/modules/configure-network-for-azure-virtual-machines/5-exercise-create-azure-vpn-gateway
-
Delete Microsoft Azure AD Tennant Directory
https://docs.microsoft.com/en-us/azure/active-directory/users-groups-roles/directory-delete-howto
https://social.msdn.microsoft.com/Forums/en-US/30f0a447-76cd-4c60-b2fc-499700dd7612/unlink-unused- … more
-
How to identify the SQL Server Service Account in T-SQL
https://sqlity.net/en/1868/identify-sql-server-service-account-in-t-sql/
-
SQL Server Drop Temporary Table Syntax Enhancement in SQL Server 2016
SQL Server 2016 and onwards:
DROP TABLE IF EXISTS #MyTable
Prior to SQL Server 2016:
IF OBJECT_ID('tempdb.dbo.#MyTable', 'U') IS NOT NULL DROP TABLE #MyTable; more
-
SQL Server Recursive CTE
https://www.red-gate.com/simple-talk/sql/t-sql-programming/sql-server-cte-basics/
https://blog.sqlauthority.com/2008/07/28/sql-server-simple-example-of-recursive-cte/
-
SQL Server: Collate DATABASE_DEFAULT to Resolve "Cannot resolve the collation conflict between ..."
SELECT * FROM MyTable1 t1, MyTable2 t2
inner join t1.field1 on t2.field1 COLLATE DATABASE_DEFAULT
-
Powershell Splatting
https://dbatools.io/splat/ more
-
Setting Up an HTTP/HTTPS Redirect in IIS
https://www.namecheap.com/support/knowledgebase/article.aspx/9953/38/iis-redirect-http-to-https more
-
RDP over SSH using port 443
http://www.shudnow.net/2008/11/15/rdp-over-ssh-using-port-443/
-
LetsEncrypt Free SSL on IIS and Windows Servers
https://letsencrypt.org/docs/client-options/
https://www.netometer.com/blog/?p=1758
https://certifytheweb.com/
https://github.com/aloopkin/WinCertes
https://community.letsencrypt.org/t/running- … more
-
Reverse DNS for Azure Cloud Services
https://azure.microsoft.com/en-us/blog/announcing-reverse-dns-for-azure-cloud-services/ more
-
Microsoft Azure Email Policy for Virtual Machines
https://blogs.msdn.microsoft.com/mast/2017/11/15/enhanced-azure-security-for-sending-emails-november-2017-update/ more
-
Create a Certificate with Powershell
https://support.jetglobal.com/hc/en-us/articles/235636308-How-To-Create-a-SHA-256-Self-Signed-Certificate
https://docs.microsoft.com/en-us/powershell/module/pkiclient/new-selfsignedcertificate?view= … more
-
Powershell Script to Check Website Availability
https://gallery.technet.microsoft.com/scriptcenter/Powershell-Script-for-13a551b3
https://stackoverflow.com/questions/20259251/powershell-script-to-check-the-status-of-a-url
https://evotec.xyz/ … more
-
How do I remove a domain from Office 365?
https://help.bittitan.com/hc/en-us/articles/115008260408-How-do-I-remove-a-domain-from-Office-365- more
-
Steps to create Point-to-Site VPN using Azure Portal
https://www.assistanz.com/steps-to-create-point-to-site-vpn-using-azure-portal/ more
-
Port Forwarding In Microsoft Windows
http://woshub.com/port-forwarding-in-windows/ more
-
Azure Burstable B Series Virtual Machines
https://kvaes.wordpress.com/2018/04/16/using-b-series-for-your-dev-vm-in-azure/
https://azure.microsoft.com/en-au/blog/introducing-b-series-our-new-burstable-vm-size/
https://docs.microsoft.com/en- … more
-
Powershell cmdlet to disable Windows Firewall
Powershell cmdlet to disable Windows Firewall:
Get-NetFirewallProfile | Set-NetFirewallProfile –Enabled False more