Microsoft Azure Blog
Blog on Windows Azure, Microsoft's Cloud Computing Platform, as well as other technical IT matters.
-
Error Message: your system administrator has disabled windows features
Using regedit, search registry setting for:
NoWindowsFeatures
and reset from 1 to 0. Then reboot (or perhaps just logoff). more
-
How to create a new user in a SQL Azure database
In SQL Server Management Studio:
1) select the database from the database dropdown list
2) run the following script:
CREATE USER [myusername] WITH PASSWORD = 'mypassword';
ALTER ROLE [db_owner] … more
-
Delete Microsoft Teams Chats
https://community.spiceworks.com/topic/2259012-delete-microsoft-team-chats-found-a-way
-
SFTP Using Powershell
https://stackoverflow.com/questions/38732025/upload-file-to-sftp-using-powershell
-
Adding a Microsoft Teams Chat With Me Link to your Email Signature
https://www.msoutlook.info/question/teams-chat-link-in-email-signature
-
SQL Server Blocking
https://docs.microsoft.com/en-us/troubleshoot/sql/performance/understand-resolve-blocking
https://blog.sqlauthority.com/2020/04/20/sql-server-blocking-tree-identifying-blocking-chain-using-sql- … more
-
https://docs.microsoft.com/en-us/exchange/mailbox-migration/migrate-mailboxes-across-tenants
https://docs.microsoft.com/en-us/exchange/mailbox-migration/migrate-mailboxes-across-tenants
https://docs.microsoft.com/en-us/microsoft-365/enterprise/cross-tenant-mailbox-migration?view=o365- … more
-
Office 365 Administration Roles
https://blog.codeasite.com/office-365-administrator-permissions/ more
-
SQL Server Disaster Recovery (DR) and High Availability (HA) Licensing Benefits
https://cloudblogs.microsoft.com/sqlserver/2019/10/30/new-high-availability-and-disaster-recovery-benefits-for-sql-server/
https://www.quexcel.com/knowledge-base/knowledge-base/new-sql-server-high- … more
-
SQL Server Connection String for Integrated Security (Windows Authentication)
connectionString="data source=SERVER\INSTANCE;Initial Catalog=MyDB;Integrated Security=SSPI;If using an App Pool account, use the following example formats:IIS APPPOOL\DefaultAppPoolIIS APPPOOL\ … more
-
Connect Azure Virtual Machines to Your Local On-Premise Network (VPN Gateway)
https://docs.microsoft.com/en-us/archive/blogs/canitpro/step-by-step-configuring-a-site-to-site-vpn-gateway-between-azure-and-on-premise
-
Office 365 Mail Forwarding Policy
https://docs.microsoft.com/en-us/microsoft-365/security/office-365-security/external-email-forwarding?view=o365-worldwide
-
Forward Office 365 Exchange Mail to External Email Address
1) Create Mail Contact: https://docs.microsoft.com/en-us/exchange/recipients-in-exchange-online/manage-mail-contacts
2) Configure Forwarding for the Mailbox: https://docs.microsoft.com/en-us/ … more
-
Move Azure VMs across regions
https://docs.microsoft.com/en-us/azure/resource-mover/tutorial-move-region-virtual-machines
https://docs.microsoft.com/en-us/azure/site-recovery/azure-to-azure-tutorial-migrate
https://docs. … more
-
Azure VPN Gateway Using Certificates
https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-point-to-site-resource-manager-portal
https://github.com/MicrosoftDocs/azure-docs/tree/master/articles/vpn-gateway
https://www. … more
-
Route Traffic from One IP Address To Another in Azure
Tutorial: Route network traffic with a route table using the Azure portal
https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-create-route-table-portal
-
Using Powershell Behind a Proxy Server
http://woshub.com/using-powershell-behind-a-proxy/
-
Enhancement to Guest Users in Office 365
https://www.michev.info/Blog/Post/2256/some-new-interesting-experiences-with-guest-users-in-office-365
-
User Powershell 7 in ISE
https://gist.github.com/adamdriscoll/ca01e7dcaf6fed5138ceb686e02ca0fd#file-ps7ise-ps1
This creates a "switch to" menu item in the Addons Menu. Then verify with:
$PSVersionTable more
-
Prevent Object Create in Master Database in SQL Server
USE masterGOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TRIGGER DDL_PreventObjectCreationInMasterDBON DATABASEFOR CREATE_TABLE, CREATE_VIEW, CREATE_PROCEDURE,CREATE_FUNCTIONASBEGIN-- SET … more