1 Commits

Author SHA1 Message Date
1cbdbccf77 Imported 2.x Project Files 2019-03-05 20:26:02 +00:00
79 changed files with 632 additions and 16791 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
+9
View File
@@ -0,0 +1,9 @@
<Application x:Class="VMwareLauncher.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:VMwareLauncher"
StartupUri="Startup.xaml">
<Application.Resources>
</Application.Resources>
</Application>
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace VMwareLauncher
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
+35
View File
@@ -0,0 +1,35 @@
using Microsoft.Win32;
using System.ComponentModel;
using System.IO;
namespace VMwareLauncher
{
public class CheckDependencies
{
private BackgroundWorker performInitialChecks = new BackgroundWorker();
public void PerformCheck()
{
// Check Vmware Workstation has been installed.
if (!File.Exists(ProcessControl.DefaultVmwarePath))
{
MessageHandler.Show(MessageHandler.MessageCode.VmwareNotInstalled);
ApplicationControl.BlockingErrors = true;
}
// Determine if VML has ever run before.
string vmlPath = @"HKEY_LOCAL_MACHINE\SOFTWARE\VmwareLauncher";
string vmlKey = "HasBeenSetup";
if (Registry.GetValue(vmlPath, vmlKey, null) == null)
{
Registry.SetValue(vmlPath, vmlKey, 1);
MessageHandler.Show(MessageHandler.MessageCode.WelcomeMessage);
}
// Modify service status to manual.
ApplicationControl.BlockingErrors = Startup.serviceControl.ForceServicesManual();
}
}
}
-41
View File
@@ -1,41 +0,0 @@
using System.Windows.Forms;
namespace VmwareLauncher
{
public partial class ErrorHandler
{
public enum ErrorCode
{
VmwareNotInstalled,
NoAdminRights,
TooManyVMLInstances
}
public static void ShowError (ErrorCode ec)
{
switch (ec)
{
case ErrorCode.VmwareNotInstalled:
MessageBox.Show("Could not find VMware Workstation! Please ensure VMware has been installed correctly.",
"VMware not found",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
break;
case ErrorCode.NoAdminRights:
MessageBox.Show("You must run VMware Launcher as an Administrator!",
"Excecution Error",
MessageBoxButtons.OK,
MessageBoxIcon.Warning);
break;
case ErrorCode.TooManyVMLInstances:
MessageBox.Show("Only one instance of VMware Launcher can be open!",
"External Error",
MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
break;
default:
break;
}
}
}
}
-24
View File
@@ -1,24 +0,0 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VmwareLauncher
{
class InstanceCheck
{
public void doCheck()
{
Process[] proc = Process.GetProcessesByName("vmwarelauncher");
if (proc.Count() != 1)
{
ErrorHandler.ShowError(ErrorHandler.ErrorCode.TooManyVMLInstances);
Environment.Exit(0);
}
}
}
}
+48
View File
@@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace VMwareLauncher
{
public class MessageHandler
{
public enum MessageCode
{
VmwareNotInstalled,
TooManyVMLInstances,
WelcomeMessage
}
public static void Show(MessageCode mc)
{
switch (mc)
{
case MessageCode.VmwareNotInstalled:
MessageBox.Show("Could not find VMware Workstation! Please ensure VMware has been installed correctly.",
"VMware not found",
MessageBoxButton.OK,
MessageBoxImage.Error);
break;
case MessageCode.TooManyVMLInstances:
MessageBox.Show("Only one instance of VMware Launcher can be open!",
"External Error",
MessageBoxButton.OK,
MessageBoxImage.Exclamation);
break;
case MessageCode.WelcomeMessage:
MessageBox.Show(@"Welcome to VMwareLauncher! This utility is designed to automatically start and stop VMware Workstation services " +
"as needed when running the application. Since you've never run this tool before, your services will be configured " +
"automatically.",
"VMware Launcher",
MessageBoxButton.OK,
MessageBoxImage.Information);
break;
default:
break;
}
}
}
}
+32
View File
@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
namespace VMwareLauncher
{
public class ProcessControl
{
public readonly static string DefaultVmwareExe = "vmware";
public readonly static string DefaultVmwarePath = (string)Microsoft.Win32.Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation", "InstallPath", null) + $"{DefaultVmwareExe}.exe";
public readonly static string DefaultVmlPath = "vmwarelauncher";
public string ProcessName { get; set; }
public void StartProcess()
{
ProcessStartInfo pInf = new ProcessStartInfo(ProcessName);
FileInfo fInf = new FileInfo(ProcessName);
pInf.WorkingDirectory = fInf.DirectoryName;
Process proc = Process.Start(pInf);
}
public bool IsProcessRunning()
{
Process[] proc = Process.GetProcessesByName(ProcessName);
return proc.Count() != 1;
}
}
}
-22
View File
@@ -1,22 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VmwareLauncher
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Startup());
}
}
}
+29 -12
View File
@@ -1,9 +1,10 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
using System.Windows;
// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("VMware Launcher")]
@@ -11,28 +12,44 @@ using System.Resources;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("VMware Launcher")]
[assembly: AssemblyCopyright("Fil Sapia © 2016")]
[assembly: AssemblyCopyright("Rebound Software - 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("bcd13b4b-d304-4abe-99b8-35983b646051")]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// 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("1.3.6.1")]
[assembly: AssemblyFileVersion("1.3.6.1")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
+23 -3
View File
@@ -1,14 +1,14 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.0
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace VmwareLauncher.Properties {
namespace VMwareLauncher.Properties {
using System;
@@ -39,7 +39,7 @@ namespace VmwareLauncher.Properties {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("VmwareLauncher.Properties.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("VMwareLauncher.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@@ -59,5 +59,25 @@ namespace VmwareLauncher.Properties {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
/// </summary>
internal static System.Drawing.Icon VMwareLauncher {
get {
object obj = ResourceManager.GetObject("VMwareLauncher", resourceCulture);
return ((System.Drawing.Icon)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap VMwareWorkstationBack {
get {
object obj = ResourceManager.GetObject("VMwareWorkstationBack", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}
+6
View File
@@ -118,4 +118,10 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="VMwareLauncher" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\VMwareLauncher.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="VMwareWorkstationBack" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\VMwareWorkstationBack.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
+2 -2
View File
@@ -1,14 +1,14 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34011
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace VmwareLauncher.Properties
namespace VMwareLauncher.Properties
{
+2 -2
View File
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
</SettingsFile>

Before

Width:  |  Height:  |  Size: 361 KiB

After

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

-26
View File
@@ -1,26 +0,0 @@
using Microsoft.Win32;
namespace VmwareLauncher
{
partial class ServiceConfig
{
/// <summary>
/// Forces the startup type for the specified services to manual.
/// </summary>
/// <param name="svc"></param>
public static void ForceServicesManual (string[] svc)
{
string winServices = @"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services";
foreach (var service in svc)
{
string currentService = winServices + "\\" + service;
if ((int) Registry.GetValue(currentService, "Start", null) != 3)
{
Registry.SetValue(currentService, "Start", 3);
}
}
}
}
}
+40
View File
@@ -0,0 +1,40 @@
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VMwareLauncher
{
public class ServiceControl
{
public static readonly List<string> DefaultVmwareServices = new List<string> { "VMnetDHCP", "VMUSBArbService", "VMware NAT Service", "VMwareHostd", "VMAuthdService" }; //Array of services to close
public List<string> ServiceList { get; set; }
public bool ForceServicesManual()
{
bool errors = false;
string winServices = @"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services";
try
{
foreach (var service in ServiceList)
{
string currentService = winServices + "\\" + service;
if ((int)Registry.GetValue(currentService, "Start", null) != 3)
{
Registry.SetValue(currentService, "Start", 3);
}
}
}
catch (Exception)
{
errors = true;
throw;
}
return errors;
}
}
}
+12
View File
@@ -0,0 +1,12 @@
<Window x:Class="VMwareLauncher.Startup"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:VMwareLauncher"
mc:Ignorable="d"
Title="Startup" Height="300" Width="300" Visibility="Hidden">
<Grid>
</Grid>
</Window>
+60
View File
@@ -0,0 +1,60 @@
using System;
using System.Windows;
namespace VMwareLauncher
{
/// <summary>
/// Interaction logic for Startup.xaml
/// </summary>
public partial class Startup : Window
{
static internal TrayIcon trayIcon = new TrayIcon();
static internal ServiceControl serviceControl = new ServiceControl();
internal StatusWindow statusWindow = new StatusWindow();
internal CheckDependencies checkDependencies = new CheckDependencies();
public Startup()
{
InitializeComponent();
serviceControl.ServiceList = ServiceControl.DefaultVmwareServices;
ProcessControl vmwareControl = new ProcessControl();
vmwareControl.ProcessName = ProcessControl.DefaultVmwarePath;
ProcessControl vmlControl = new ProcessControl();
vmlControl.ProcessName = ProcessControl.DefaultVmlPath;
// Only continue if no errors have been detected.
checkDependencies.PerformCheck();
if (ApplicationControl.BlockingErrors)
ApplicationControl.Shutdown();
if (!vmlControl.IsProcessRunning())
{
statusWindow.Show();
trayIcon.Create();
}
else
{
vmwareControl.StartProcess();
ApplicationControl.Shutdown();
}
}
}
public static class ApplicationControl
{
public static bool BlockingErrors { get; set; }
public static void Shutdown()
{
Startup.trayIcon.Destroy();
if (BlockingErrors)
Environment.Exit(1);
else
Environment.Exit(0);
}
}
}
-97
View File
@@ -1,97 +0,0 @@
namespace VmwareLauncher
{
partial class Startup
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Startup));
this.label1 = new System.Windows.Forms.Label();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.Snow;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(251, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Preparing to launch VMware Workstation...";
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(12, 35);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(360, 23);
this.progressBar.TabIndex = 1;
//
// notifyIcon
//
this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.notifyIcon.BalloonTipText = "VMware Launcher will run in the background. Exit VMware Workstation to shutdown a" +
"ll associated services.";
this.notifyIcon.BalloonTipTitle = "VMware Launcher";
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
this.notifyIcon.Text = "VMware Launcher";
//
// Startup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(384, 121);
this.ControlBox = false;
this.Controls.Add(this.progressBar);
this.Controls.Add(this.label1);
this.DoubleBuffered = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(400, 160);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(400, 160);
this.Name = "Startup";
this.ShowIcon = false;
this.Text = "VMware Launcher";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.NotifyIcon notifyIcon;
}
}
-170
View File
@@ -1,170 +0,0 @@
using System;
using System.Windows.Forms;
using System.IO;
using System.Diagnostics;
using System.Threading;
using System.ServiceProcess;
using Microsoft.Win32;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Threading.Tasks;
namespace VmwareLauncher
{
public partial class Startup : Form
{
readonly string[] vmServices = new string[] { "VMnetDHCP", "VMUSBArbService", "VMware NAT Service", "VMwareHostd", "VMAuthdService" }; //Array of services to close
readonly string vmwarePath = (string) Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation", "InstallPath", null) + "vmware.exe";
bool canRun = true;
BackgroundWorker PerformInitialChecks = new BackgroundWorker();
BackgroundWorker RunProcess = new BackgroundWorker();
public Startup()
{
InitializeComponent();
PerformInitialChecks.DoWork += PerformInitialChecks_DoWork;
PerformInitialChecks.RunWorkerCompleted += PerformInitialChecks_RunWorkerCompleted;
PerformInitialChecks.RunWorkerAsync();
RunProcess.DoWork += RunProcess_DoWork;
}
private void PerformInitialChecks_DoWork(object sender, DoWorkEventArgs e)
{
// Check Vmware Workstation has been installed.
if (vmwarePath == null & !File.Exists(vmwarePath))
{
ErrorHandler.ShowError(ErrorHandler.ErrorCode.VmwareNotInstalled);
Application.Exit();
}
// Run standalone instance of VMware if VML is already running.
Process[] proc = Process.GetProcessesByName("vmwarelauncher");
if (proc.Count() != 1)
{
//ErrorHandler.ShowError(ErrorHandler.ErrorCode.TooManyVMLInstances);
Process process = Process.Start(vmwarePath);
Environment.Exit(0);
}
// Determine if VML has ever run before;
string vmlPath = @"HKEY_LOCAL_MACHINE\SOFTWARE\VmwareLauncher";
string vmlKey = "HasBeenSetup";
if (Registry.GetValue(vmlPath, vmlKey, null) == null)
{
Registry.SetValue(vmlPath, vmlKey, 1);
MessageBox.Show(@"Welcome to VMwareLauncher! This utility is designed to automatically start and stop VMware Workstation services " +
"as needed when running the application. Since you've never run this tool before, your services will be configured " +
"automatically.",
"VMwareLauncher",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
}
ServiceConfig.ForceServicesManual(vmServices);
LoadServices();
}
private void PerformInitialChecks_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
RunProcess.RunWorkerAsync();
}
private void RunProcess_DoWork(object sender, DoWorkEventArgs e)
{
if (canRun)
{
Process process = Process.Start(vmwarePath);
MinimizeToTray();
bool isVmwareRunning = true;
while (isVmwareRunning)
{
Thread.Sleep(5000);
isVmwareRunning = false; // Default value.
foreach (Process instance in Process.GetProcessesByName("vmware"))
isVmwareRunning = true;
}
StopServices();
}
}
private void LoadServices()
{
for (int i = 0; i < vmServices.Length; i++)
{
foreach (string service in vmServices)
{
ServiceController sc = new ServiceController(service, Environment.MachineName.ToString());
try
{
if (sc.Status.Equals(ServiceControllerStatus.Stopped))
{
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running);
}
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
StepProgBar();
}
}
catch (Exception)
{
ErrorHandler.ShowError(ErrorHandler.ErrorCode.NoAdminRights);
canRun = false;
Application.Exit();
break;
}
}
}
}
private void StopServices()
{
try
{
for (int i = 0; i < vmServices.Length; i++)
{
ServiceController service = new ServiceController(vmServices[i], Environment.MachineName.ToString());
if (service.Status.Equals(ServiceControllerStatus.Running))
{
service.Stop();
service.WaitForStatus(ServiceControllerStatus.Stopped);
}
}
Process[] proc = Process.GetProcessesByName("vmware-tray");
if (proc.Length > 1) { proc[0].Kill(); }
Application.Exit();
}
catch (Exception)
{
throw;
}
}
void StepProgBar()
{
float stepPercentage = vmServices.Length / 100f * vmServices.Length * 100f;
progressBar.Increment(25);
progressBar.PerformStep();
Thread.Sleep(250);
}
private void MinimizeToTray()
{
Visible = false;
notifyIcon.Visible = true;
notifyIcon.ShowBalloonTip(10);
}
}
}
File diff suppressed because it is too large Load Diff
+15
View File
@@ -0,0 +1,15 @@
<Window x:Class="VMwareLauncher.StatusWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:VMwareLauncher"
mc:Ignorable="d"
Title="VMware Launcher 2.0" Height="173" Width="495" Loaded="Window_Loaded" ResizeMode="NoResize" Closing="Window_Closing" Icon="Resources/VMwareLauncher.ico">
<Grid>
<Image Stretch="Fill" Source="Resources/VMWareWorkstationBack.png"/>
<ProgressBar x:Name="progLoading" IsIndeterminate="True" Margin="0,0,0,6" Height="14" VerticalAlignment="Bottom" HorizontalAlignment="Left" Width="489"/>
<Label x:Name="labelStatus" Content="Starting VMware Workstation Services..." Margin="4,0,0,21" Foreground="#FFEAEAEA" FontFamily="Calibri" Height="25" VerticalAlignment="Bottom" HorizontalAlignment="Left" Width="470"/>
</Grid>
</Window>
+114
View File
@@ -0,0 +1,114 @@
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.ServiceProcess;
using System.Threading;
using System.Windows;
using System.Windows.Threading;
namespace VMwareLauncher
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class StatusWindow : Window
{
BackgroundWorker runProcess = new BackgroundWorker();
BackgroundWorker loadServices = new BackgroundWorker();
BackgroundWorker stopServices = new BackgroundWorker();
public StatusWindow()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
DispatcherTimer delayWindowHide = new DispatcherTimer();
delayWindowHide.Tick += DelayWindowHide_Tick;
delayWindowHide.Interval = new TimeSpan(0, 0, 2);
runProcess.DoWork += RunProcess_DoWork;
loadServices.DoWork += LoadServices_DoWork;
stopServices.DoWork += StopServices_DoWork;
delayWindowHide.Start();
loadServices.RunWorkerAsync();
}
private void DelayWindowHide_Tick(object sender, EventArgs e)
{
Application.Current.Dispatcher.Invoke(() => { Visibility = Visibility.Hidden; });
}
private void StopServices_DoWork(object sender, DoWorkEventArgs e)
{
try
{
foreach (string service in Startup.serviceControl.ServiceList)
{
ServiceController sc = new ServiceController(service, Environment.MachineName.ToString());
if (sc.Status.Equals(ServiceControllerStatus.Running))
{
sc.Stop();
sc.WaitForStatus(ServiceControllerStatus.Stopped);
}
}
ApplicationControl.Shutdown();
}
catch (Exception) { throw; }
}
private void LoadServices_DoWork(object sender, DoWorkEventArgs e)
{
foreach (string service in Startup.serviceControl.ServiceList)
{
ServiceController sc = new ServiceController(service, Environment.MachineName.ToString());
try
{
if (sc.Status.Equals(ServiceControllerStatus.Stopped))
{
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running);
}
if (sc.Status.Equals(ServiceControllerStatus.Running))
{ }
}
catch (Exception) { throw; }
}
runProcess.RunWorkerAsync();
}
private void RunProcess_DoWork(object sender, DoWorkEventArgs e)
{
if (!ApplicationControl.BlockingErrors)
{
ProcessControl processControl = new ProcessControl();
processControl.ProcessName = ProcessControl.DefaultVmwarePath;
processControl.StartProcess();
bool isVmwareRunning = true;
while (isVmwareRunning || TrayIcon.KeepLauncherRunning)
{
Thread.Sleep(3000);
isVmwareRunning = false; // Default value.
foreach (Process instance in Process.GetProcessesByName(ProcessControl.DefaultVmwareExe))
isVmwareRunning = true;
}
stopServices.RunWorkerAsync();
}
}
/// <summary>
/// Disable user from terminating application from close button.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Window_Closing(object sender, CancelEventArgs e) { e.Cancel = true; }
}
}
+81
View File
@@ -0,0 +1,81 @@
using System.Windows.Forms;
namespace VMwareLauncher
{
public class TrayIcon
{
private static NotifyIcon trayIcon = new NotifyIcon();
private static MenuItem itemKeepLauncherRunning = new MenuItem();
private static MenuItem itemHelp = new MenuItem();
private static ContextMenu contextMenu = new ContextMenu();
private static bool keepLauncherRunning { get; set; }
public static bool KeepLauncherRunning
{
get
{
return keepLauncherRunning;
}
set
{
itemKeepLauncherRunning.Checked = value;
keepLauncherRunning = value;
}
}
public void Create()
{
// Assign icon to tray object.
trayIcon.Icon = Properties.Resources.VMwareLauncher;
trayIcon.DoubleClick += TrayIcon_DoubleClick;
itemKeepLauncherRunning.Text = "Keep Launcher Running";
itemKeepLauncherRunning.Click += KeepLauncherRunning_Click;
contextMenu.MenuItems.Add(itemKeepLauncherRunning);
itemHelp.Text ="Help";
itemHelp.Click += ItemHelp_Click;
contextMenu.MenuItems.Add(itemHelp);
// Wire context menu to tray icon and show.
trayIcon.ContextMenu = contextMenu;
trayIcon.Visible = true;
}
private void TrayIcon_DoubleClick(object sender, System.EventArgs e)
{
var proc = new ProcessControl();
proc.ProcessName = ProcessControl.DefaultVmwarePath;
proc.StartProcess();
}
private void ItemHelp_Click(object sender, System.EventArgs e)
{
trayIcon.ShowBalloonTip(5000,
"VMware Launcher",
"VMware Launcher will continue to run in the background until Workstation has been terminated.",
ToolTipIcon.Info);
}
private void KeepLauncherRunning_Click(object sender, System.EventArgs e)
{
if (KeepLauncherRunning == false)
{
KeepLauncherRunning = true;
}
else
{
KeepLauncherRunning = false;
}
}
public void Destroy()
{
trayIcon.ShowBalloonTip(3000,
"VMware Launcher",
"VMware Launcher has stopped all background Workstation services. Enjoy your day :-)",
ToolTipIcon.None);
trayIcon.Dispose();
}
}
}
Binary file not shown.
+22
View File
@@ -0,0 +1,22 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.7
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VMwareLauncher", "VMwareLauncher.csproj", "{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
+71 -107
View File
@@ -1,38 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{40A28143-CEF4-41B4-8476-3466822AAAA5}</ProjectGuid>
<ProjectGuid>{89E29C69-15E2-43ED-9B98-4BFE9C6D7A2A}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>VmwareLauncher</RootNamespace>
<RootNamespace>VMwareLauncher</RootNamespace>
<AssemblyName>VMwareLauncher</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.3.6.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -40,7 +26,7 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
@@ -48,116 +34,94 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>VMwareLauncher.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>CF62D06B3FA506E9C305CD0D380CBFF29801BD82</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>
</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<TargetZone>LocalIntranet</TargetZone>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\VMwareLauncher.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<Compile Include="ErrorHandler.cs" />
<Compile Include="ServiceConfig.cs" />
<Compile Include="StartupForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="StartupForm.Designer.cs">
<DependentUpon>StartupForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="StartupForm.resx">
<DependentUpon>StartupForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</EmbeddedResource>
</ApplicationDefinition>
<Compile Include="CheckDependencies.cs" />
<Compile Include="ProcessControl.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Startup.xaml.cs">
<DependentUpon>Startup.xaml</DependentUpon>
</Compile>
<Compile Include="StatusWindow.xaml.cs">
<DependentUpon>StatusWindow.xaml</DependentUpon>
</Compile>
<Compile Include="TrayIcon.cs" />
<Page Include="Startup.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="StatusWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MessageHandler.cs" />
<Compile Include="ServiceControl.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<None Include="app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="App.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="VMwareLauncher.ico" />
<Resource Include="Resources\VMwareWorkstationBack.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
<Resource Include="Resources\VMwareLauncher.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
-13
View File
@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishUrlHistory>publish\</PublishUrlHistory>
<InstallUrlHistory />
<SupportUrlHistory />
<UpdateUrlHistory />
<BootstrapperUrlHistory />
<ErrorReportUrlHistory />
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
</Project>
+12 -6
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
@@ -18,29 +18,33 @@
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
<applicationRequestMinimum>
<defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
</applicationRequestMinimum>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
@@ -52,6 +56,7 @@
</windowsSettings>
</application>
-->
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!--
<dependency>
@@ -67,4 +72,5 @@
</dependentAssembly>
</dependency>
-->
</assembly>
</assembly>
Binary file not shown.
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
Binary file not shown.
Binary file not shown.
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,70 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
<applicationRequestMinimum>
<defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
</applicationRequestMinimum>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->
<!--
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
</windowsSettings>
</application>
-->
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!--
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
-->
</assembly>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.0.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_0_0_0\VmwareLauncher.exe.manifest" size="8815">
<assemblyIdentity name="VmwareLauncher.exe" version="1.0.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>a29uzcmPaIuUF+nRmjXZS3lYM1r8K/vradSn5HrlgAA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="0912c85d746f870797a2f44a6916f6d86736a095" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>yUkrERFACngH69jsjAG0YzkB1KQKeRMKfV/q9iZueAw=</DigestValue></Reference></SignedInfo><SignatureValue>IuEf1e/Ff954IzPrjqi09sfdYsZhuEQGHri78aoU+93ZrbRyK2iC2xtSTHtTgnHq4zqkuGVZun/DD5ooMgYMN0feH7lSEJG9qKW4P7Ug0kPt1RNR0A49GOxrcJFDApmEijCFaxbbq/DFA3gM/he11JX0q5ZvMBi7cAYCfaJ3tuc=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="0c786e26f6ea5f7d0a13790aa4d4013963b4018cecd8eb07780a4011112b49c9" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.0.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Z279Z/NuzA76PHBD4wM6isJ4tIwOdT2QxML5g4IcSD0=</DigestValue></Reference></SignedInfo><SignatureValue>ihaREsWKLXLMYUtZzYP2AX+LAvI0gD37VQW0LnDU9AUJkZS42SmktTmbmVwKjLhYJNI4lIBGyFcEegv01UsQ4FSaOgbDFgznQaznEuKWnJ66jCjY/wNhObvY0rUgIaMatZSqYnLIOzqvqCZi0JDnVbKWKOqpxtHhbeXxTbwuVdA=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQdOqNMeDvIapDvO4za0TL3TANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MTgxNzMxMTRaFw0xNTA0MTgyMzMxMTRaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjvdiNoxVsFq3FeWyEhDJ/zEtVMTawDVwyVxF7WhYKsUR/KBmHaLzHW+IeTUwnl2dioXrcwshLIRSMJdJyzkxr4Oz4RQ+dphg32df130pqeHFvrmMSWPYFX9rWV52Fs/BVFzmGuO21/uSewGG+i5ydOQs0FOVRPf99i7hcOGqs9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAGam0ULakMLieQzDcEZn3mB58lSTm9yhAmMBJ+4vw7pfElk633JI3CgequQR/imRU0KKtdsSvstUU3AFLQnDZiL3N3BQeQ0PIwkyTkxrJKcVaaxIWjs9AVYb57dnhjP3B/KuC/+e94nbrv6kCH/5TUNiTbRuMljA2cKLtiRMzhPI</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.0.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="VMwareWorkstationLogo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="307200">
<assemblyIdentity name="VmwareLauncher" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Bwdn6BtLTkW5FYNyscfKIZQ6aNEy5BLeN2pHEyFCyNk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareWorkstationLogo.ico" size="270398">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JyXVuwNf5QFA6p9iDUNGJBYf4+njTXrsxS+j108TVCA=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="0912c85d746f870797a2f44a6916f6d86736a095" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>qb0KhHi2lNfCCyahGAUk6mQVsEfny671J2bYo0n6CU0=</DigestValue></Reference></SignedInfo><SignatureValue>YURg7EVM0rMDR1Wa6SJZg/x7jmyswxKNmr6DaaXWlpY1USI3qcNfbAkcpmWjiqOYvlnOsbjWZIUCauKW8ZnV/mOJBR9CgfSjN236qKTJ4HVtGhwpm+uKob8zHJV9Lh2KnsakrmBSCKznfPPWR6GzlyLlYL3F6Qtw8yUrXgZBMLI=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="4d09fa49a3d86627f5aecbe747b01564ea240518a1260bc2d794b678840abda9" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.0.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>5n/MqtkQccego+XG4SJ59PJmcsRhg3T1vpnbmX9NM4M=</DigestValue></Reference></SignedInfo><SignatureValue>AdirNIeksyKmeOROPZit9HSLez1L/3Z/LdMFkL7xlUSbKaKkMBQJl/f6ZkBmrwzVAFEJdwSlEWsBS0kyd3SQfTu8pkKsZVU0IKWEEjvSX9vawYznntQzQExuPTUMReMKqWE1B6/xQxo9q9nEhSu3uXbn3tPzLxD9hzYujHbRkwA=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQdOqNMeDvIapDvO4za0TL3TANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MTgxNzMxMTRaFw0xNTA0MTgyMzMxMTRaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjvdiNoxVsFq3FeWyEhDJ/zEtVMTawDVwyVxF7WhYKsUR/KBmHaLzHW+IeTUwnl2dioXrcwshLIRSMJdJyzkxr4Oz4RQ+dphg32df130pqeHFvrmMSWPYFX9rWV52Fs/BVFzmGuO21/uSewGG+i5ydOQs0FOVRPf99i7hcOGqs9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAGam0ULakMLieQzDcEZn3mB58lSTm9yhAmMBJ+4vw7pfElk633JI3CgequQR/imRU0KKtdsSvstUU3AFLQnDZiL3N3BQeQ0PIwkyTkxrJKcVaaxIWjs9AVYb57dnhjP3B/KuC/+e94nbrv6kCH/5TUNiTbRuMljA2cKLtiRMzhPI</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.1.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_1_0_0\VmwareLauncher.exe.manifest" size="8819">
<assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>AiHm73H1X1mYRqpzuV/GFDzKK6JnnecuH/A9P1pBg6E=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="0912c85d746f870797a2f44a6916f6d86736a095" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Ikj+cIitIld4Kzxr1jPYKpAIu16NSRyJBlKAv2hIv0g=</DigestValue></Reference></SignedInfo><SignatureValue>N/hM+E6ifMdI33FYSvoumUe4Lft+CAuCmroXSsYSO80EDuBIFe2yQmazENs4rSitTcKsRIrTuip1atlozhnwDlkJX/oBfAcGZcMES5bjabZCB9MsRDXsUUFgm4Y5uP9EGQRsjIQZEhqw5ZsU6/yLbtydNYmjZspQ43Gr+pJvQIQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="48bf4868bf805206891c498d5ebb08902ad833d66b3c2b785722ad8870fe4822" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.1.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>oJ+b88pqmM59FwFTUQQwaG0RApZmT3qF5+9vPkSh/BA=</DigestValue></Reference></SignedInfo><SignatureValue>HrDcBtDxLlkOEVq88It8r+p6L4KLz9naddfaG8S79ZP13+PJMJ3nwu7UyaOR6DpggUPA8sVygW/aESGEYAbL4vaN40UwV5bpkiKOY36N6Z8+inJ/PlqzI6HCGObKVO+Pi19cwzzjjQagGRY4C4c0X/j326hirW2irMzfgwHbQ9A=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQdOqNMeDvIapDvO4za0TL3TANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MTgxNzMxMTRaFw0xNTA0MTgyMzMxMTRaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjvdiNoxVsFq3FeWyEhDJ/zEtVMTawDVwyVxF7WhYKsUR/KBmHaLzHW+IeTUwnl2dioXrcwshLIRSMJdJyzkxr4Oz4RQ+dphg32df130pqeHFvrmMSWPYFX9rWV52Fs/BVFzmGuO21/uSewGG+i5ydOQs0FOVRPf99i7hcOGqs9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAGam0ULakMLieQzDcEZn3mB58lSTm9yhAmMBJ+4vw7pfElk633JI3CgequQR/imRU0KKtdsSvstUU3AFLQnDZiL3N3BQeQ0PIwkyTkxrJKcVaaxIWjs9AVYb57dnhjP3B/KuC/+e94nbrv6kCH/5TUNiTbRuMljA2cKLtiRMzhPI</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="VMwareWorkstationLogo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.1.0.0" language="neutral" processorArchitecture="amd64" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="306688">
<assemblyIdentity name="VmwareLauncher" version="1.1.0.0" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>dKfVoM/qw8z8MpZc6BZh3BCEDwiZXhs+t58MWFvt3E8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareWorkstationLogo.ico" size="270398">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JyXVuwNf5QFA6p9iDUNGJBYf4+njTXrsxS+j108TVCA=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="0912c85d746f870797a2f44a6916f6d86736a095" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>07UYLLwcuOqHbuClSTGfEP27msDqDyf9xQRUa74vUUQ=</DigestValue></Reference></SignedInfo><SignatureValue>T0wDx+qcGc9j8lWkJZbGFx9LSe6d+cHQ3G3x91fiRkn/k5SsPjAUiDSYH3Dn5QwfrHgNi3etPY4FEZpkCvZTEeMCG9O639ySm5/MUTJB4F8H43oBQq3gGX4QAlA+ikV85+MEU5sjaqFYBrYR+O3Z2bPiIpuLsCu6j0ibgmgFHTM=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="44512fbe6b5404c5fd270feac09abbfd109f3149a5e06e87eab81cbc2c18b5d3" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.0" publicKeyToken="75b86a7be70e59f8" language="neutral" processorArchitecture="amd64" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>insAw9XPj2jykqG8sEcNH6H9OTrZ+Af3g9rlH+2OyS4=</DigestValue></Reference></SignedInfo><SignatureValue>D/bnYQCtgB3ctEEk2BGbpeq2DtXXdyaHIC68yLi3703s00nTj9Hdc5TQJowXIYjHxYQ6aIGvJe52SjRoG4Oy4EMyDo84J2GbDewA8DrVeXY/6gaM7zoWNfZjMs+6d/qNflMr9C44UJ7btv6jWcs/wjqi7ebmxFHXZJaRuVLh2ys=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>o73YjaMVbBatxXlshIQyf8xLVTE2sA1cMlcRe1oWCrFEfygZh2i8x1viHk1MJ5dnYqF63MLISyEUjCXScs5Ma+Ds+EUPnaYYN9nX9d9Kanhxb65jElj2BV/a1ledhbPwVRc5hrjttf7knsBhvoucnTkLNBTlUT3/fYu4XDhqrPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQdOqNMeDvIapDvO4za0TL3TANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MTgxNzMxMTRaFw0xNTA0MTgyMzMxMTRaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjvdiNoxVsFq3FeWyEhDJ/zEtVMTawDVwyVxF7WhYKsUR/KBmHaLzHW+IeTUwnl2dioXrcwshLIRSMJdJyzkxr4Oz4RQ+dphg32df130pqeHFvrmMSWPYFX9rWV52Fs/BVFzmGuO21/uSewGG+i5ydOQs0FOVRPf99i7hcOGqs9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAGam0ULakMLieQzDcEZn3mB58lSTm9yhAmMBJ+4vw7pfElk633JI3CgequQR/imRU0KKtdsSvstUU3AFLQnDZiL3N3BQeQ0PIwkyTkxrJKcVaaxIWjs9AVYb57dnhjP3B/KuC/+e94nbrv6kCH/5TUNiTbRuMljA2cKLtiRMzhPI</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.1.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_1_0_1\VmwareLauncher.exe.manifest" size="8887">
<assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>2rLF55muHBLwPaXbw7nXNmyKiO/yO2Qjjn5zC2GyOZg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>wkVD+hL/S44nHrAAPYkAnAhViIsJ1XwoNCjLKLSnh6Q=</DigestValue></Reference></SignedInfo><SignatureValue>VjiEi7uS1Pw7GEcUesXrV1Lhidcn341vfCRDECa5pEdpq0opwjsygqDChjfwOKunz1/xbI9BVOuzopFH29lw9jq78sJHPbjWvxnIQS2DS1KT5Sh505EyEhJsxZm8y/wNLlvIWOzslnOUGrNBuL6IjUVUVjZwOghlu0Mffvw+70c=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="a487a7b428cb2834287cd5098b8855089c00893d00b01e278e4bff12fa4345c2" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.1.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>mpJf18+nY6B+WJUZjazPvKj2ojcVxoxoIv3uAmCoXBE=</DigestValue></Reference></SignedInfo><SignatureValue>iydRLqMOggxogjHy15PeHDzT8qMu44syp/eVrQ1ErAaNoyHfWJ4BjFzipvyezJ+C0Yr5ODSQoij9ERYQrUp8oGgq3Zcx5Wu6Ucm8dHSmUSw3dFVMwEMhII9++Q8UJHc3e8KNmbsXOw8iyrR7EmGz8WyfQc4+dghRjczZjUcDZTY=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="VMwareWorkstationLogo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.1.0.0" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="307200">
<assemblyIdentity name="VmwareLauncher" version="1.1.0.0" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>vAJIaK350bBOak5d9AQBp4CmQQYTctrArFQ9m2irsgE=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareWorkstationLogo.ico" size="270398">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JyXVuwNf5QFA6p9iDUNGJBYf4+njTXrsxS+j108TVCA=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>6FK4IQfezNkBGSgT2Y2Hzba8UdriN/OvQpquj1NgyJU=</DigestValue></Reference></SignedInfo><SignatureValue>TEazZCAax1ffbaz56eBHVguo96UE6Exj0bviwfTYgvSO5FrvPvIi5bkemTFcpxvadMQ7h/UwFX+4XTe3Hv/WsNfLG/Cymj4E5uiZSYBMB3caYCPiHJ0z8CSxgvgcnPH4pbW2yDq9VzKpm9nQ9C0b56Ibgz7L3TnbsizNN0HA70U=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="95c860538fae9a42aff337e2da51bcb6cd878dd913281901d9ccde0721b852e8" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.1.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>2EnkOouSw59Bf3nefU2ARHivCjWYkRZqWxo2fIYLXQ0=</DigestValue></Reference></SignedInfo><SignatureValue>axjBAZeyy1xntOPcOujaWxIX273cX91/9lQ/KCRb9gZCb9lzbXOQU6r/YaLaVihDqhSRUlt24LVAeCI2Gub4GFr5bZniNcXb2BZji4xQUWe6Tx4tM9FIMT9l15H7nlnIZAIsvm6LJQYGB5YVRzLEtrf9IbrBdD8a1Y7Tb0cZzkg=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,11 +0,0 @@
Initial Setup:
- Run Setup.bat after having installed VMware Workstation to set the services startup type to manual.
Usage:
- Run VMwareLauncher.exe in place of running VMware normally to start and stop the services as needed.
Compatibility:
-Tested on VMware Workstation 10, 11.
@@ -1,22 +0,0 @@
@echo off
echo Setting service startup type to manual...
sc config "VMnetDHCP" start= demand
sc config "VMware NAT Service" start= demand
sc config "VMwareHostd" start= demand
sc config "VMAuthdService" start= demand
sc config "VMUSBArbService" start= demand
echo Stopping all VMware services...
sc stop "VMnetDHCP"
sc stop "VMware NAT Service"
sc stop "VMwareHostd"
sc stop "VMAuthdService"
sc stop "VMUSBArbService"
reg add "HKEY_LOCAL_MACHINE\Software\VMwareLauncher" /v "Installed"
cls
echo Setup complete!
pause
Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.2.0.0" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_2_0_0\VmwareLauncher.exe.manifest" size="9279">
<assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.0" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>5jGWY0e4wUbwsILFKrR1lcmYyRtrcojFv1nyomyhjYM=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>4xjdE0JOB5xF52igHij/Z9l4wR5YU2zfM7z1XtlDEHE=</DigestValue></Reference></SignedInfo><SignatureValue>P+TUV0w63xYPjjdVbT32+e7FxVTv8ou6rCNJPESqzV/zsCOo3wDyTf5LlgygmUxesd5UAI4gmAPE5xzwqDAypCEsl79o3t272lB+X4K8/Jkm20tXe7bx3OyZkcb8v8oTNTc8w8goJHhmZtxJ1I9zf4F2TtZhRRtnZRI4FENb3Pk=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="711043d95ef5bc33df6c53581ec178d967ff281ea068e7459c074e4213dd18e3" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.2.0.0" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>WFTCbwvsXRLj3N6e1PvKhgCT+f1WI3BzaF3x7um97RM=</DigestValue></Reference></SignedInfo><SignatureValue>WD+kJZtwM5imjE2YI2tnJxaBJq52heLI+F92u6MiecXLoesEyy/ecIAYrLQYIuHdZ7W04quIfx6IutrGa8TVfJCUUaUd/7GrPEj933RbIVa2NrbPCeUg6h2TZQgHfGmcz8fcThj72OsWgYi5jrLNoF/dw3ML2ZPO52fINgBwaJc=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,96 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.0" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="VMwareLauncher.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.2.0.0" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="1297408">
<assemblyIdentity name="VmwareLauncher" version="1.2.0.0" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>knarZ8YpHvvrVl5rvLZKmLk1MQUD+BV67qFuT4QNuw8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareLauncher.ico" size="370070">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>vxBqttinrSj2SiyKXCWza86ubUz0iiDc4XMNZZbWKfE=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareWorkstationLogo.ico" size="270398">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JyXVuwNf5QFA6p9iDUNGJBYf4+njTXrsxS+j108TVCA=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>lxtBjJi64gtXmOFJbcVJE4+ppyW7oXu0Q56v20LgPIM=</DigestValue></Reference></SignedInfo><SignatureValue>UCb8MJkhRgpy8nXWKulKPrJTQvdZw1q0VC8KRIq61TZjNpWNmKQaidkMUHeRId/B//g1Q15v295PpSWDMww/bjbKzTqiHtggLecMYUlZOULAf/PvdNYAbeVVcrsBa5H0r6xAq95Db3E7VoPxbnbsWfegupj6o3rlujZ7ZBvnJEo=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="833ce042dbaf9e43b47ba1bb25a7a98f1349c56d49e198570be2ba988c411b97" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.0" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>1BVuUF2xZfCXT+k2NigvlhULDqRKagkcQ3PDpd8XorM=</DigestValue></Reference></SignedInfo><SignatureValue>dkP/KI+iU4ggfSqiCfsda4VbESDZp2FtthhWfhiRMfCduBQhvx50TobvckWljdcNqMGMBKwTQEUjKpoc9g0jiE1OwpT7wSXRBWExLLP7JgRd1/Svo+VIiO1Msv0YRXPljLUGi61XJknFwG4ZN1V9gI+2/6dOwG39k2CPmFOf5WE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,17 +0,0 @@
Initial Setup:
- Run Setup.bat after having installed VMware Workstation to set the services startup type to manual.
Usage:
- Run VMwareLauncher.exe in place of running VMware normally to start and stop the services as needed.
Removal:
- Run Uninstall.bat, ensuring both VMware Workstation and VMwareLauncher.exe are not running first.
Compatibility:
- Tested on VMware Workstation 10, 11.
- Windows 7, Windows 8.1.
- Not compatible with 32-bit operating systems.
@@ -1,22 +0,0 @@
@echo off
echo Setting service startup type to manual...
sc config "VMnetDHCP" start= demand
sc config "VMware NAT Service" start= demand
sc config "VMwareHostd" start= demand
sc config "VMAuthdService" start= demand
sc config "VMUSBArbService" start= demand
echo Stopping all VMware services...
sc stop "VMnetDHCP"
sc stop "VMware NAT Service"
sc stop "VMwareHostd"
sc stop "VMAuthdService"
sc stop "VMUSBArbService"
reg add "HKEY_LOCAL_MACHINE\Software\VMwareLauncher" /v "Installed"
cls
echo Setup complete!
pause
@@ -1,22 +0,0 @@
@echo off
echo Setting service startup type to automatic...
sc config "VMnetDHCP" start= auto
sc config "VMware NAT Service" start= auto
sc config "VMwareHostd" start= auto
sc config "VMAuthdService" start= auto
sc config "VMUSBArbService" start= auto
echo Starting all VMware services...
sc start "VMnetDHCP"
sc start "VMware NAT Service"
sc start "VMwareHostd"
sc start "VMAuthdService"
sc start "VMUSBArbService"
reg delete "HKEY_LOCAL_MACHINE\Software\VMwareLauncher" /v "Installed" /f
cls
echo Uninstall complete!
pause
Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.2.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_2_0_1\VmwareLauncher.exe.manifest" size="9279">
<assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>kgJD7uMUPA922/5Q+zjiLhT0E0tRyw0ElvJq9SrLoY8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>5CvjqNCK7Dhu9rcXp4PAQTJcySSUZ5p8K1bvrpcaIVc=</DigestValue></Reference></SignedInfo><SignatureValue>ey7ouvrb57/R/9fe3qWIm9uTNQF+6uOJcswqib/F7qlAyUrSJd4ec3GCWS+u177Sg1QruqHSh+LTd4T2nr9g83/a8r9OokPH89v5qFpDmniQZPQh3mA4lJ2HkwBRaYa7GVp+gJJw9ns7PtVYEAJfbS6ZPGVEcl2+d9EryrzV7nM=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="57211a97aeef562b7c9a679424c95c3241c083a717b7f66e38ec8ad0a8e32be4" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.2.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>g9ZEmKob7KZSDWhQWH2akXsDOw/0DM10JoRGD+AZDb0=</DigestValue></Reference></SignedInfo><SignatureValue>FZOL4T1U7UsFVfeOOrjhM5GDzDZOYvJ2i4n2oiP40I1IzSkEkPgxroqN0KFRTteVh8WnePpVxe8ERvzGW1n8611O/msWapb9n/wcx+CrzqqRylhQ89hxswFcMLeJKVAckg/vqcNS5getwJDAG2dZ2XJWdnzfWn5NWmMgZ+6W3tk=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,96 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="VMwareLauncher.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.2.0.1" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="1297408">
<assemblyIdentity name="VmwareLauncher" version="1.2.0.1" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>ep3r0A/OLWPmKe+9X1OGunyg5W5AFBpLprUmZf8WiLs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareLauncher.ico" size="370070">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>vxBqttinrSj2SiyKXCWza86ubUz0iiDc4XMNZZbWKfE=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareWorkstationLogo.ico" size="270398">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JyXVuwNf5QFA6p9iDUNGJBYf4+njTXrsxS+j108TVCA=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>JhMIeSpDAv3NM2I7sn7O1zuX/JBIKW/BW62GYVL42iM=</DigestValue></Reference></SignedInfo><SignatureValue>NEMSlURGcTL+xz54wFAee7dXCKQedWONx8pu9H48Ed7PXdDohS3i4peaWxacfLO4aodvgni1t/dHcS15f8fMiaXtykrhiT6Y4NpsutJMStduo7Neq8BEgA6j3awokbRmmt45hD7b3jwpA40W8M2doz5ooS5r4tky2TRew51Rco4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="23daf8526186ad5bc16f294890fc973bd7ce7eb23b6233cdfd02432a79081326" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.1" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>YRF3QzARVfQxUhHYDca5NyG5+N3vYrlN2pDgMCnOXb8=</DigestValue></Reference></SignedInfo><SignatureValue>IojNU7+upwqImiF+EJs/dNOoFGPYJozB6YL0VY+Uzgo10mQXdHky3taQxcyNrEev9sw/hPHTnT8+gZ/XJOb6AvVitfAo74aewFTd/Twu79uW3TDGpPYvCsxxTZWz1hhWuh0vM81fUn8a9FHOBtb+jAucVag9SF47wVV632spBmM=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 KiB

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_2_0_2\VmwareLauncher.exe.manifest" size="8874">
<assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>sHhxKsySS+xl0Eh+3H+ly5nwv38PNckZNTh9DgrP8Go=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>JUPcHplU4d6F6fRPvhBzRy1jtBrOXJOf9yCoJQjQcOw=</DigestValue></Reference></SignedInfo><SignatureValue>jPBWEVkfQSlPxk+qqYD9eMBX+i//3BSmNevAiG6nKaorEDkJedvOn3JevPjbfiLO9KODyteSR3kKvGt2AjEiQTFI78IDJOWjcJEU+aKhHa+Xb4/Lfvdbl7cDHR5rxbcwAEUornN4mwzuhBHInKMi30SXxG7/kkOXJbUOqm8YMT4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="ec70d00825a820f79f935cce1ab4632d477310be4ff4e985dee154991edc4325" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>wK5PriupqZnZoJ9PVwWetANTHFgS+UAz1Kmgctb1hkM=</DigestValue></Reference></SignedInfo><SignatureValue>HKXDjPCJqWE8rSn5UxQ34YUcgW4RhtiR446aqUlPEuaH5BDgQdcK0zctOX1+28zSr8oyNSMhJEhN5QyJDtEAy02GVqKpUdnBDfQ1H5aDc0KH4ceaPpdsvK6Q2a05U5QcKUKsP4AQPPTM5gIR1T/y81Soe75fkkHms8MSgFMmO48=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
@@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="VMwareLauncher.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="VmwareLauncher" version="1.2.0.2" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<commandLine file="VmwareLauncher.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet version="1" class="System.Security.NamedPermissionSet" Name="LocalIntranet" Description="Default rights given to applications on the local intranet" Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
Specifying requestedExecutionLevel node will disable file and registry virtualization.
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="VmwareLauncher.exe" size="1297920">
<assemblyIdentity name="VmwareLauncher" version="1.2.0.2" publicKeyToken="73D12BA6174FF987" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Gb58Xzxd8Nqz24dEuWlR+bBADhPJHKAm2kVHvhrgcOQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="VmwareLauncher.exe.config" size="187">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
</hash>
</file>
<file name="VMwareLauncher.ico" size="370070">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>vxBqttinrSj2SiyKXCWza86ubUz0iiDc4XMNZZbWKfE=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of all Windows versions that this application is designed to work with.
Windows will automatically select the most compatible environment.-->
<!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
<!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
<!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
<!-- If your application is designed to work with Windows 8.1, uncomment the following supportedOS node-->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>-->
</application>
</compatibility>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>t1py9emxFUwrPRbUS85idUJ+w3QmRinUgoxcVS2EgqQ=</DigestValue></Reference></SignedInfo><SignatureValue>chYQZ9x7WiYJMwnq+uloRBnDgpBZxkylIBuDf93wQqiZ8j/iY/lsbmc4WD/5Ijz9sORbzixYjsIe+7SC6napN2mEZxtWc9CeJsr1fvD1+Dx/cKfPaCA2TLmzU0Hfd/Vl5hfUB8sEaOp1wGZc/jkIjN22Ti0NBNr4dDvgR8SZK0E=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="a482842d555c8c82d429462674c37e427562ce4bd4163d2b4c15b1e9f5725ab7" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>UfZbLQ5VjWCLaWJNYkH+zk/yrx60xP0RADBI07dd+rs=</DigestValue></Reference></SignedInfo><SignatureValue>WuWkwvaMQvEjYDpw2TdpracUzoU+h+aX0TmdWnAqhbg6mryNI4LiQTUALIDFr9Mmcbv0dck9fUL5oRt/uAjDj0eVoCK1zPpTliLxyxLG0OcdpFiPgETfuzuFg0fGksKSqbE6uS9atC6yyTLZS/jV3ronwU+cYXI9BSui6Mx0NrE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="VmwareLauncher.application" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="VmwareLauncher" asmv2:product="VmwareLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\VmwareLauncher_1_2_0_2\VmwareLauncher.exe.manifest" size="8874">
<assemblyIdentity name="VmwareLauncher.exe" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>sHhxKsySS+xl0Eh+3H+ly5nwv38PNckZNTh9DgrP8Go=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=GENESIS\Cerberus" issuerKeyHash="4467cf7e7cdb4affacd5d8a8bee520a5cc8e1ea3" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>JUPcHplU4d6F6fRPvhBzRy1jtBrOXJOf9yCoJQjQcOw=</DigestValue></Reference></SignedInfo><SignatureValue>jPBWEVkfQSlPxk+qqYD9eMBX+i//3BSmNevAiG6nKaorEDkJedvOn3JevPjbfiLO9KODyteSR3kKvGt2AjEiQTFI78IDJOWjcJEU+aKhHa+Xb4/Lfvdbl7cDHR5rxbcwAEUornN4mwzuhBHInKMi30SXxG7/kkOXJbUOqm8YMT4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="ec70d00825a820f79f935cce1ab4632d477310be4ff4e985dee154991edc4325" Description="" Url=""><as:assemblyIdentity name="VmwareLauncher.application" version="1.2.0.2" publicKeyToken="73d12ba6174ff987" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=GENESIS\Cerberus</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>wK5PriupqZnZoJ9PVwWetANTHFgS+UAz1Kmgctb1hkM=</DigestValue></Reference></SignedInfo><SignatureValue>HKXDjPCJqWE8rSn5UxQ34YUcgW4RhtiR446aqUlPEuaH5BDgQdcK0zctOX1+28zSr8oyNSMhJEhN5QyJDtEAy02GVqKpUdnBDfQ1H5aDc0KH4ceaPpdsvK6Q2a05U5QcKUKsP4AQPPTM5gIR1T/y81Soe75fkkHms8MSgFMmO48=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>kIWTyOpavIsAqmHQ1LzfkFwXFGk9TMvI0bhWREKcqcj/p0q/q4oZhCazy+HbVB1EngHvTZZG1FlhuZh0Pd1ipuuEvwJSFKvHuJ//yrPg1HVO7rQqalLv4p4TX+12HNzvnaCQrIro6lIJ+3R8X+X8zze3b5mSYS2CcywiYxtSvL8=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQS8s73aRKqaJGE0XGdxkt8zANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARwBFAE4ARQBTAEkAUwBcAEMAZQByAGIAZQByAHUAczAeFw0xNDA0MjcxNzA2MzNaFw0xNTA0MjcyMzA2MzNaMCsxKTAnBgNVBAMeIABHAEUATgBFAFMASQBTAFwAQwBlAHIAYgBlAHIAdQBzMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQhZPI6lq8iwCqYdDUvN+QXBcUaT1My8jRuFZEQpypyP+nSr+rihmEJrPL4dtUHUSeAe9NlkbUWWG5mHQ93WKm64S/AlIUq8e4n//Ks+DUdU7utCpqUu/inhNf7XYc3O+doJCsiujqUgn7dHxf5fzPN7dvmZJhLYJzLCJjG1K8vwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAB3lfu5SnMwPn3s74AZ0V6r7Sjg9q5j6dUjwaHRsNIrTgL5HWhaEXfCO8nXt26wJHQin+kdgUHOzofLdTg/egBLvHeXA04HkzPm/EIvwU8yuvbozJPtcWKnL/HO5HsIyaj+64h0SgAs447xKWuA+SQ2lNWlatJ+kxSKzjjx3M1Zt</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Binary file not shown.