Get physical path of an IIS website using PowerShell
Below piece of code will give you physical path of an IIS website.Import-Module WebAdministration[string] $iisWebsiteName = 'Default Web Site'$iisWebsite = Get-WebFilePath…
A proper & well organized listing of IT companies
Below piece of code will give you physical path of an IIS website.Import-Module WebAdministration[string] $iisWebsiteName = 'Default Web Site'$iisWebsite = Get-WebFilePath…
Suppose, there is a website or a web-application which is running on your localhost. But,now you want to check some scenerio that how your website will work in live environment but you don't even want…
How IIS Process a Web Request?In ASP.NET, web requests are processed by IIS. Once your request arrives at IIS, a thread (also known as Worker Thread) from the CLR ThreadPool is taken to process your…