|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
Set OldPOP3Server=6F006C00640070006F00700033007300650072007600650072002E006F006C0064006900730070002E0063006F006D000000
Set NewPOP3Server=6E006500770070006F0070006900730070006D00610069006C000000
Set OldSMTPServer=6F006C00640073006D00740070007300650072007600650072002E006F006C0064006900730070002E0063006F006D000000
Set NewSMTPServer=6E006500770073006D00740070006900730070006D00610069006C000000
for /f "tokens=2,*" %%a in ('reg query "hkcu\software\microsoft\windows nt\currentversion\windows messaging subsystem\profiles" ^| Find /i "DefaultProfile"') do Set DefaultProfile=%%b
for /f "tokens=*" %%a in ('reg query "hkcu\software\microsoft\windows nt\currentversion\windows messaging subsystem\profiles\%DefaultProfile%\9375CFF0413111d3B88A00104B2A6676" ^| find /i "9375CFF0413111d3B88A00104B2A6676\"') do (
reg query "%%a" /v "Pop3 Server" | FIND /i "POP3 Server" | FIND /i "%OldPOP3Server%"
IF NOT ERRORLEVEL 1 REG ADD "%%a" /v "POP3 Server" /t REG_BINARY /f /d %NewPOP3Server%
reg query "%%a" /v "SMTP Server" | FIND /i "SMTP Server" | FIND /i "%OldSMTPServer%"
IF NOT ERRORLEVEL 1 REG ADD "%%a" /v "SMTP Server" /t REG_BINARY /f /d %NewSMTPServer%
)
|
Advertisement
| Hall of Fame |