Skip to main content

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.

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


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 = $ResolveWingetPathn-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