Microsoft Azure Blog
Blog on Windows Azure, Microsoft's Cloud Computing Platform, as well as other technical IT matters.
-
The server network address “TCP://SQLServer:5023” can not be reached or does not exist.
The server network address “TCP://SQLServer:5023” can not be reached or does not exist. more
-
How to use REPLACE() within NTEXT columns in SQL Server
select cast(replace(cast(myntext as nvarchar(max)),'find','replace') as ntext)from myntexttable more
-
Create Hard Link in Windows at Operating System Level to Point to a Different Hard Drive
mklink /J c:\ProgramData e:\ProgramData2 more
-
How To Set Up FTP on Windows Azure
How To Set Up FTP on Windows Azure more
-
Purge Cloudflare Cache
https://support.cloudflare.com/hc/en-us/articles/200169246-How-do-I-purge-my-cache- more
-
Reset Password for Orchard CMS
1) In the table [Orchard_Users_UserPartRecord], change the Password field to a new password of your choosing and then PasswordFormat to Clear.
2) Do the same for the related record in the table [ … more
-
Disable Windows 2016 Automatic Updates
This can be controlled via command line: sconfig.cmd
Or by hacking the registry:
https://www.reddit.com/r/sysadmin/comments/57e184/windows_server_2016_updates_and_automatic_reboots/?st=j4rz0i6n&sh=0 … more
-
Creating a WIMP Stack (Windows Server, IIS, MySQL, PHP) on Windows Azure
Creating a WIMP Stack (Windows Server, IIS, MySQL, PHP) on Windows Azure more
-
Multiple Web Servers on Same Machine
https://www.devside.net/wamp-server/running-iis-and-apache-together-on-the-same-server-at-the-same-time more
-
Set Default Document on IIS
On IIS Manager select your page in the Sites tree.
Double click on configuration editor.
Select system.webServer/defaultDocument in the drop-down at the top of the page.
Change the "default.aspx" … more
-
Install PHP on Windows and IIS
https://www.itnota.com/install-php-windows-web-platform-installer/
http://www.ryadel.com/en/how-to-install-php-manager-for-iis-on-windows-server-or-windows-10/ more
-
.Net Core Downloads
https://www.microsoft.com/net/download/core more
-
Custom HTML Tags
http://stackoverflow.com/questions/2802687/is-there-a-way-to-create-your-own-html-tag-in-html5
https://www.html5rocks.com/en/tutorials/webcomponents/customelements/
-
Setting up a Git server on Windows using Git for Windows and CopSSH
Setting up a Git server on Windows using Git for Windows and CopSSH more
-
Powershell Script to Send Email
Send-MailMessage has a -Credential parameter that takes a pscredential object. I would use a hashtable to store and splat the connection arguments:
$MailArgs = @{
From = 'mindaugas@yahoo. … more
-
Resizing an Azure VM disk dynamically
https://blogs.technet.microsoft.com/keithmayer/2015/03/24/resizing-data-disks-in-the-cloud-on-microsoft-azure-with-windows-powershell/
http://windowsitpro.com/azure/how-resize-azure-disk
-
Getting Started with Azure Powershell
Getting Started with Azure Powershell more
-
Automatic Zip and Backup a Folder
To backup folder C:\websites to c:\Backups using powershell from command prompt:
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression. … more
-
Orchard CMS Error: None of the constructors found with 'Orchard.Environment.AutofacUtil.DynamicProxy2.ConstructorFinderWrapper'
When faced with error:
None of the constructors found with 'Orchard.Environment.AutofacUtil.DynamicProxy2.ConstructorFinderWrapper' on type 'Module1' can be invoked with the available services and … more
-
Create Visual Studio 2017 Offline Installer
Run this from the command line (in the directory containing the online installer):
mu_visual_studio_professional_2017_x86_x64_10049787.exe --layout c:\vspro2017offline
Then you can use WinCDEmu … more