Get IT Solutions

How to do IT
Menu
  • Home
  • SCCM 2012
    • Deploy Packages
    • Troubleshooting errors SCCM 2012
  • Windows
    • Applications Silent Install
    • Windows Tools
    • Windows Error
    • Script
    • Exchange Server
    • Troubleshooting Office
  • Database
    • SQL Server
  • Cybersecurity
  • Other
  • Our Review

Audacity silent install uninstall msi and offline version.

Audacity silent install is next series of offline installer’s articles. Audacity tool is an open source and free digital audio editor. It is also used for recording. The article explain how to create packages for offline and silent install audacity tool. Tutorial describe both version msi and exe.  We will try v2.1.3 but should work for other version. Also included tutorial for audacity uninstall silently.

Jump to the scripts directly:

  • Offline exe silent install script.
  • Msi silent install script.
  • Silent uninstall script.

Audacity silent install.

  • Exe offline install:
    • Audacity offline installer download
    • Create command line.
    • Execute script.
  • Installing other component for Audacity
    • Lame Silent Install
    • FFMPEG silent install
  • Audacity msi silent install:
    • Download Audacity msi installer.
    • Create command line.
    • Execute script.
  • Audacity uninstall silently.
  • Deploying Audacity with sccm.

Attention! Silent install guides for other application here: Complete List

 

Audacity exe silent install.

  • Download Audacity installer.

You would want the offline installer of Audacity. Instead of downloading the setup on every PC, you can download it one time and then install it everywhere. Download Audacity offline installer directly to application webpage: http://www.audacityteam.org/download/windows/

Note! Download the last version of Audacity offline installer.

Copy the exe to a the folder named like “Audacity offline installer”

 

  • Create cmd file for Audacity unattended installation.

Create a text file to the folder created previously. Copy commands below and save like “Install.cmd”.


@echo off
cls
echo.
==================================================================
echo   Audacity silent install
==================================================================
If not exist C:\install\logs\ md C:\install\logs\
start /wait audacity-win-2.1.3.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /MERGETASKS="!desktopicon" /L*v "c:\install\logs\audacity-win-2.1.3.log"
Echo Done

Note! Change the “Audacity-win-2.1.3.exe” with your Audacity offline installer name.

 

  • Command line explanation

Audacity-win-2.1.3.exe – Name of the exe file.

/VERYSILENT – Silent Installation.

/SUPPRESSMSGBOXES – Create log for installation.

/NORESTART – Instruct to not restart PC.

/SP-  – Disables the This will install… Do you wish to continue? Prompt at the start of Setup.

/MERGETASKS=”!desktopicon” – Do not create desktop icon.

“c:\install\logs\audacity-win-2.1.3.log “ – The path for the log.

 

  • Execute command.

Run as Administrator the Install.cmd script and the Audacity offline version will be installed silently.

Audacity silent install

Audacity silent install

Installing other component of Audacity.

  • Lame silent install

LAME is library that allow some programs to encode MP3 files. For more is free and open-source. Can be downloaded to the official page:  http://lame.buanzo.org/#lamewindl

Check for the Lame_v3.99.3_for_Windows.exe and click to download. Below you will find the script to silent install LAME.


@echo off
cls
echo.
==================================================================
echo   LAME silent install
===================================================================
start /wait Lame_v3.99.3_for_Windows.exe /verysilent /norestart
Echo Done

 

  • FFmpeg Import/export library silent install

FFmpeg allow audacity to import export additional audio formats such as AC3, AMR(NB), M4A and WMA and import audio from video files. Can be downloaded to the official page:  http://lame.buanzo.org/#lamewindl

Check for the ffmpeg-win-2.2.2.exe and click to download. Below you will find the script to silent install FFMPEG library.


@echo off
cls
echo.
==================================================================
echo   FFMPEG silent install
===================================================================
start /wait ffmpeg-win-2.2.2.exe /verysilent /norestart
Echo Done

 

You can integrate all the silent installation in one script. Just copy the line of the installation for each other and paste below the first script for installation of Audacity.

Full installation script with look like:

Audacity Full Installation

Audacity Full Installation

Audacity msi silent install.

Msi version of audacity is an offline installer package off application.

  • Audacity msi installer download.

Audacity do not supply any msi version of application. We have checked but not found and good website that provide Audacity msi installer for download.

We will update the post if official website or any other will provide Audacity msi installer for download.

  • Create cmd file for msi silent install.

(To be updated)

  • Audacity Msi command line explanation

(To be updated)

 

Audacity uninstall silently.

Uninstall Audacity silently using the commands:

@echo off
cls
echo.
==================================================================
echo Audacity silent uninstall
===================================================================
@Echo exe version
"C:\Program Files (x86)\Audacity\unins000.exe" /VERYSILENT
Echo Done

The command uninstall exe version silently without required user action.

Copy the commands to a text file and save like “uninstall.cmd”. Run As administrator and Audacity will be uninstalled silently.

Audacity uninstall silently

Audacity uninstall silently

Deploying Audacity with sccm.

The both packages explained above can deployed with SCCM 2012. To deploy packages on sccm please visit the post:  Deploying Package SCCM

Share
Tweet
Google+
Pinterest
Linkedin
Stumble
Email
Prev Article
Next Article

Related Articles

In this tutorial will explain how to silent install VLC …

Silent install VLC Media Player

Adobe Air silent install will explain the silent installation off …

Adobe Air silent install uninstall msi and exe version

SQL Server Tips

SQL Server Error 26 and SQL Server Error 40 – How to Fix Them
Error 26 on sql server
SQL Server Error 26 and SQL Server Error 40 appear when you try to connect to SQL Server. We will ...
Read More
How to Reset SQL SA Password from Command Line – Explore Here!
Reset SQL SA Password
This article is about how to reset SQL SA password using cmd. Complete step-by-step method is mentioned to change SQL ...
Read More
Microsoft sql server error 53 – Connection Issue with SQL Server Instance
SQL Server Error 53
Microsoft sql server error 53 is common issue related with connection issue with instances on SQL Server. The reasons of ...
Read More

Search

We are on:

Get FREE SPACE for your PC

delete temp files

3 Method to Delete Temp Files in Windows 7/10 including vbs script

In this post we will explain how to delete temp files windows 7 using three different methods including vbs script ...
Read More

Fastest way to delete hiberfil sys from windows 10/8/7 and XP – CMD

In this article we will explain how to remove or delete hiberfil sys from Windows 10/8/7 and XP . If you does ...
Read More

Get IT Solutions

How to do IT

About Us

Get IT Solutions is a personal blog, which is managed to guide people for various topic.

Second Menu

  • Donate
  • About Us
  • Contact Us
  • Privacy Policy

What Will You Find

Automation is our area of writing where are included scripts, batch and various tips to automate your daily job.
Copyright © 2019 Get IT Solutions
Go to the REVIEW section and read lasted review for different tools and services!
Read Now