Skip to main content
Question

Silent install for Intune - Windows


Hi, I am new to Figma, I have to install Figma via Microsoft Intune, the Windows version.
If I run figmainstall.exe /? or /help it returns no parameters to allow for silent or unattended install.

Does anyone here know if it is possible, we don’t want user interaction for the install.

Thank you.

3 replies

  • 1 reply
  • September 15, 2023

same need here


Did anyone ever figure this one out? Just trying to get this to install via InTune and also don’t want any interaction \ visible installer to run. Thanks, GK


Phil_Turney

Figma is available on Winget, so you can install directly from there, just be sure to include ‘–scope machine’ to get the machine-wide install. Here’s a winget install function I use in PS:

    > Function Winget-Install {
    param($WingetID)

    $OSArch = (Get-CimInstance Win32_OperatingSystem).OSArchitecture

    If ($OSArch -match "ARM"){
        $PathToResolve = "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_arm64__8wekyb3d8bbwe\winget.exe"
    }else{
        $PathToResolve = "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*_x64__8wekyb3d8bbwe\winget.exe"
    }

    $ResolveWingetPath = Resolve-Path $PathToResolve
    if ($ResolveWingetPath){
            $WingetPath = $ResolveWingetPath[-1].Path
    }

    $Wingetpath = Split-Path -Path $WingetPath -Parent
    cd $wingetpath
    .\winget.exe install --exact --id $WingetID --silent --accept-package-agreements --accept-source-agreements --scope machine
    }

    Winget-Install -WingetID “Figma.Figma”

Alternatively, you can download the .msi using winget by this in a command prompt:

winget download Figma.Figma --scope machine

Then you can install the .msi with the /qn parameter.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings