mirror of
https://github.com/modernw/AppInstallerForWin8.git
synced 2026-04-11 16:57:18 +10:00
添加项目文件。
This commit is contained in:
34
PackageManagerAdd/AddPackageSample.cpp
Normal file
34
PackageManagerAdd/AddPackageSample.cpp
Normal file
@@ -0,0 +1,34 @@
|
||||
//// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
||||
//// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
||||
//// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
||||
//// PARTICULAR PURPOSE.
|
||||
////
|
||||
//// Copyright (c) Microsoft Corporation. All rights reserved
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "PackageManager.h"
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
void callback (unsigned progress)
|
||||
{
|
||||
std::cout << '\r' << progress << "%" << std::ends;
|
||||
}
|
||||
|
||||
[MTAThread]
|
||||
int __cdecl main(Platform::Array<String^>^ args)
|
||||
{
|
||||
wcout << L"Copyright (c) Microsoft Corporation. All rights reserved." << endl;
|
||||
wcout << L"Add Package" << endl << endl;
|
||||
|
||||
if (args->Length < 2)
|
||||
{
|
||||
wcout << L"Usage: addpkg.exe packageUri" << endl;
|
||||
return 1;
|
||||
}
|
||||
HANDLE completedEvent = nullptr;
|
||||
int returnValue = 0;
|
||||
String^ inputPackageUri = args[1];
|
||||
cout << endl;
|
||||
AddPackageFromPath (inputPackageUri->Data (), &callback);
|
||||
return 0;
|
||||
}
|
||||
20
PackageManagerAdd/AddPackageSample.sln
Normal file
20
PackageManagerAdd/AddPackageSample.sln
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 12
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AddPackageSample", "AddPackageSample.vcxproj", "{59131AB7-2A7D-9A09-8223-174C3F5E0F57}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{59131AB7-2A7D-9A09-8223-174C3F5E0F57}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{59131AB7-2A7D-9A09-8223-174C3F5E0F57}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{59131AB7-2A7D-9A09-8223-174C3F5E0F57}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{59131AB7-2A7D-9A09-8223-174C3F5E0F57}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
168
PackageManagerAdd/AddPackageSample.vcxproj
Normal file
168
PackageManagerAdd/AddPackageSample.vcxproj
Normal file
@@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|ARM">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<VCTargetsPath Condition="'$(VCTargetsPath11)' != '' and '$(VSVersion)' == '' and '$(VisualStudioVersion)' == ''">$(VCTargetsPath11)</VCTargetsPath>
|
||||
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<ProjectGuid>{59131AB7-2A7D-9A09-8223-174C3F5E0F57}</ProjectGuid>
|
||||
<ProjectName>PackageManager</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<ReferencePath>$(VCINSTALLDIR)\vcpackages;$(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib;$(WindowsSdkDir)\References\CommonConfiguration\Neutral</ReferencePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<ReferencePath>$(VCINSTALLDIR)\vcpackages;$(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib;$(WindowsSdkDir)\References\CommonConfiguration\Neutral</ReferencePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<ReferencePath>$(VCINSTALLDIR)\vcpackages;$(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib;$(WindowsSdkDir)\References\CommonConfiguration\Neutral</ReferencePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<ReferencePath>$(VCINSTALLDIR)\vcpackages;$(VCInstallDir)atlmfc\lib;$(VCInstallDir)lib;$(WindowsSdkDir)\References\CommonConfiguration\Neutral</ReferencePath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;PKGMGR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<CompileAsWinRT>true</CompileAsWinRT>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<AdditionalOptions>/ZW:nostdlib /FUplatform.winmd /FUwindows.winmd %(AdditionalOptions)</AdditionalOptions>
|
||||
<PrecompiledHeader>Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>NotSet</SubSystem>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;PKGMGR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<CompileAsWinRT>true</CompileAsWinRT>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<AdditionalOptions>/ZW:nostdlib /FUplatform.winmd /FUwindows.winmd %(AdditionalOptions)</AdditionalOptions>
|
||||
<PrecompiledHeader>Create</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>NotSet</SubSystem>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAsWinRT>true</CompileAsWinRT>
|
||||
<AdditionalOptions>/ZW:nostdlib /FUplatform.winmd /FUWindows.winmd %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<CompileAsWinRT>true</CompileAsWinRT>
|
||||
<AdditionalOptions>/ZW:nostdlib /FUplatform.winmd /FUWindows.winmd %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="pkgaddcode.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="README.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="PackageManager.h" />
|
||||
<ClInclude Include="stdafx.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
26
PackageManagerAdd/PackageManager.h
Normal file
26
PackageManagerAdd/PackageManager.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
#ifdef PKGMGR_EXPORTS
|
||||
#define PKGMGR_API __declspec(dllexport)
|
||||
#else
|
||||
#define PKGMGR_API __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
typedef void (*_PACKAGE_ADD_PROGRESS)(unsigned progress);
|
||||
typedef _PACKAGE_ADD_PROGRESS PACKAGE_ADD_PROGRESS;
|
||||
|
||||
enum class InstallStatus
|
||||
{
|
||||
Success,
|
||||
Error,
|
||||
Canceled
|
||||
};
|
||||
|
||||
extern "C" PKGMGR_API InstallStatus AddPackageFromPath (LPCWSTR lpswPath, PACKAGE_ADD_PROGRESS callbProgress);
|
||||
|
||||
extern "C" PKGMGR_API LPCWSTR GetLastErrorCode ();
|
||||
|
||||
extern "C" PKGMGR_API LPCWSTR GetLastErrorDetailText ();
|
||||
|
||||
extern "C" PKGMGR_API size_t GetLastErrorCodeLength ();
|
||||
|
||||
extern "C" PKGMGR_API size_t GetLastErrorDetailTextLength ();
|
||||
39
PackageManagerAdd/README.txt
Normal file
39
PackageManagerAdd/README.txt
Normal file
@@ -0,0 +1,39 @@
|
||||
Add Package Sample
|
||||
====================
|
||||
This sample demonstrates how to use IPackageManager to install a package.
|
||||
|
||||
Prerequisites
|
||||
=============
|
||||
This sample requires Windows 8.1+.
|
||||
This sample requires Visual Studio 12 Ultimate Developer Preview.
|
||||
This sample requires the Windows Runtime Software Development Kit.
|
||||
|
||||
Sample Language Implementations
|
||||
===============================
|
||||
C++
|
||||
|
||||
Files:
|
||||
======
|
||||
AddPackageSample.cpp
|
||||
|
||||
To build the sample using the command prompt:
|
||||
=============================================
|
||||
1. Open the Command Prompt window and navigate to the directory.
|
||||
2. Type msbuild AddPackageSample.sln.
|
||||
|
||||
|
||||
To build the sample using Visual Studio 12 Ultimate Developer Preview (preferred method):
|
||||
================================================
|
||||
1. Open File Explorer and navigate to the directory.
|
||||
2. Double-click the icon for the .sln (solution) file to open the file in
|
||||
Visual Studio.
|
||||
3. In the Build menu, select Build Solution. The application will be
|
||||
built in the default \Debug or \Release directory.
|
||||
|
||||
|
||||
To Run the sample:
|
||||
==================
|
||||
1. Open a command prompt.
|
||||
2. Navigate to the directory containing AddPackageSample.exe
|
||||
2. Type AddPackageSample.exe "<uri-of-package>" at the command line.
|
||||
For example, AddPackageSample.exe "file://C|/users/testuser/desktop/testpackage.appx"
|
||||
86
PackageManagerAdd/pkgaddcode.cpp
Normal file
86
PackageManagerAdd/pkgaddcode.cpp
Normal file
@@ -0,0 +1,86 @@
|
||||
#include "stdafx.h"
|
||||
#include "PackageManager.h"
|
||||
|
||||
using namespace Platform;
|
||||
using namespace Windows::Foundation;
|
||||
using namespace Windows::Management::Deployment;
|
||||
|
||||
std::wstring lastErrorCode (L"");
|
||||
std::wstring lastErrorDetailText (L"");
|
||||
|
||||
[MTAThread]
|
||||
InstallStatus AddPackageFromPath (LPCWSTR lpswPath, PACKAGE_ADD_PROGRESS callbProgress)
|
||||
{
|
||||
lastErrorCode = L"";
|
||||
lastErrorDetailText = L"";
|
||||
HANDLE completedEvent = nullptr;
|
||||
try
|
||||
{
|
||||
completedEvent = CreateEventEx (nullptr, nullptr, CREATE_EVENT_MANUAL_RESET, EVENT_ALL_ACCESS);
|
||||
if (!completedEvent) return InstallStatus::Error;
|
||||
String ^inputPackageUri = ref new String (lpswPath);
|
||||
auto packageUri = ref new Uri (inputPackageUri);
|
||||
auto packageManager = ref new PackageManager ();
|
||||
auto deploymentOperation = packageManager->AddPackageAsync (packageUri, nullptr, DeploymentOptions::None);
|
||||
deploymentOperation->Progress =
|
||||
ref new AsyncOperationProgressHandler<DeploymentResult^, DeploymentProgress> (
|
||||
[callbProgress] (IAsyncOperationWithProgress<DeploymentResult^, DeploymentProgress>^ operation, DeploymentProgress progress)
|
||||
{
|
||||
if (callbProgress)
|
||||
callbProgress (progress.percentage);
|
||||
});
|
||||
deploymentOperation->Completed =
|
||||
ref new AsyncOperationWithProgressCompletedHandler<DeploymentResult^, DeploymentProgress> (
|
||||
[&completedEvent] (IAsyncOperationWithProgress<DeploymentResult^, DeploymentProgress>^ operation, AsyncStatus)
|
||||
{
|
||||
SetEvent (completedEvent);
|
||||
});
|
||||
WaitForSingleObject (completedEvent, INFINITE);
|
||||
if (!completedEvent)
|
||||
{
|
||||
CloseHandle (completedEvent); completedEvent = nullptr;
|
||||
}
|
||||
if (deploymentOperation->Status == AsyncStatus::Error)
|
||||
{
|
||||
auto deploymentResult = deploymentOperation->GetResults ();
|
||||
lastErrorCode += deploymentOperation->ErrorCode.Value;
|
||||
lastErrorDetailText += deploymentResult->ErrorText->Data ();
|
||||
return InstallStatus::Error;
|
||||
}
|
||||
else if (deploymentOperation->Status == AsyncStatus::Canceled)
|
||||
{
|
||||
lastErrorDetailText += L"Installation Canceled";
|
||||
return InstallStatus::Canceled;
|
||||
}
|
||||
else if (deploymentOperation->Status == AsyncStatus::Completed)
|
||||
{
|
||||
return InstallStatus::Success;
|
||||
}
|
||||
}
|
||||
catch (Exception ^ex)
|
||||
{
|
||||
lastErrorDetailText += ex->ToString ()->Data ();
|
||||
return InstallStatus::Error;
|
||||
}
|
||||
if (!completedEvent)
|
||||
{
|
||||
CloseHandle (completedEvent); completedEvent = nullptr;
|
||||
}
|
||||
return InstallStatus::Canceled;
|
||||
}
|
||||
|
||||
LPCWSTR GetLastErrorCode ()
|
||||
{
|
||||
if (lastErrorCode.length () == 0) return NULL;
|
||||
else return lastErrorCode.c_str ();
|
||||
}
|
||||
|
||||
LPCWSTR GetLastErrorDetailText ()
|
||||
{
|
||||
if (lastErrorDetailText.length () == 0) return NULL;
|
||||
else return lastErrorDetailText.c_str ();
|
||||
}
|
||||
|
||||
size_t GetLastErrorCodeLength () { return lastErrorCode.length (); }
|
||||
|
||||
size_t GetLastErrorDetailTextLength () { return lastErrorDetailText.length (); }
|
||||
12
PackageManagerAdd/stdafx.h
Normal file
12
PackageManagerAdd/stdafx.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
#include <windows.h>
|
||||
#include <objbase.h>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#using <Windows.winmd>
|
||||
|
||||
using namespace Platform;
|
||||
using namespace Windows::Foundation;
|
||||
using namespace Windows::Management::Deployment;
|
||||
using namespace std;
|
||||
Reference in New Issue
Block a user