diff --git a/SuperGrate/Classes/USMT.cs b/SuperGrate/Classes/USMT.cs index 0f75880..42eeec8 100644 --- a/SuperGrate/Classes/USMT.cs +++ b/SuperGrate/Classes/USMT.cs @@ -65,7 +65,7 @@ private static Task UploadToStore(string SID) return Task.Run(() => { string Destination = Config.MigrationStorePath + @"\" + SID + @"\"; Directory.CreateDirectory(Destination); - Copy.CopyFile(@"C:\SuperGrate\USMT\USMT.MIG", Destination + "USMT.MIG"); + Copy.CopyFile(@"\\" + Main.SourceComputer + @"\C$\SuperGrate\USMT\USMT.MIG", Destination + "USMT.MIG"); }); } static private Task StartRemoteProcess(string Target, string CLI, string CurrentDirectory) diff --git a/SuperGrate/Main.Designer.cs b/SuperGrate/Main.Designer.cs index 2eb4bb0..8ae7b22 100644 --- a/SuperGrate/Main.Designer.cs +++ b/SuperGrate/Main.Designer.cs @@ -169,7 +169,7 @@ private void InitializeComponent() this.lblUserList.Name = "lblUserList"; this.lblUserList.Size = new System.Drawing.Size(114, 286); this.lblUserList.TabIndex = 4; - this.lblUserList.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.lblUserList.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // tbSourceComputer // diff --git a/SuperGrate/Main.cs b/SuperGrate/Main.cs index f8f5aa1..77fc5fc 100644 --- a/SuperGrate/Main.cs +++ b/SuperGrate/Main.cs @@ -45,7 +45,7 @@ private async void BtnListSource_Click(object sender, EventArgs e) { tblMainLayout.Enabled = false; lbxUsers.Items.Clear(); - lblUserList.Text = "Source Computer Users"; + lblUserList.Text = "Users on Source Computer:"; Dictionary results = await Misc.GetUsersFromHost(tbSourceComputer.Text); if (results != null) { @@ -65,7 +65,7 @@ private async void BtnListStore_Click(object sender, EventArgs e) { tblMainLayout.Enabled = false; lbxUsers.Items.Clear(); - lblUserList.Text = "Migration Store Users"; + lblUserList.Text = "Users in Migration Store:"; Dictionary results = await Misc.GetUsersFromStore(Config.MigrationStorePath); if(results != null) { diff --git a/SuperGrate/Properties/AssemblyInfo.cs b/SuperGrate/Properties/AssemblyInfo.cs index d89a120..2b5ce04 100644 --- a/SuperGrate/Properties/AssemblyInfo.cs +++ b/SuperGrate/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("0.0.0.0")] +[assembly: AssemblyVersion("0.0.0.1")] +[assembly: AssemblyFileVersion("0.0.0.1")]