Question : How can I look up the Exchange Proxy settings within Exchange Server 2003 so that I can enter this info into Outlook 2007 to establish http Exchange proxy settings

How can I look up the Exchange Proxy settings within Exchange Server 2003 so that I can enter this info into Outlook 2007 to establish http Exchange proxy settings?

I need to enter this information into Outlook 2007 (running on a laptop) so that this laptop will be able to establish remote connections to our company's Exchange server over the internet.

Where can I go within the Exchange Management Console (or any other place) to get this information?

Answer : How can I look up the Exchange Proxy settings within Exchange Server 2003 so that I can enter this info into Outlook 2007 to establish http Exchange proxy settings

I think you may want to create a console application for that. Just create a new project and select Win32 Console Application. You should then be able to paste you code in the main.cpp or any other main file.

This is a win32 application and therefore you wont be able to see the printf as there wont be any console. Here is how this one may work (though im not whether thats what would like it to be).

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
#include <stdio.h>
#include <string.h>
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) 
{
   FILE * pFile;
   char mystring [100];

   pFile = fopen ("C:\\myfile.txt" , "r");
   if (pFile == NULL) 
      ::MessageBox(NULL, "Error opening file", "Application", MB_OK);
   else 
   {
     fgets (mystring , 100 , pFile);
     fclose (pFile);
     if(strstr(mystring, "sergio") == (char*) &mystring[0])
     {
          ::MessageBox(NULL, "matched, do action here!", "Application", MB_OK);
     }
   }
  return 0;
}
Random Solutions  
 
programming4us programming4us