Sha256: e346c7cb85bc4fce6effda5c070b0e1fd0377c731911d38b99fa78582832977c

Contents?: true

Size: 1.59 KB

Versions: 6

Compression:

Stored size: 1.59 KB

Contents

# fail on errors and include uplift helpers
$ErrorActionPreference = "Stop"

Import-Module Uplift.Core

Write-UpliftMessage "Installing PowerShell Modules..."
Write-UpliftEnv

# - install other DSC packages
$packages = @(

    @{
        Id = "PSWindowsUpdate";
        Version = "2.0.0.4"
    },

    @{
        Id = "Pester";
        Version = "4.3.1"
    },

    @{
        Id = "cChoco";
        Version = "2.3.1.0"
    },

    @{
        Id = "cFirewall";
        Version = "1.0.1"
    },

    @{
        Id = "SharePointDSC";
        Version = "1.9.0.0"
    },

    @{
        Id = "MS_xVisualStudio";
        Version = "1.0.0.0"
    },

    @{
        Id = "xActiveDirectory";
        Version = "2.17.0.0"
    },

    @{
        Id = "xSQLServer";
        Version = "9.1.0.0"
    },

    @{
        Id = "xDSCFirewall";
        Version = "1.6.21"
    },

    @{
        Id = "xNetworking";
        Version = "5.5.0.0"
    },

    @{
        Id = "xTimeZone";
        Version = "1.7.0.0"
    },

    @{
        Id = "xWebAdministration";
        Version = "1.19.0.0"
    },

    @{
        Id = "xPendingReboot";
        Version = "0.3.0.0"
    },

    @{
        Id = "xComputerManagement";
        Version = "4.0.0.0"
    },

    @{
        Id = "DSCR_Shortcut";
        Version = "1.3.7"
    },

    @{
        Id = "ComputerManagementDsc";
        Version = "6.1.0.0"
    },

    @{
        Id = "xSystemSecurity";
        Version = "1.4.0.0"
    },

    @{
        Id = "xCredSSP";
        Version = "1.3.0.0"
    }
)

Write-UpliftMessage "Installing DSC modules: $packages"
Install-UpliftPSModules $packages

exit 0

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-uplift-0.2.1902.49 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1
vagrant-uplift-0.2.1902.46 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1
vagrant-uplift-0.2.1902.42 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1
vagrant-uplift-0.2.1902.40 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1
vagrant-uplift-0.2.1902.39 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1
vagrant-uplift-0.2.1902.37 lib/scripts/vagrant/uplift.vagrant.bootstrap/uplift.bootstrap.ps-modules.ps1