Lacerte silent install + updates

There has been a request for Lacerte silent install if possible + updates if possible

Software for Complex Tax Returns | Intuit Lacerte

So far we are not aware of any demand from the community for this, please add your votes/comments if this would assist your team!

We have a handful of clients running Lacerte and would definitely welcome some automation there.

One thing of note, in every case for our clients they tend to need the last 10 years or so of versions installed on their machines so they can reference old client data.

1 Like

Also would love to see this! Could assist with testing or needing access to anything

Just to bump this, I would absolutely love to test this as well if it gets setup. Have quite a few clients with Lacerte.

We’ve got some clients with Lacerte as well

We have at least 5-10 customers that use Lacerte.

1 Like

Lacerte is a tricky one. Unfortunately, in most cases the update is done on an RDS or file share. Then the users need to access the file share and run the installer from the share.

This would be extremely helpful if it was possible as manually installing across large clients can be difficult.

We are a large multi-office Lacerte user (230 folks, 5 offices) and one of our senior engineers fought this out. Been working so far, but it can be a LONG install time.

#Store the workstation host name to determine which Lacerte server to get the installer from
$Hostname = $env:COMPUTERNAME

#Set the uninstall reg path for the targeted tax year
$UninstallPath = “HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\2021 Lacerte Tax”

#Set the Lacerte silent install arguments
$args = @"

/TargetDir="C:\Lacerte\21tax" /AutoInstall /AutoExit /q /norestart

"@

#Check the hostname for a match to a specific office and whether the uninstall path exists
IF(($Hostname -like “OFFICEINITIALS*”) -and (!(Test-Path $UninstallPath))) {

Start-Process -Wait “\officelacerteserver\lacerte\21tax\Setup21\TaxSetup.exe” -ArgumentList $args

}

ELSEIF through as many offices as you need.

@Chris_White how are you connecting to the server via SYSTEM context? If I had to guess, you’re running this script as a user?