From 74239a5e8244c1a2a459ab37088198a053afb3b9 Mon Sep 17 00:00:00 2001 From: Virtuworks Date: Sun, 8 Jun 2014 17:08:19 -0400 Subject: [PATCH] Try something new to specify servername.txt --- .../BlackBerry5Provider.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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;