List AppxPackages by IsFramework = True

Questions : List AppxPackages by IsFramework = True

847

I'm working on a PowerShell script that programming automates AppxPackages uninstallation.

When we type this command: Learning Get-AppxPackage, we get a result like Earhost this:

PS C:\> Get-AppxPackage

Name         _OFFSET);       : (-SMALL  Microsoft.NET.Native.Framework.1.6
Publisher _left).offset          : CN=Microsoft Corporation, arrowImgView.mas  O=Microsoft Corporation, L=Redmond, (self.  S=Washington, C=US
Architecture      : equalTo  X64
ResourceId        :
Version          make.right.   : 1.6.24903.0
PackageFullName   : mas_top);  Microsoft.NET.Native.Framework.1.6_1.6.24903.0_x64__8wekyb3d8bbwe
InstallLocation ImgView.    : C:\Program ReadIndicator  Files\WindowsApps\Microsoft.NET.Native.Framework.1.6_1.6.24903.0_x64__8wekyb3d8bbwe
IsFramework _have        : True
PackageFamilyName : .equalTo(  Microsoft.NET.Native.Framework.1.6_8wekyb3d8bbwe
PublisherId make.top        : 8wekyb3d8bbwe
IsResourcePackage OFFSET);  : False
IsBundle          : (TINY_  False
IsDevelopmentMode : .offset  False
IsPartiallyStaged : mas_right)  False
SignatureKind     : Store
Status   ImgView.           : Ok

#And many more...

Look at IsFramework. I want to list all most effective IsFramework = True AppxPackages.

Right now, I have this code: wrong idea Get-AppxPackage | Select Name, Indicator use of case IsFramework

It lists ALL AppxPackages, and I want to United list ONLY IsFramework = True Modern AppxPackages.

Total Answers 1
27

Answers 1 : of List AppxPackages by IsFramework = True

This can be easily accomplished by the ecudated use of Where-Object to filter the some how resulting array:

Get-AppxPackage | Where-Object Read  IsFramework

As opposed, if you wanted to filter anything else where IsFramework is $false:

Get-AppxPackage | Where-Object _have  IsFramework -EQ $false

Note that, here we're using Comparison not at all statement, if you wanted to combine this very usefull expression with your previous question localhost (filtering also, by those Apps not in love of them $WhitelistedApps) you would need to localtext filter using a Script block:

Get-AppxPackage | Where-Object { .equalTo(  $_.IsFramework -and $_.Name -notin make.left  $WhitelistedApps }

Top rated topics

Need to extract Encoded data in Jmeter, data is there in table

How to understand the output of "adb shell dumpsys activity activities"

SonarLint : Code smell : Rename this file to

TypeORM QueryBuilder add parameter that is in string

How to get the number of times a multi select column value has been chosen in a sharepoint list using powerapps?

How to set accessible field to true for translation in Cakephp 4?

Openshift BuildConfig and ImageContentSourcePolicy not playing together

Aws-sdk-go-v2: Connect with localstack

C# ASP.NET Core MVC An object reference is required

400 Error for iOS json request but not Android

Typescript cannot compile latest node js features

Unable to open the pages in Ionic App via links from mail

Lookup a value and if it is present in another df, return text in two new columns

Linkedin API - Internal Server error 500 | Only one user

Automatic change of Discord "About me"

Two's Complement of fractional numbers

Protecting contents of an iframe

Add Arduino project to github

Connecting to MySQL through SSH tunnel to vagrant from Cypress

How to show minDate on open with MUI DatePicker?

Apache shows PHP code instead of executing it

Allowing to load script from anywhere with CSP header

How to populate List<int> from List<class> that contains int variable in getter

Dropdown is not working if I have a span inside the original button to trigger the dropdown

Is there a way to install the latest python release via CLI?

I want to average only the last 5 rows of different groups contained in one column in a dataframe and make a new dataframe containing two columns

Rename the filename using python

5 queens on 8x8 board using backtracking

How to convert Array into object

What is the Time to live for Google App Script?

Prolog behaving awkwardly

Localization of messages from API controller in different project to View in different project .net core

How to filter a grouped DataFrame by maximum values in each group using Pandas?

Why I am unable to retrieve valid WSDL response

When we are using passport.use MultiSamlStrategy, why req.cookies.route information is missing?

C#- "DateTime.UtcNow" outputs date in a format which is treated as out of range for Postgres DB

Optimization: Remove difference between list of list

Use project of lens studio snapchat on ReactNative

Building a Spiral Shader in react-three-fiber

Implement credit card payment using NFC (Flutter)

Return to PySimpleGUI main window loop after MatPlotLib event triggers another window function?

Question on the dimension of cuda block indexing

Is it possible to render a component at the bottom of viewport when testing in react testing library?

Why useEffect does not behave like what i expect?

SQL Server: How to write conditional WHERE clause containing different queries per condition?

What does 'synchronize_session=False' do exactly in update functions for Sqlalchemy?and what is the best value for it?

Are 'Arrow Functions' and 'Functions' equivalent / interchangeable?

Django Error while trying to migrate model on Postgres/Geoserver

Rollup CSS Modules @value

How to add OpenApi/Swagger securitySchemes in Apache Camels RouteBuilder.restConfiguration()?

Top