-
Posted to
IIS7 - Configuration & Scripting
by
ServerIntellect_BH
on
10-08-2009, 2:51 PM
Hello,
You may find the following useful:
IIS 7.0 Bit Rate Throttling Module Released
http://weblogs.asp.net/scottgu/archive/2008/03/18/iis-7-0-bit-rate-throttling-module-released.aspx
Using Dynamic IP Restrictions
http://learn.iis.net/page.aspx/548/using-dynamic-ip-restrictions/
It depends more on exactly what you are looking to do, but ...
-
Posted to
Security
by
ServerIntellect_BH
on
10-02-2009, 9:54 AM
Tom,
If you provided a .CSR and they responded with a .TXT which contains your signed request, you can simply rename the file appending the .CER extension and IIS should recognize it when finishing the request for the certificate signing.
Hope this helps!
-
Posted to
IIS7 - UI & Remote Management
by
ServerIntellect_BH
on
10-02-2009, 9:53 AM
Hello,
You may find the following useful, which explains how to remotely start/stop IIS7 using PSEXEC, or PowerShell:
http://stackoverflow.com/questions/1356856/how-to-start-stop-iis-6-0-7-0-remotely-using-powershell-scripts
Hope this helps!
-
Posted to
IIS 7 - Troubleshooting
by
ServerIntellect_BH
on
10-02-2009, 9:50 AM
Hello,
If you have the latest version of PowerShell installed, you can run the following script to remove all IIS role/features:
=====
# Get list of installed features
$InstalledRole = Get-WindowsFeature Web-Server | select Installed
# Evaluate "Installed" value for Web-Server role, if installed=remove role
If ...
-
Posted to
General
by
ServerIntellect_BH
on
09-30-2009, 4:12 PM
Hello,
Make sure the FTP site has been set up for Isolated FTP users, and that the Virtual Directory exists under the FTP site for the username's attempting to log in.
See the following for a walk-through guide:
http://support.microsoft.com/kb/555018
Hope this helps!
-
Posted to
IIS7 - General
by
ServerIntellect_BH
on
09-30-2009, 4:08 PM
Hello,
The registry keys used to disable the weak ciphers on Server 2003 should work on Server 2008 as well.
Let me know if it doesn't!
-
Posted to
Configuration & Scripting
by
ServerIntellect_BH
on
09-30-2009, 4:03 PM
Hello,
If the website will not be running on a static IP address, then instead of configuring the host headers for the site to a specific IP address, select "All Unassigned" instead, which essentially will allow the site to answer on any IP address by detecting the host header that was passed through the request.
You just then have to ...
-
Posted to
Troubleshooting
by
ServerIntellect_BH
on
09-30-2009, 3:51 PM
Selden,
If your IP addresses and DNS records have not changed during the move, then this sounds like a networking problem.
If you are not able to tracert from the server to the visitors experiencing the issue, then something is blocking traffic from being routed properly.
I would recommend contacting your hosting provider as they will have the ...
-
Posted to
IIS7 - General
by
ServerIntellect_BH
on
09-30-2009, 10:41 AM
Hello,
HTTPS protocol uses port 443 by default, so when you access https://domain.com/ it will automatically attempt to connect to port 443.
If you want to run your site on a custom port, you will need to ensure the Bindings for the website in IIS correctly reflect this.
How to Setup SSL on IIS ...
-
Posted to
IIS7 - Configuration & Scripting
by
ServerIntellect_BH
on
09-30-2009, 10:22 AM
Hello!
I would recommend looking into using PowerShell to accomplish this on IIS 7, as it has built-in "Cmdlets" for adding new ftp sites and virtual directories and in the long run, will be more beneficial to use over VBScript.
These should help get you started:
PowerShell Snap-in: Using the Task-based Cmdlets of the IIS PowerShell ...