Skip to content

Commit

Permalink
Can create backups successfully and copy them to the store.
Browse files Browse the repository at this point in the history
  • Loading branch information
krisdb2009 committed Jun 22, 2019
1 parent 425acae commit 30918e8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SuperGrate/Classes/USMT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion SuperGrate/Main.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions SuperGrate/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> results = await Misc.GetUsersFromHost(tbSourceComputer.Text);
if (results != null)
{
Expand All @@ -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<string, string> results = await Misc.GetUsersFromStore(Config.MigrationStorePath);
if(results != null)
{
Expand Down
4 changes: 2 additions & 2 deletions SuperGrate/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 30918e8

Please sign in to comment.