Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#Step 1: # Write the PowerShell syntax to install Java 32bit and 64bit # You will write two separate commands; one to install the 32bit

#Step 1: # Write the PowerShell syntax to install Java 32bit and 64bit # You will write two separate commands; one to install the 32bit and another to install the 64bit # Use the cmdlet "Start-Process" to accomplish the installations # The required argument needed by the Java installer to install silently is "INSTALL_SILENT=Enable" # Make each command wait until the installation is completed before processing the next command

#Step 2: # Write the PowerShell syntax to verify that Java 32bit and 64bit are installed # Use either Get-WmiObject or Get-CimInstance with the class "Win32_Product" to obtain all installed software # Pipe the results of the Get-WmiObject or Get-CimInstance cmdlet to Where-Object and filter for software named Java

#Step 3: # Write the PowerShell syntax to install Java 32bit and 64bit on remote computers listed in the file ComputerNames.txt using Invoke-Command # Also write the PowerShell syntax to verify that Java 32bit and 64bit are installed on the remote computers

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Instant Reference

Authors: Gruber, Martin Gruber

2nd Edition

0782125395, 9780782125399

More Books

Students also viewed these Databases questions