View Single Post
Old 06-17-2010, 10:24 AM   #3
SteveE
Thumbs Must Hurt
 
Join Date: May 2009
Model: 8700g
PIN: N/A
Carrier: T-Mobile
Posts: 86
Default

I started mucking around with PS and the BESUserAdminClient, but have had problems getting the tool to exit properly from PS (it just stays open):

$psi = new-object System.Diagnostics.ProcessStartInfo("C:\Program Files\Research In Motion\BlackBerry Enterprise Server Resource Kit\BlackBerry Enterprise Server User Administration Tool Client\BESUSerAdminClient.exe");
$psi.UseShellExecute = $false;
$psi.Arguments = "-add -u or whatever arguments you want to add";
$psi.Domain = "AD Domain";
[System.Diagnostics.Process]::Start($psi)
Offline   Reply With Quote