Question : exchange 2003, email box count

would anyone know if there is a tool out there that i can use to run on my exchange that tells me how many email boxes our system has, and the store that it belongs too.

thank you in advance for your help.

Answer : exchange 2003, email box count

If both if's are false, it is not returning anything
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
public String enhdtest(String country,Container container){

 
int indcount= 0; 
int usacount= 0;
 
if(country.equals( "INDIA"))
indcount ++;

if(country.equals( "USA"))
usacount++;

if(indcount != 0)
return "BSINDIA";

if(usacount != 0)
return "BSUSA";

return "DEFAULT";
}
Random Solutions  
 
programming4us programming4us