Imported 1.x Project Files
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 202 KiB |
@@ -0,0 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Express 2013 for Windows Desktop
|
||||
VisualStudioVersion = 12.0.21005.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VmwareLauncher", "VmwareLauncher\VmwareLauncher.csproj", "{40A28143-CEF4-41B4-8476-3466822AAAA5}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{40A28143-CEF4-41B4-8476-3466822AAAA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{40A28143-CEF4-41B4-8476-3466822AAAA5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{40A28143-CEF4-41B4-8476-3466822AAAA5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{40A28143-CEF4-41B4-8476-3466822AAAA5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,41 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Resources;
|
||||
|
||||
// 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")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("VMware Launcher")]
|
||||
[assembly: AssemblyCopyright("Fil Sapia © 2016")]
|
||||
[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
|
||||
// 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")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// 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")]
|
||||
@@ -0,0 +1,63 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.0
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace VmwareLauncher.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
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);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<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" />
|
||||
</root>
|
||||
@@ -0,0 +1,30 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.34011
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace VmwareLauncher.Properties
|
||||
{
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||
{
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default
|
||||
{
|
||||
get
|
||||
{
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
@@ -0,0 +1,26 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,170 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 361 KiB |
@@ -0,0 +1,163 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" 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>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>VmwareLauncher</RootNamespace>
|
||||
<AssemblyName>VMwareLauncher</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</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>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<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>
|
||||
<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.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</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>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
<DesignTime>True</DesignTime>
|
||||
</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>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="VMwareLauncher.ico" />
|
||||
</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\" />
|
||||
</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>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,70 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,70 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 264 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,87 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 264 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,87 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 264 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,87 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,11 @@
|
||||
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.
|
||||
@@ -0,0 +1,22 @@
|
||||
@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
|
||||
|
||||
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 264 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,17 @@
|
||||
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.
|
||||
@@ -0,0 +1,22 @@
|
||||
@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
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
@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
|
||||
|
||||
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 264 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 361 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
||||
@@ -0,0 +1,87 @@
|
||||
<?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>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||