#################################################################################################### # __ ___ _ ___ _ _ _ # # \ \ / (_)_ __ __| | _____ _____ |_ _|_ __ ___| |_ __ _| | | ___ _ __ ___ # # \ \ /\ / /| | '_ \ / _` |/ _ \ \ /\ / / __| | || '_ \/ __| __/ _` | | |/ _ \ '__/ __| # # \ V V / | | | | | (_| | (_) \ V V /\__ \ | || | | \__ \ || (_| | | | __/ | \__ \ # # \_/\_/ |_|_| |_|\__,_|\___/ \_/\_/ |___/ |___|_| |_|___/\__\__,_|_|_|\___|_| |___/ # # # #################################################################################################### # # # Instructions: # # # # Open Windows PowerShell with Run as Administrator # # # # Copy the script below and paste it into the Windows PowerShell window # # # #################################################################################################### # Install Cortex $ProgressPreference = 'SilentlyContinue' cd \ cd C:\Windows\Temp Invoke-WebRequest -uri "https://it.poly.edu/NYU_Tandon_-_Windows_8_8_0_1_x64.msi" -OutFile NYU_Tandon_-_Windows_8_8_0_1_x64.msi (start-process msiexec.exe -ArgumentList "/i NYU_Tandon_-_Windows_8_8_0_1_x64.msi /qb" -Wait -Passthru).ExitCode Start-Sleep -Seconds 5 Remove-Item NYU_Tandon_-_Windows_8_8_0_1_x64.msi # Install InsightVM $ProgressPreference = 'SilentlyContinue' cd \ cd C:\Windows\Temp $Arguments = @("/i agentInstaller-x86_64.msi", 'CUSTOMATTRIBUTES="tandon-windows-workstations"', '/l*v "insight_agent_install_log.log"', "CUSTOMTOKEN=us:760cd8ec-1e31-46d8-ba9f-9dd3d12a5045", "/quiet") Invoke-WebRequest -uri "https://it.poly.edu/agentInstaller-x86_64.msi" -OutFile agentInstaller-x86_64.msi (start-process msiexec.exe -ArgumentList $Arguments -Wait -Passthru).ExitCode Start-Sleep -Seconds 5 Remove-Item agentInstaller-x86_64.msi # Install BigFix $ProgressPreference = 'SilentlyContinue' cd \ cd C:\Windows\Temp Invoke-WebRequest -uri "https://it.poly.edu/Bigfix-10.0.3.66-Win10-Tandon.msi" -OutFile Bigfix-10.0.3.66-Win10-Tandon.msi (start-process msiexec.exe -ArgumentList "/i Bigfix-10.0.3.66-Win10-Tandon.msi /qb" -Wait -Passthru).ExitCode Start-Sleep -Seconds 5 Remove-Item Bigfix-10.0.3.66-Win10-Tandon.msi