Nano Server Flashcards

1
Q

Usage scenarios for nano server?

A

containers, cloud-based infra services, and born-in-the cloud apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

example use cases for nano server?

A

hyper-v, failover clusterings, scale out file server, dns , and iis

vm’s, containers, and dev platforms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ways to install nano server?

A

Boot into DVD and add VHd to bootable drive or add in hyper-v as vm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

steps to install nano server powershell?

A

import-module .\nanoserverimagegenerator -verbose

new-nanoserverimage -deploymenttype guest|host -edition standard|datacenter -mediapath
root -targetpath path\filename -computername name

next you add vhd/x file when creating new vm in hyper-v. If physical boot from dvd and create bootable drive and add vhdx file there and set to boot from there.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

how to join to domain when creating it?

A

if already joined to domain add -domainname parameter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to domain join with blob file if away from domain?

A

from computer joined to domain create using

djoin /provision /domain domainname /machine computername /savefile filename.txt

next when creating remove computername parameter and add -domainblobpath

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to add features?

A

add when creating vhdx file by adding optional parameters such as computer for hyper-v feature

use edit-nanoserverimage with -packages parameter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to set ip?

A

when creating vhdx set ip and dns

or in recovery console. but dns can’t be set there either use ipv4dns parameter in edit-nanoserverimage or new-nanoserverimage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how to access workgroup nanoserver with ps?

A

first add it to your trusted hosts

set-item wsman:\localhost\client\trustedhosts “192.168.10.41”

winrm set winrm/config/client @{TrustedHosts=”192.168.10.41”}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what tool can be used to service images?

A

dism

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

dism command to mount image?

A

dism /mount-image /imagefile:filename /index:# /name:imagename /mountdir:pathname

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

add drives using dism?

A

dism /image:foldername /add-driver /driver:drivername [/recurse]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

add update using dism?

A

dism /image:c:\mount /add-package /packagepath:c:\updates\package.msu [/ignorecheck]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

unmount image and keep changes?

A

dism /unmount-image /mountdir:c:\mount /commit

/discard to not keep

How well did you know this?
1
Not at all
2
3
4
5
Perfectly