コンピュータのメンテナンス
 Computer >> コンピューター >  >> トラブルシューティング >> コンピュータのメンテナンス

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

PowerShell から Windows 10 PC にインストールされているすべてのアプリとプログラムを表示する方法を探している場合は、以下を読み続けてください。 Windows 10 および Windows 8 (8.1) の最新のアプリはすべて、インストール パッケージを通じてインストールされます。アプリ インストール パッケージは、モダン アプリのインストールに必要なすべてのファイルを含む一意のファイルです。特定のアプリを再インストールまたはアンインストールするには、アプリのインストールに使用される名前またはインストール パッケージの完全な名前 (PackageFullName) を知る必要があります。

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

このチュートリアルでは、PowerShell コマンドを使用して、Windows 10 または Windows 8.1 &8 コンピューターにインストールされているすべてのプログラムまたはアプリの一覧を (完全なインストール パッケージ名で) 取得する方法を示します。

Windows 10/8/8.1 にインストールされているすべてのプログラム、アプリ、またはパッケージを表示する方法

ステップ 1. 管理者権限で PowerShell を開きます。

1. Cortana の検索ボックスに「powershell」と入力します *

* 注:Windows 8、8.1 の場合:[Windows] " + "S " キーを押して検索ボックスを開き、「powershell」と入力します .

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

2. Windows PowerShell を右クリック 結果で [管理者として実行] を選択します .

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

ステップ 2. インストール済みのプログラム、アプリ、パッケージを表示する

A. Windows 10 PC にインストールされているすべてのプログラムを表示する方法。
B. Windows 10 にインストールされているストア アプリとパッケージをすべて表示する方法。

A. Windows 10 にインストールされているすべてのプログラムを表示する方法。

Windows 10 にインストールされているすべてのアプリケーションのリストを表示するには、次のいずれかの方法を使用します:

  • 方法 1:WMIC を使用して、インストールされているプログラムを一覧表示します。
  • 方法 2:「Get-WmiObject」コマンドを使用して、インストールされているプログラムを表示します。

方法 1:「WMIC」コマンドを使用して、インストールされているプログラムを一覧表示します。

1. PowerShell (管理者) 次のコマンドを入力して Enter を押します。

  • wmic

<強い>2. 「wmic:root\cli>」プロンプトで、次のように入力します:

  • 製品名、バージョン、ベンダーを取得

– 別の方法として、ドメイン コンピューターにインストールされているプログラムを表示する場合は、次のコマンドを実行します:

  • /node:ComputerName 製品名、バージョン、ベンダーを取得

*注意:ここで、ComputerName =コンピューターの名前。例:コンピュータの名前が「Cougar」の場合、コマンドは次のようになります:

  • /node:Cougar 製品の名前、バージョン、ベンダーを取得

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

ヒント: コマンドの出力 (インストールされているプログラムのリスト) を別のアプリケーション (メモ帳など) にコピーするには:

<ブロック引用>

1. PowerShell ウィンドウ内の任意の場所をクリックし、Ctrl キーを押します + A
2.すべてを選択します。 CTRL を押します + C コピー
3. 結果をクリップボードに保存します。プログラムのリストをコピーするアプリケーションを開き、CTRL を押します + V

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

方法 2:「Get-WmiObject」コマンドを使用して、インストールされているプログラムを表示します。

PowerShell (admin) で次のコマンドを入力し、 Enter を押します :

  • Get-WmiObject -Class Win32_Product

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

B. How to View all Installed Apps &Packages in Windows 10.
  • Part 1. How to View the Installed Windows 10 Apps for All Users.
  • Part 2. How to View the Installed Windows 10 Apps for a particular user.

Part 1. How to View the Installed Windows 10 Apps &Packages for All Users.

A. If you want to view a simple list* of the installed Microsoft Apps for all the users on a Windows 10 PC, give the following command in PowerShell (admin):

  • Get-AppxPackage -AllUsers | Select Name, PackageFullName

* Note:The output of the above command will be a list with two (2) columns (see screenshot below). Under the 'Name' column will be displayed the full name of the Microsoft App (Name)  and at the second column (PackageFullName) is displayed the Full Package Name.

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

TIPS:
1.
If you want to copy &paste the Name or the PackageFullName to another location (e.g. to a PowerShell command), just double-click on it until highlighted, and use Ctrl+C and Ctrl+V keyboard commands to do your job.
2. If you want to copy the full list of installed apps to another application (e.g. in Notepad), then:

1. Click anywhere inside the PowerShell window and CTRL + A to select all.
2. Press CTRL + C to copy the results in the clipboard.
3. Open the application you want to copy the list of programs, and press CTRL + V to paste them.

B. If you want to view a more detailed list* of all the installed Microsoft Apps for all the users on a Windows 10 PC, give the following command in PowerShell (admin):

  • Get-AppxPackage –AllUsers

* Note:The output of the above command will be a more detailed report for all apps installed (see screenshot-2), that contains additional information for each installed package. (e.g. the installation location of the package).

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

Part 2. How to View the Installed Windows 10 Apps &Packages for a Single User.

A. If you want to view a simple list , containing all the Windows Store Apps &the installed packages for a specific user account , give the following command in PowerShell (Admin):

  • Get-AppxPackage –User UserName | Select Name, PackageFullName

* Note:Where UserName is  the account name of the user that you want to view the installed apps.

B. If you want to view a more detailed list of all available Microsoft packages for a specific user account , type the following command:

  • Get-AppxPackage –User UserName

* Note:Where UserName is  the account name of the user that you want to view the installed apps.

Example No 1: If you want to view all the installed apps for the user "User1" on your personal (local) computer, then you have to type this command in PowerShell (Admin):

  • Get-AppxPackage –User User1 | | Select Name, PackageFullName

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

Example No 2: If you want to view all the installed apps of domain computer/user type the "Get-AppxPackage" command in the following format:*

  • Get-AppxPackage –User DomainName\User1 | | Select Name, PackageFullName

* e.g. If the Domain Name is "WINTIPS" and the domain user is the "User1", then the command should be:

  • Get-AppxPackage –User WINTIPS\User1 | | Select Name, PackageFullName

Windows 10、8.1、8 にインストールされているすべてのアプリとパッケージを PowerShell から表示する方法。

That's it!
Let me know if this guide has helped you by leaving your comment about your experience. Please like and share this guide to help others.


  1. Windows 10 PC ですべてのアプリを更新する方法

    Windows 10 PC を使用している場合は、多くのアプリケーションも使用していることになります。たとえば、ブラウザ アプリ (Chrome、Firefox) を使用してインターネットをサーフィンし、メディア プレーヤー アプリ (VLC、iTunes) を使用して映画を見たり音楽を聴いたり、通信アプリ (Skype、Zoom) を使用して話したり対話したりします。その他など。しかし、アプリの開発者は定期的にアップデートをリリースし、ユーザーはインストール済みのアプリを常に最新の状態に保つよう求めていることをご存知ですか?各アプリを個別に更新するには多くの時間と労力がかかるため、Systw

  2. コマンド プロンプトまたは PowerShell からアプリをインストールする方法

    ソフトウェアのインストールは、複雑で反復的で、エラーが発生しやすいプロセスになる可能性があります。使用する前に、まずダウンロードしてインストール プロセスを開始し、インストールされるまで待つ必要があります。これには多くの時間がかかります。コマンド プロンプトからアプリをインストールする方法を学習することで、この時間を節約できます。同時に PowerShell からアプリをインストールすることもできます。 PowerShell とコマンド プロンプトは、Windows 10 または 11 にアプリケーションをシームレスにインストールできます。ただし、アプリのインストールに必要な手順は少し異なり