ApkShellext

(★ 22)

A modern, high-performance Windows Shell Extension that extracts and displays application icons, metadata, and tooltips for APK, IPA, and APPX packages natively in Windows File Explorer.

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .gitattributes
  • .gitignore
  • .gitmodules
  • ApkShellext-v1.0.1.zip
  • ApkShellext.sln

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

net

View Details ▼

System utility to view and modify network-related settings.

net {{start|stop}} {{service}}

Start or stop a Windows service synchronously:

net use {{\\smb_shared_folder}} /USER:{{username}}

Make sure an SMB share is available in the current console:

net share

Show the folders currently shared over SMB:

🔍

taskkill

View Details ▼

Terminate a process by its process ID or name.

taskkill /pid {{process_id}}

Terminate a process by its ID:

taskkill /im {{process_name}}

Terminate a process by its name:

taskkill /pid {{process_id}} /f

Forcefully terminate a specified process:

// repository documentation