diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution/BlackBerry5Provider.cs b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution/BlackBerry5Provider.cs index 43b2f7e1..22614732 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution/BlackBerry5Provider.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution/BlackBerry5Provider.cs @@ -124,8 +124,11 @@ namespace WebsitePanel.Providers.HostedSolution //run handheldcleanup.exe if (File.Exists(file2)) { - string arguments2 = string.Format("-u -p {0} < servername.txt", - MAPIProfile); + string serverfilename = Path.Combine(HandheldcleanupPath, "servername.txt"); + + string arguments2 = string.Format("-u -p {0} < {1}", + MAPIProfile, + serverfilename); try { string output;