# ------------------------------------------for this commands i use powershell :)
# -----------------------START install scoop
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
#and that
irm get.scoop.sh | iex
# END
#--------------------------------------------------------------------------------
# -------------------START install software with scoope
scoop install nameSoftwareHere
# END
#--------------------------------------------------------------------------------
#-----install software not in scoop, like vscode you need to install extra
scoop bucket add extras
#END
#--------------------------------------------------------------------------------
#----------------------------update scoop
scoop update
#END
#--------------------------------------------------------------------------------
#-------------------update software installed with scoop
scoop update * # for all software
scoop update nameOfYourSoftware # update just your software
#END
#--------------------------------------------------------------------------------
#-----------------uninstall software installed with scoop
scoop uninstall nameSoftwareHere
#END
#--------------------------------------------------------------------------------
#--------------------------uninstall scoop !!!
scoop uninstall scoop
#END
#--------------------------------------------------------------------------------
#------------where to find the command line to run to install software
in official website:
https:
search what you need in search bar
#END