Skip to content

Instantly share code, notes, and snippets.

View mjfusa's full-sized avatar

Mike Francis mjfusa

  • Microsoft
  • Issaquah, WA
View GitHub Profile
@mjfusa
mjfusa / .\ppt2pdf.ps1
Created February 11, 2022 20:57
PowerShell: PPT to PDF - Recurse
<#
.Synopsis
ConverToPDF converts PowerPoint files to pdf and saves the output into the \pdf current folder.
.DESCRIPTION
ConverToPDF converts PowerPoint files to pdf and saves the output into the \pdf current folder.
.NOTES
Created by: Paul Lim paullim@ncs.com.sg
Modified: 18/03/2019
Changelog:
* First version

Question: How can we install our UWP app with the required dependencies without an internet connection?

Answer: Per the question, if you are connected to the internet, the app dependencies as defined in manifest will be downloaded and installed from the Store. Typically, the dependencies list in the manifest looks like this: To install the dependencies without a connection to the internet, you must create the packages for sideloading. (In Visual Studio, Publish, Create App

@mjfusa
mjfusa / MainWindow.xaml.cs
Last active November 21, 2021 06:37
Project Reunion 0.5 WinUI Desktop - Store IAP and Window Initialization
using Microsoft.UI.Xaml;
using System;
using System.Runtime.InteropServices;
using Windows.Services.Store;
using WinRT;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace App12Reunion
@mjfusa
mjfusa / ProtocolFileExtensionAliasManifest.xml
Created November 11, 2021 19:39
Example of Protocol, File Extension, Alias, definition in AppxManifest.xml
<Extensions>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="wpfmsix">
<uap:SupportedFileTypes>
<uap:FileType>.zip</uap:FileType>
</uap:SupportedFileTypes>
<uap:DisplayName>WPF MSIX Detect</uap:DisplayName>
<uap:Logo>logoImage.png</uap:Logo>
<uap:InfoTip>Detect MSIX Container</uap:InfoTip>
</uap:FileTypeAssociation>
@mjfusa
mjfusa / .\createvm.ps1
Created July 9, 2021 16:48
Create VM with iso OS
Param(
[Parameter(Mandatory=$true)]
$VMName,
[Parameter(Mandatory=$true)]
$Memory,
[Parameter(Mandatory=$true)]
$NewVHD,
[Parameter(Mandatory=$true)]
$VHDSize,
@mjfusa
mjfusa / appxmanifest-partial.xml
Created March 11, 2021 21:08
MSIX Manifest Entries for Windows Service
<Extensions>
<desktop6:Extension Category="windows.service" EntryPoint="Windows.FullTrustApplication" Executable="WindowsServiceSample.exe">
<desktop6:Service Name="WindowsService Sample" StartAccount="localSystem" StartupType="auto" />
</desktop6:Extension>
</Extensions>
<Capabilities>
<rescap:Capability Name="runFullTrust"/>
<rescap:Capability Name="localSystemServices"/>
<rescap:CapabiIity Name="packagedServices"/>
@mjfusa
mjfusa / Microsoft App Commerce Client and REST APIs.md
Last active November 25, 2020 19:44
Microsoft App Commerce Client and REST APIs
Microsoft
App Commerce Client and REST APIs
Client API Available REST API Available Client API Documentation REST API Documentation
Inventory
Query
All Available Products for App
Yes No Get product info for apps and add-ons - UWP
applications
NA
Query Products Owned by User (Durables,Consumables) Yes Yes
@mjfusa
mjfusa / SaveToFileEdgeHTML.htm
Last active January 29, 2020 23:50
EdgeHTML PWA Save to File
<script>
/**
In EdgeHTML / PWA downloading content by creating a download link on the fly and calling Click (traditional method) does not work.
TL;DR: See below for an implementation of the file download for EdgeHTML / PWA.
Longer explanation:
When running with the Spartan WebView as a HWA (Hosted Web App) or PWA MS Store, you’re running inside a UWP container with the associated security restriction. This has 2 implications:
• msSaveOrOpenBlob is not defined in this execution context for security reasons
• you can’t download directly a file on the file system using the a.download + a.click approach
@mjfusa
mjfusa / FindPackageForUser.cs
Created November 19, 2019 01:19
Detect if MS Store app is installed
// Companion to: https://blog.mjfnet.com/2019/11/15/How-to-detect-if-a-Microsoft-Store-app-is-Installed/
public static bool IsAppAlreadyInstalled(string FullPackageFamilyName)
{
var oPkgManager = new PackageManager();
bool result = false;
try
{
//If 1st parameter is string.Empty, the packages are retrieved for the current user.
Package oPkg = oPkgManager.FindPackageForUser(string.Empty, FullPackageFamilyName);
result = oPkg != null;
@mjfusa
mjfusa / fileSaveSpartanPWA.htm
Created October 25, 2019 22:56
File Save from (Spartan) Edge PWA
<script>
function saveBlob (blob, fileName) {
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
var url = window.URL.createObjectURL(blob);
a.href = url;
a.download = fileName;
a.click();
window.URL.revokeObjectURL(url);