Posted On March 31, 2019

Enable File Server to Have Multiple Alias Host Names

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Enable File Server to Have Multiple Alias Host Names
Regedit: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0, create Multi-String Value = BackConnectionHostNames with values of the CNAMES of the file server >> Restart the machine

OR

Regedit: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0, create Multi-String Value = DisableLoopbackCheck, change its value to 1 >> Restart the machine

Warning: disable loop-back check will cause security weakness of man-in-the-middle (MITM) attacks

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: How to Disable Users Authenticated Control (UAC)

This has been tested on Windows Server 2008, 2016, and 2019. Nothing fancy, just copy/paste…

VSS Error: Snapshots were found, but they were outside of your allowed context

Error: PS C:\Windows\system32> vssadmin delete shadows /for=c: /allvssadmin 1.1 - Volume Shadow Copy Service administrative…

PowerShell: Download and Expand Zip File – Legacy Compatible

function downloadFile{ param( $url, $tempFolder="C:\Temp" ) try{ $fileName=split-path $url -leaf $tempFile = "$tempFolder\$fileName" try{[Net.ServicePointManager]::SecurityProtocol =…