Skip to content

Commit

Permalink
Update choco_veeam.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyspiteri committed Mar 11, 2020
1 parent ddaabf1 commit bed2eef
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions choco_veeam.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Install GoogleChrome -y
hoco install cygwin -y
choco install cyg-get -y
cyg-get ansible

## Install OpenSSH.Server
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
## Install OpenSSH.Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
## Change server start-up to Automatic
Set-Service -Name sshd -StartupType Automatic
## Start the Server and change start-up to Automatic
Start-Service sshd

choco feature enable -n=exitOnRebootDetected
choco feature enable -n=useRememberedArgumentsForUpgrades

choco install sql-server-express -y
#choco install sql-server-express -y

choco install veeam-backup-and-replication-server --params "/sqlServer:(local)\SQLEXPRESS /username:administrator /password:Veeam1!" --source='"c:\Packages;chocolatey"' -y
#choco install veeam-backup-and-replication-server --params "/sqlServer:(local)\SQLEXPRESS /username:administrator /password:Veeam1!" --source='"c:\Packages;chocolatey"' -y

0 comments on commit bed2eef

Please sign in to comment.