• Home
  • Blog
  • Contact
  • About Us
     
No Result
View All Result
  • Home
  • Blog
  • Contact
  • About Us
No Result
View All Result
Tutorial
No Result
View All Result

AIMP

AIMP is a free, high-quality audio player for Windows and Android. It supports many formats like MP3, FLAC, and AAC. Known for its clean interface and customizable skins, AIMP offers advanced sound features such as a 32-bit audio engine, 18-band equalizer, and audio effects. It also includes tools for audio conversion, playlist management, and internet radio. Lightweight and powerful, AIMP is popular for its excellent performance and audio playback quality.

12
Software Name
AIMP
PublisherArtem Izmaylov
Homepagehttps://www.aimp.ru/
Architecture64-bit
Software Version5.10.2418
Download (.exe)aimp_5.10.2418_w64.exe
Install BehaviorSystem Context (All Users)
Detection (Location)C:\Program Files\AIMP\AIMP.exe
Silent Installation"aimp_5.10.2418_w64.exe" /AUTO /SILENT
Silent Uninstallation"C:\Program Files\AIMP\Uninstall.exe" /AUTO /SILENT
Wingetwinget install --id=AIMP.AIMP -e

How to Install The App Silently

  1. Download the installer from the link in the above table.
  2. Copy the downloaded file to a designated folder, such as [C:\Installers]. Alternatively, you can transfer the downloaded installer file to a USB device for installing the application on other computers.
  3. Next, open CMD (Command Prompt) as administrator.
  4. In the CMD window, navigate to the source folder using the cd command:
  5. Finally, type the silent installation command in the above table then press to install the app.

After a minute or so, you should see the app installed in the installation directory. The app should appear in the Installed Apps section in Windows Settings or under Programs and Features in the Control Panel.

How to Uninstall The App Silently

  1. Open CMD (Command Prompt) as administrator.
  2. Type the silent uninstallation command in the above table the press to install the app.

Silently Install Using PowerShell

Alternatively, you can use the following PowerShell script to automatically download and install the app. This approach saves you from manually downloading the installer and executing the installation command.

To install the app, simply open PowerShell as an administrator, copy the code snippets below, paste them into the PowerShell window, and press .

This script explanation:

  • Queries GitHub for the latest version via Winget manifest.
  • Downloads the .installer.yaml, extracts the official download URL.
  • Downloads the installer file from the official download link.
  • Silently installs it using the Start-Process cmdlet.
  • Cleans up the downloaded temp file.
# GitHub API URL for the app manifest.
$apiUrl = "https://api.github.com/repos/microsoft/winget-pkgs/contents/manifests/a/AIMP/AIMP"

# Fetch version folders then filter only version folders.
$versions = Invoke-RestMethod -Uri $apiUrl -Headers @{ 'User-Agent' = 'PowerShell' }
$versionFolders = $versions | Where-Object { $_.type -eq "dir" }

# Extract and sort version numbers to get the latest version.
$sortedVersions = $versionFolders | ForEach-Object { $_.name } | Sort-Object {[version]$_} -Descending -ErrorAction SilentlyContinue
$latestVersion = $sortedVersions[0]

# Get contents of the latest version folder to find the .installer.yaml file.
$latestApiUrl = "$apiUrl/$latestVersion"
$latestFiles = Invoke-RestMethod -Uri $latestApiUrl -Headers @{ 'User-Agent' = 'PowerShell' }
$installerFile = $latestFiles | Where-Object { $_.name -like "*.installer.yaml" }

# Download and parse YAML content to get the Url of the latest installer file.
$yamlUrl = $installerFile.download_url
$yamlContent = Invoke-RestMethod -Uri $yamlUrl -Headers @{ 'User-Agent' = 'PowerShell' }
$yamlString = $yamlContent -join "`n"
$installerUrls = [regex]::Matches($yamlString, "InstallerUrl:\s+(http[^\s]+)") | ForEach-Object { $_.Groups[1].Value }
$installerUrl = $installerUrls[0]

# Download the latest installer to the temp folder.
$webClient = [System.Net.WebClient]::new()
$webClient.DownloadFile($installerUrl, "$env:TEMP\AIMP-latest.exe")

# Start the install process.
Start-Process -FilePath "$env:TEMP\AIMP-latest.exe" -ArgumentList '/AUTO /SILENT' -Wait

# Delete the downloaded installer file.
Remove-Item -Path "$env:TEMP\AIMP-latest.exe" -Force -ErrorAction SilentlyContinue
Tags: auto installinstall silentlypowershell silent installsilent installsilent uninstallunattended install
Previous Post

Agent Ransack

Next Post

Air Explorer

Related Posts

How To Install Lightshot Using PowerShell

How To Install Adobe Creative Cloud Using PowerShell

How To Install WinSCP Using PowerShell

How To Install Skype Silently on Windows

How To Install VLC Using PowerShell

How To Install Blender Silently on Windows

Popular Apps

•  Google Chrome 

•  Mozilla Firefox

•  Zoom Workplace

•  VLC Media Player

•  Acrobat Reader

•  Foxit PDF Reader

• TeamViewer

  • Home
  • About Us
  • Contact
  • Disclaimers
  • Privacy Policy
  • Terms and Conditions
No Result
View All Result
  • Home
  • Blog
  • Contact
  • About Us