Skip to content

Commit

Permalink
Adding Windows Server template
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoColomb0 committed Dec 9, 2023
1 parent a5553bd commit e3262ab
Show file tree
Hide file tree
Showing 2 changed files with 525 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deployments/w11-23h2.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<#
.INFO
Script Name: windowsclient.ps1
Script Name: w11-23h2.ps1
Description: Automatic Azure infrastructure deployer (Windows Client)
.NOTES
File Name : windowsclient.ps1
File Name : w11-23h2.ps1
Author : MarcoColomb0
Prerequisite : PowerShell, Az module and an Azure subscription :)
#>
Expand All @@ -14,12 +14,12 @@
$LocationName = 'westeurope' # Get-AzLocation | ft

# Resource group
$ResourceGroupName = 'AzurePSDeployer-rg'
$ResourceGroupName = 'APSD-WC-rg'

# Windows Client virtual machine
$VMName = 'APSD-WC-vm'
$ComputerName = 'APSD-WC-vm'
$VMSize = 'Standard_B2ms' # Get-AzVMSize -Location (location) | ft
$VMSize = 'Standard_B2s' # Get-AzVMSize -Location (location) | ft
$ImagePublisher = 'MicrosoftWindowsDesktop' # Get-AzImagePublisher
$ImageOffer = 'Windows-11' # Get-AzVMImageOffer
$ImageSKU = 'win11-23h2-pro' # Get-AzVMImageSku
Expand Down
Loading

0 comments on commit e3262ab

Please sign in to comment.