mirror of
https://github.com/BrianLima/UWPHook.git
synced 2024-11-12 01:10:26 +00:00
Added function to get installed apppackages
This commit is contained in:
parent
df419ff31a
commit
d06ef301be
@ -1,7 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
@ -39,6 +41,25 @@ public Boolean IsRunning()
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public List<String> GetInstalledApps()
|
||||
{
|
||||
List<String> result = null;
|
||||
var assembly = Assembly.GetExecutingAssembly();
|
||||
var resourceName = "UWPHook.Resources.GetAUMIDScript.txt";
|
||||
|
||||
using (Stream stream = assembly.GetManifestResourceStream(resourceName))
|
||||
{
|
||||
using (StreamReader reader = new StreamReader(stream))
|
||||
{
|
||||
ScriptManager script = new ScriptManager();
|
||||
var r = script.RunScript(reader.ReadToEnd()).Split(';').ToList<string>();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
public enum ActivateOptions
|
||||
|
@ -79,6 +79,7 @@ private void addButton_Click(object sender, RoutedEventArgs e)
|
||||
|
||||
private void helpButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
manager.InstalledApps();
|
||||
Process.Start("https://www.reddit.com/r/UWPHook/comments/53eaj9/welcome_to_uwphook_link_your_uwp_games_to_steam/");
|
||||
}
|
||||
|
||||
|
26
UWPHook/Properties/Resources.Designer.cs
generated
26
UWPHook/Properties/Resources.Designer.cs
generated
@ -22,7 +22,7 @@ namespace UWPHook.Properties {
|
||||
[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 {
|
||||
public class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
@ -36,7 +36,7 @@ internal Resources() {
|
||||
/// 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 {
|
||||
public static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UWPHook.Properties.Resources", typeof(Resources).Assembly);
|
||||
@ -51,7 +51,7 @@ internal Resources() {
|
||||
/// 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 {
|
||||
public static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
@ -59,5 +59,25 @@ internal Resources() {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to $installedapps = get-AppxPackage
|
||||
///
|
||||
///$aumidList = @()
|
||||
///foreach ($app in $installedapps)
|
||||
///{
|
||||
/// foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
|
||||
/// {
|
||||
/// $aumidList += $app.packagefamilyname + "!" + $id
|
||||
/// }
|
||||
///}
|
||||
///
|
||||
///$aumidList.
|
||||
/// </summary>
|
||||
public static string GetAUMIDScript {
|
||||
get {
|
||||
return ResourceManager.GetString("GetAUMIDScript", resourceCulture);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -118,4 +118,7 @@
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="GetAUMIDScript" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\GetAUMIDScript.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
</root>
|
12
UWPHook/Resources/GetAUMIDScript.txt
Normal file
12
UWPHook/Resources/GetAUMIDScript.txt
Normal file
@ -0,0 +1,12 @@
|
||||
$installedapps = get-AppxPackage
|
||||
|
||||
$aumidList = @()
|
||||
foreach ($app in $installedapps)
|
||||
{
|
||||
foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
|
||||
{
|
||||
$aumidList += $app.packagefamilyname + "!" + $id + ";"
|
||||
}
|
||||
}
|
||||
|
||||
$aumidList
|
55
UWPHook/ScriptManager.cs
Normal file
55
UWPHook/ScriptManager.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Management.Automation;
|
||||
using System.Management.Automation.Runspaces;
|
||||
using System.Text;
|
||||
|
||||
namespace UWPHook
|
||||
{
|
||||
class ScriptManager
|
||||
{
|
||||
public string RunScript(string scriptText)
|
||||
{
|
||||
// create Powershell runspace
|
||||
|
||||
Runspace runspace = RunspaceFactory.CreateRunspace();
|
||||
|
||||
// open it
|
||||
|
||||
runspace.Open();
|
||||
|
||||
// create a pipeline and feed it the script text
|
||||
|
||||
Pipeline pipeline = runspace.CreatePipeline();
|
||||
pipeline.Commands.AddScript(scriptText);
|
||||
|
||||
// add an extra command to transform the script
|
||||
// output objects into nicely formatted strings
|
||||
|
||||
// remove this line to get the actual objects
|
||||
// that the script returns. For example, the script
|
||||
|
||||
// "Get-Process" returns a collection
|
||||
// of System.Diagnostics.Process instances.
|
||||
|
||||
pipeline.Commands.Add("Out-String");
|
||||
|
||||
// execute the script
|
||||
|
||||
Collection<PSObject> results = pipeline.Invoke();
|
||||
|
||||
// close the runspace
|
||||
|
||||
runspace.Close();
|
||||
|
||||
// convert the script result into a single string
|
||||
|
||||
StringBuilder stringBuilder = new StringBuilder();
|
||||
foreach (PSObject obj in results)
|
||||
{
|
||||
stringBuilder.AppendLine(obj.ToString());
|
||||
}
|
||||
|
||||
return stringBuilder.ToString();
|
||||
}
|
||||
}
|
||||
}
|
@ -63,6 +63,10 @@
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Management.Automation.6.1.7601.17515\lib\net45\System.Management.Automation.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Core" />
|
||||
@ -81,6 +85,7 @@
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Compile Include="ScriptManager.cs" />
|
||||
<Page Include="MainWindow.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
@ -111,7 +116,7 @@
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
@ -146,6 +151,9 @@
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Resources\GetAUMIDScript.txt" />
|
||||
</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.
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
|
||||
<package id="System.Management.Automation" version="6.1.7601.17515" targetFramework="net461" />
|
||||
</packages>
|
Loading…
Reference in New Issue
Block a user