1 year ago
#330869
ktm
Adobe Reader install
im kinda stuck with installation of Adobe reader trough intune powershell or even cmd.
My goal is to install Adobe Reader trough intune (msi) or trough intune scripting.
i got scripts working and my target pc is local admin but i want a quiet install with no addition popups.
I have tried multiple tutorials and scripts but no success so far. the .msi that adobe proved cant be installed trough intune because i get a error after the instalation. (no logging file or something to figure out what is going wrong, So fine i make a script dat copy's all the files and tried to run the setup.exe or to AcroRead.msi but i dont silent install. through cmd i got it working with
setup.exe /sall /l*v "target logging"
when i run that without cmd or powershell it works only with a UAC prompt before it.My guess is that the script wont work because of the UAC in the beginning? (i get no error's in powershell)
my current powershell script is :
########## Set Execution Policy, to be able to run scripts ##########
Set-ExecutionPolicy Unrestricted
########## make C:\temp ##########
mkdir C:\temp
########## Set the PowerShell Variables ##########
$source = "ONEDRIVE DOWNLOAD LINK ETkCWvOktxFGs4KRCE8pf_4B4sTsz3EkafcI6XhDIR6nAA?e=sxBms3&download=1"
$destination = "c:\temp\abcpy.ini"
########## Download the Executable ##########
Invoke-WebRequest $source -OutFile $destination
$source1 = "ONEDRIVE DOWNLOAD LINK r2sE6zDU3396IBi4pw?e=HbmOkl&download=1"
$destination1 = "c:\temp\AcroRdrDCUpd1900820071.msp"
########## Download the Executable ##########
Invoke-WebRequest $source1 -OutFile $destination1
$source2 = "ONEDRIVE DOWNLOAD LINK zTiO1WJYqbCeog?e=bqUHey&download=1"
$destination2 = "c:\temp\AcroRead.msi"
########## Download the Executable ##########
Invoke-WebRequest $source2 -OutFile $destination2
$source3 = "ONEDRIVE DOWNLOAD LINK uV2zhwBttlx_D6ZiplBfdFTjrTNBA?e=qlY92K&download=1"
$destination3 = "c:\temp\Data1.cab"
########## Download the Executable ##########
Invoke-WebRequest $source3 -OutFile $destination3
$source4 = "ONEDRIVE DOWNLOAD LINK JxwZGhkBz3MOPzA0w4HoOM5q2jI3Xg?e=bcH3Ar&download=1"
$destination4 = "c:\temp\setup.exe"
########## Download the Executable ##########
Invoke-WebRequest $source4 -OutFile $destination4
$source5 = "ONEDRIVE DOWNLOAD LINK httOlFKqubZFwrfkNbQ?e=HRyJ4y&download=1"
$destination5 = "c:\temp\setup.ini"
########## Download the Executable ##########
Invoke-WebRequest $source5 -OutFile $destination5
########## Install the Executable silently/unattended ##########
Start-Process setup.exe /sall
I have placed with the last line of my code to add L*v "location of temp file" to it, but powershell wont reconize more argument's
Do you wise men/girls have any idea what is going on?
Thanks for you wise advices in advance :)
koen
mutiple youtube links mutiple scripts
powershell
batch-file
cmd
adobe
reader
0 Answers
Your Answer