Skip to main content
4 votes

MS Webdeploy V3 encryptPassword correct usage

Well, I just learned why you need a password. (For those who don't know how, I've shown an example command line at the bottom.) According to one of the examples on this page, the encryptPassword ...
jpaugh's user avatar
  • 241
2 votes
Accepted

"Bad Gateway" when connecting to old IIS servers over SSL through NGINX reverse proxy

The setting proxy_ssl_protocols seems to control the connection between nginx and the upstream server (Windows Server 2003 in your case), https://docs.nginx.com/nginx/admin-guide/security-controls/...
Lex Li's user avatar
  • 1,407
2 votes

How to enable TLS for SMTP in II6 on Windows Server 2012 R2

From https://forums.iis.net/t/1155280.aspx When the IIS6 SMTP Server module looks for a certificate to use for TLS encryption, it seems checks the 'Local_Machine\my' store. I'm not sure where the ...
Lone Coder's user avatar
2 votes

How do I disable TLS 1.0 without breaking my IIS/ASP.NET websites?

We had to configure .NET to use stronger protocols before disabling TLS 1.0 to avoid System.InvalidOperationException in IIS. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727" /...
Mihai Gijgan's user avatar
1 vote

Connection timeout between windows servers

If server B is running "websites" (plural), almost certainly they will respond only when they are referenced by name - there has to be a name in the header to tell IIS which web site you're ...
tsc_chazz's user avatar
  • 2,633
1 vote

554+5.2.0+STOREDRV.Submission.Exception:SendAsDeniedException in IIS SMTP Relay When Scanning to Email from a Sharp MX-M364N

I had almost same issue, solved it by adding Send-As permission to the sender account. but if youre using Alias (not account) then add the Alias to the mail account. Somewhere in July-october 2018 ...
Usman.dk's user avatar
1 vote

554+5.2.0+STOREDRV.Submission.Exception:SendAsDeniedException in IIS SMTP Relay When Scanning to Email from a Sharp MX-M364N

I found I the Sender Name: value MUST be set under System Settings -> Image Send Settings -> Scan Settings. If Sender Name: value is blank the email will not send and you will receive the above ...
nerdofreak's user avatar
1 vote

IIS Rewrite Multiple URLS to Ports

Something like this (in your web.config) should work: <rule name="solution1" stopProcessing="true"> <match url="^(solution1/)(.*)" /> <action type="Rewrite" url="http://...
Glorfindel's user avatar
  • 1,213
1 vote

IIS/SMTP on Windows Server 2012 - Emails stuck in Queue folder

Issue was my Azure firewall. I had some outgoing firewall rules on my VNET that once removed the emails went out.
ERIC SCHRADER's user avatar
1 vote
Accepted

IIS6 Allowing CORS without Access-Control-Allow-Origin

If you’re not sending the request from frontend JavaScript code in a web application, then the request will succeed. The browser gets the response regardless—but the browser is the sole enforcement ...
sideshowbarker's user avatar
1 vote

how to track down security problems between IIS web servers?

Are your IIS running under a domain? What are your configuration settings for the sites? Are those configurations matching? Is anonymous authentication disabled? Are you impersonating the account used ...
Gilberto's user avatar
1 vote

SMTP Server Stops on Windows 2008 - Why? And Can I Auto Start It?

The startup type for the service is by default set to "Manual". Which will cause the service to be stopped after a reboot.
Björn Olsson's user avatar
1 vote

How to limit the memory used by an application in IIS?

I guess just to add to Dominic's older answer, on a 64bit pool you'll really want to be careful with the virtual memory allocation. I've seen the IIS worker process try to grab 22gb right away, where ...
QuilleyPowers's user avatar
1 vote

How do I format a text file for IIS Mailroot Pickup so that it sends an e-mail with attachments?

Old post, but this helped me out recently zamzar can convert msg to eml, even embedded pdfs. Tested with the exchange pickup folder, and it worked.
Gal220's user avatar
  • 11

Only top scored, non community-wiki answers of a minimum length are eligible