-
Notifications
You must be signed in to change notification settings - Fork 0
/
SRV-GER-02
41 lines (32 loc) · 1.36 KB
/
SRV-GER-02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Definindo os parâmetros
$VMName = "SRV-GER-02"
$MemoryStartupBytes = 2GB
$VHDPath = "D:\EDU-POPOVICI\VMS\$VMName\$VMName.vhdx"
$VHDSize = 127GB
$VMPath = "D:\EDU-POPOVICI\VMS\"
$ProcessorCount = 4
# Criando o diretório para a VM, se não existir
if (-not (Test-Path -Path "D:\EDU-POPOVICI\VMS\$VMName")) {
New-Item -ItemType Directory -Path "D:\EDU-POPOVICI\VMS\$VMName"
}
# Criando a máquina virtual
try {
New-VM -Name $VMName -MemoryStartupBytes $MemoryStartupBytes -Path $VMPath -Generation 2
} catch {
Write-Host "Erro ao criar a máquina virtual: $_"
exit
}
# Adicionando o número de processadores
Set-VMProcessor -VMName $VMName -Count $ProcessorCount
# Criando o disco virtual dinâmico
New-VHD -Path $VHDPath -SizeBytes $VHDSize -Dynamic
# Adicionando o disco virtual à VM
Add-VMHardDiskDrive -VMName $VMName -Path $VHDPath
# Adicionando a interface de rede desconectada
Add-VMNetworkAdapter -VMName $VMName -SwitchName "None"
# Adicionando a unidade de disco (CD/DVD)
Add-VMDvdDrive -VMName $VMName
# Configurando a ordem de inicialização para usar o CD/DVD
Set-VMFirmware -VMName $VMName -FirstBootDevice (Get-VMDvdDrive -VMName $VMName)
# Configuração final
Write-Host "Máquina virtual $VMName criada com sucesso com 2GB de RAM, 4 núcleos de processamento, disco de 127GB dinâmico, unidade de disco CD/DVD e interface de rede desconectada."