How to silently install Quicken with Powershell?
Moxadonis
Quicken Windows Subscription Member
#Install Quicken
$url = "https://download.quicken.com/windows/Quicken.exe?_ics=1659059472006&irclickid=~atvCY4Xtdu.jh-70USNDCxsjkab9ZOGDxwqgfa8Z"
$dest = "C:\temp\Quicken.exe"
Invoke-WebRequest -Uri $url -OutFile $dest -verbose
start-process C:\temp\Quicken.exe -verb runas -verbose -wait
I've tried -ArgumentList "/s /silent /quiet /qn" and nothing seems to work...
$url = "https://download.quicken.com/windows/Quicken.exe?_ics=1659059472006&irclickid=~atvCY4Xtdu.jh-70USNDCxsjkab9ZOGDxwqgfa8Z"
$dest = "C:\temp\Quicken.exe"
Invoke-WebRequest -Uri $url -OutFile $dest -verbose
start-process C:\temp\Quicken.exe -verb runas -verbose -wait
I've tried -ArgumentList "/s /silent /quiet /qn" and nothing seems to work...
0
Answers
-
Why is a "silent install" important to you? You only install it once.And, this sounds more like a Powershell issue than a Q issue. Do they have a forum where you can ask?
Q user since February, 1990. DOS Version 4
Now running Quicken Windows Subscription, Business & Personal
Retired "Certified Information Systems Auditor" & Bank Audit VP-1 -
There is no rule that says the Quicken has to have a silent install.Signature:
This is my website: http://www.quicknperlwiz.com/-1 -
It's a part of an automated script I use for new PC setups at my work. It's not a Powershell issue. Quicken must not have added the ArgumentList to the exe.
I didn't claim they needed to have a silent install. Seeing how large Quicken is, I thought they would have programmed something as simple as a silent install for quick installations... My fault for overestimated them. But why are you obtuse, Chris_QPW?0 -
Moxadonis said: It's a part of an automated script I use for new PC setups at my work.since the Quicken QDF data file can't be shared as in a networked world - and is for personal use ?
0 -
Moxadonis said:It's a part of an automated script I use for new PC setups at my work. It's not a Powershell issue. Quicken must not have added the ArgumentList to the exe.
I didn't claim they needed to have a silent install. Seeing how large Quicken is, I thought they would have programmed something as simple as a silent install for quick installations... My fault for overestimated them. But why are you obtuse, Chris_QPW?
I don't see anything obtuse about it. Quicken is intended for personal use, they have no reason to spend time on a feature that is outside of that use case. And BTW Quicken Inc isn't that big of a company, but in reality, it doesn't matter. The same was true when Intuit owned Quicken.Signature:
This is my website: http://www.quicknperlwiz.com/1
This discussion has been closed.