Skip to content

Commit

Permalink
Update Memo.md
Browse files Browse the repository at this point in the history
  • Loading branch information
farag2 committed Jun 25, 2021
1 parent 6c251fe commit cb65901
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions Memo.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,28 @@ Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"

https://github.com/SamuelArnold/StarKill3r/blob/master/Star%20Killer/Star%20Killer/bin/Debug/Scripts/SANS-SEC505-master/scripts/Day1-PowerShell/Expand-IndirectString.ps1

# Updated UI translation
https://raw.githubusercontent.com/Sophia-Community/SophiApp/Ref/SophiApp/SophiApp/Localizations/EN.xaml
https://raw.githubusercontent.com/Sophia-Community/SophiApp/Ref/SophiApp/SophiApp/Localizations/RU.xaml
```powershell
$ExcludedAppxPackages = @(
# Microsoft Desktop App Installer
"Microsoft.DesktopAppInstaller",
# Store Experience Host
# Узел для покупок Microsoft Store
"Microsoft.StorePurchaseApp",
# Microsoft Store
"Microsoft.WindowsStore",
# Web Media Extensions
# Расширения для интернет-мультимедиа
"Microsoft.WebMediaExtensions"
)
$AppxPackages = Get-AppxPackage -PackageTypeFilter Bundle -AllUsers | Where-Object -FilterScript {$_.Name -notin $ExcludedAppxPackages}
$PackagesIds = [Windows.Management.Deployment.PackageManager, Windows.Web, ContentType = WindowsRuntime]::new().FindPackages() | Where-Object -FilterScript {$_.IsFramework -eq $false} | Select-Object -Property DisplayName, Logo -ExpandProperty Id | Where-Object -FilterScript {$_.Architecture -ne "Neutral"} | Select-Object -Property Name, DisplayName, Logo
foreach ($AppxPackage in $AppxPackages)
{
$PackagesIds | Where-Object -FilterScript {$_.Name -eq $AppxPackage.Name}
}
```

0 comments on commit cb65901

Please sign in to comment.