Skip to content

BIOS Update

About:

BIOS Update


Code:

#————————————————————————————————————

# Begin of file


# Location of the files online

$url1 = “https://www.dropbox.com/s/q30deziz2vuze8v/xxx.zip?dl=1”


# Create a folder on C drive called IT which will store the files in it and run them from there

c:

cd\

md IT

cd IT


# Destination of the files where in the C driver

$output1 = “c:\IT\xxx.zip”


# Download the files

wget $url1 -OutFile $output1


# Extract the Zip file

Expand-Archive ‘.\xxx.zip’ -DestinationPath .\


 

.\ssmfs\SSM.exe .\ /accept /am_bld_db /f /s /noreboot 


# End of file

# ———————————————————————————————————–