How to enable Flash in Windows Server 2016

How to enable Flash in Windows Server 2016

I recently deployed and tested VMware Horizon, and its console requires Flash by default. However, Flash is not enabled by default in Windows Server 2016. In the original Windows Server 2012, we could enable Flash by installing the "Desktop Experience" feature, but this feature disappeared in Windows Server 2016.

After searching for documents, I found that Microsoft has official documents as follows: https://blogs.technet.microsoft.com/bernhard_frank/2016/11/24/add-flash-player-to-server-2016/

You can enable it through the command line by executing the following PowerShell command:

dism /online /add-package /packagepath:"C:\Windows\servicing\Packages\Adobe-Flash-For-Windows-Package~31bf3856ad364e35~amd64~~10.0.14393.0.mum" 

After execution, you can open the Flash application

Summarize

The above is the method I introduced to you to enable Flash in Windows Server 2016. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to set up multi-user remote desktop in Windows Server 2012/2016
  • Windows Server 2016 PHP runtime installation and configuration
  • Windows Server 2016 MySQL database installation and configuration detailed installation tutorial
  • Windows Server 2016 Nginx installation and configuration detailed graphic tutorial
  • Windows Server 2016 IIS10 installation and configuration detailed graphic explanation
  • Windows Server 2016 IIS10 set up HTTPS HTTP/2 and scored A+
  • Windows Server 2016 Server Configuration Guide: How to Set Up the PHP7 Operating Environment
  • Windows Server 2016 Server Configuration Guide - IIS10 Installation Method
  • Solution for Windows Server 2012 R2 or 2016 to fail to install .NET Framework 3.5.1

<<:  How to use macros in JavaScript

>>:  How to solve the problem of ERROR 2003 (HY000) when starting mysql

Recommend

CSS menu button animation

To write a drop-down menu, click the button. The ...

MySQL Tutorial: Subquery Example Detailed Explanation

Table of contents 1. What is a subquery? 2. Where...

Detailed tutorial on installing CentOS, JDK and Hadoop on VirtualBox

Table of contents 1. Prerequisites 1.1 Supported ...

In-depth analysis of MySQL query interception

Table of contents 1. Query Optimization 1. MySQL ...

I have compiled a few cool design sites that I think are good.

You must have inspiration to design a website. Goo...

Docker Gitlab+Jenkins+Harbor builds a persistent platform operation

CI/CD Overview CI workflow design Git code versio...

Implementation of MySQL Multi-version Concurrency Control MVCC

Table of contents What is MVCC MVCC Implementatio...

How to implement Linux automatic shutdown when the battery is low

Preface The electricity in my residence has been ...

Comprehensive analysis of isolation levels in MySQL

When the database concurrently adds, deletes, and...

How to use sed command to efficiently delete specific lines of a file

Preface Normally, if we want to delete certain li...

Detailed analysis of SQL execution steps

Detailed analysis of SQL execution steps Let'...

MySQL case when usage example analysis

First we create the database table: CREATE TABLE ...

MySQL select, insert, update batch operation statement code examples

In projects, batch operation statements are often...