From 2056ec61fe2b24057378c73d2c5be0d6f76312ac Mon Sep 17 00:00:00 2001 From: LizRoss Date: Tue, 14 Feb 2017 12:50:12 -0800 Subject: [PATCH] Fixing code style --- ...release-notes-for-appv-for-windows-1703.md | 119 +++++++++--------- 1 file changed, 59 insertions(+), 60 deletions(-) diff --git a/windows/manage/appv-release-notes-for-appv-for-windows-1703.md b/windows/manage/appv-release-notes-for-appv-for-windows-1703.md index eeb42371c9..1da797cb73 100644 --- a/windows/manage/appv-release-notes-for-appv-for-windows-1703.md +++ b/windows/manage/appv-release-notes-for-appv-for-windows-1703.md @@ -16,7 +16,6 @@ ms.prod: w10 The following are known issues and workarounds for Application Virtualization (App-V) running on Windows 10, version 1703. - @@ -38,65 +37,65 @@ The following are known issues and workarounds for Application Virtualization (A
Problem
Filetype and protocol handlers aren't registering properly with the Google Chrome browser, causing you to not see App-V packages as an option for default apps from the Settings > Apps> Default Apps area. The recommended workaround is to add the following code to the AppXManifest.xml file, underneath the <appv:Extensions> tag: -

-                <appv:Extension Category="AppV.URLProtocol">
-                    <appv:URLProtocol>
-                        <appv:Name>ftp</appv:Name>
-                        <appv:ApplicationURLProtocol>
-                            <appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
-                            <appv:ShellCommands>
-                                <appv:DefaultCommand>open</appv:DefaultCommand>
-                                <appv:ShellCommand>
-                                    <appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
-                                    <appv:Name>open</appv:Name>
-                                    <appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
-                                    <appv:DdeExec>
-                                        <appv:DdeCommand />
-                                    </appv:DdeExec>
-                                </appv:ShellCommand>
-                            </appv:ShellCommands>
-                        </appv:ApplicationURLProtocol>
-                    </appv:URLProtocol>
-                </appv:Extension>
-                <appv:Extension Category="AppV.URLProtocol">
-                    <appv:URLProtocol>
-                        <appv:Name>http</appv:Name>
-                        <appv:ApplicationURLProtocol>
-                            <appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
-                            <appv:ShellCommands>
-                                <appv:DefaultCommand>open</appv:DefaultCommand>
-                                <appv:ShellCommand>
-                                    <appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
-                                    <appv:Name>open</appv:Name>
-                                    <appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
-                                    <appv:DdeExec>
-                                        <appv:DdeCommand />
-                                    </appv:DdeExec>
-                                </appv:ShellCommand>
-                            </appv:ShellCommands>
-                        </appv:ApplicationURLProtocol>
-                    </appv:URLProtocol>
-                </appv:Extension>
-                <appv:Extension Category="AppV.URLProtocol">
-                    <appv:URLProtocol>
-                        <appv:Name>https</appv:Name>
-                        <appv:ApplicationURLProtocol>
-                            <appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
-                            <appv:ShellCommands>
-                                <appv:DefaultCommand>open</appv:DefaultCommand>
-                                <appv:ShellCommand>
-                                    <appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
-                                    <appv:Name>open</appv:Name>
-                                    <appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
-                                    <appv:DdeExec>
-                                        <appv:DdeCommand />
-                                    </appv:DdeExec>
-                                </appv:ShellCommand>
-                            </appv:ShellCommands>
-                        </appv:ApplicationURLProtocol>
-                    </appv:URLProtocol>
-                    </appv:Extension>
-                
+

+<appv:Extension Category="AppV.URLProtocol">
+	<appv:URLProtocol>
+		<appv:Name>ftp</appv:Name>
+		<appv:ApplicationURLProtocol>
+			<appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
+			<appv:ShellCommands>
+				<appv:DefaultCommand>open</appv:DefaultCommand>
+				<appv:ShellCommand>
+					<appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
+					<appv:Name>open</appv:Name>
+					<appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
+					<appv:DdeExec>
+						<appv:DdeCommand />
+					</appv:DdeExec>
+				</appv:ShellCommand>
+			</appv:ShellCommands>
+		</appv:ApplicationURLProtocol>
+	</appv:URLProtocol>
+</appv:Extension>
+<appv:Extension Category="AppV.URLProtocol">
+	<appv:URLProtocol>
+		<appv:Name>http</appv:Name>
+		<appv:ApplicationURLProtocol>
+			<appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
+			<appv:ShellCommands>
+				<appv:DefaultCommand>open</appv:DefaultCommand>
+				<appv:ShellCommand>
+					<appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
+					<appv:Name>open</appv:Name>
+					<appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
+					<appv:DdeExec>
+						<appv:DdeCommand />
+					</appv:DdeExec>
+				</appv:ShellCommand>
+			</appv:ShellCommands>
+		</appv:ApplicationURLProtocol>
+	</appv:URLProtocol>
+</appv:Extension>
+<appv:Extension Category="AppV.URLProtocol">
+	<appv:URLProtocol>
+		<appv:Name>https</appv:Name>
+		<appv:ApplicationURLProtocol>
+			<appv:DefaultIcon>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe,0</appv:DefaultIcon>
+			<appv:ShellCommands>
+				<appv:DefaultCommand>open</appv:DefaultCommand>
+				<appv:ShellCommand>
+					<appv:ApplicationId>[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe</appv:ApplicationId>
+					<appv:Name>open</appv:Name>
+					<appv:CommandLine>"[{ProgramFilesX86}]\Google\Chrome\Application\chrome.exe" -- "%1"</appv:CommandLine>
+					<appv:DdeExec>
+						<appv:DdeCommand />
+					</appv:DdeExec>
+				</appv:ShellCommand>
+			</appv:ShellCommands>
+		</appv:ApplicationURLProtocol>
+	</appv:URLProtocol>
+</appv:Extension>
+