Skip to content

Commit 6b2eb00

Browse files
authored
Merge pull request MicrosoftDocs#3579 from MicrosoftDocs/main
Publish main to live, Monday 10:30AM PDT, 7/31
2 parents 79fb1e4 + 2a6cb98 commit 6b2eb00

File tree

1 file changed

+36
-22
lines changed

1 file changed

+36
-22
lines changed

docset/winserver2022-ps/hyper-v/New-VFD.md

Lines changed: 36 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
5-
ms.date: 12/20/2016
5+
ms.date: 06/21/2023
66
online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: New-VFD
@@ -21,29 +21,33 @@ New-VFD [-Path] <String[]> [-CimSession <CimSession[]>] [-ComputerName <String[]
2121
```
2222

2323
## DESCRIPTION
24-
The **New-VFD** cmdlet creates a new virtual floppy disk.
24+
25+
The `New-VFD` cmdlet creates a new virtual floppy disk.
2526

2627
## EXAMPLES
2728

2829
### Example 1
29-
```
30-
PS C:\> New-VFD "c:\floppy.vfd"
30+
31+
```powershell
32+
New-VFD "C:\floppy.vfd"
3133
```
3234

33-
Creates a new virtual floppy drive at the specified path.
34-
This can be then used in the **Set-VMFloppyDiskDrive** cmdlet to attach the virtual floppy disk to a virtual machine.
35+
Creates a new virtual floppy drive at the specified path. This can be then used in the
36+
`Set-VMFloppyDiskDrive` cmdlet to attach the virtual floppy disk to a virtual machine.
3537

3638
## PARAMETERS
3739

3840
### -CimSession
39-
Runs the cmdlet in a remote session or on a remote computer.
40-
Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet.
41-
The default is the current session on the local computer.
41+
42+
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
43+
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
44+
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
45+
current session on the local computer.
4246

4347
```yaml
4448
Type: CimSession[]
4549
Parameter Sets: (All)
46-
Aliases:
50+
Aliases:
4751

4852
Required: False
4953
Position: Named
@@ -53,15 +57,15 @@ Accept wildcard characters: False
5357
```
5458
5559
### -ComputerName
60+
5661
Specifies one or more virtual machine hosts on which the virtual floppy disk is to be created.
57-
NetBIOS names, IP addresses, and fully qualified domain names are allowable.
58-
The default is the local computer.
59-
Use localhost or a dot (.) to specify the local computer explicitly.
62+
NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the
63+
local computer. Use `localhost` or a dot (`.`) to specify the local computer explicitly.
6064

6165
```yaml
6266
Type: String[]
6367
Parameter Sets: (All)
64-
Aliases:
68+
Aliases:
6569
6670
Required: False
6771
Position: Named
@@ -71,6 +75,7 @@ Accept wildcard characters: False
7175
```
7276

7377
### -Confirm
78+
7479
Prompts you for confirmation before running the cmdlet.
7580

7681
```yaml
@@ -86,13 +91,14 @@ Accept wildcard characters: False
8691
```
8792

8893
### -Credential
89-
Specifies one or more user accounts that have permission to perform this action.
90-
The default is the current user.
94+
95+
Specifies one or more user accounts that have permission to perform this action. The default is the
96+
current user.
9197

9298
```yaml
9399
Type: PSCredential[]
94100
Parameter Sets: (All)
95-
Aliases:
101+
Aliases:
96102
97103
Required: False
98104
Position: Named
@@ -102,12 +108,13 @@ Accept wildcard characters: False
102108
```
103109

104110
### -Path
111+
105112
Specifies the path to the new virtual floppy disk files to be created.
106113

107114
```yaml
108115
Type: String[]
109116
Parameter Sets: (All)
110-
Aliases:
117+
Aliases:
111118
112119
Required: True
113120
Position: 0
@@ -117,8 +124,8 @@ Accept wildcard characters: False
117124
```
118125

119126
### -WhatIf
120-
Shows what would happen if the cmdlet runs.
121-
The cmdlet is not run.
127+
128+
Shows what would happen if the cmdlet runs. The cmdlet isn't run.
122129

123130
```yaml
124131
Type: SwitchParameter
@@ -127,16 +134,22 @@ Aliases: wi
127134
128135
Required: False
129136
Position: Named
130-
Default value: False
137+
Default value: None
131138
Accept pipeline input: False
132139
Accept wildcard characters: False
133140
```
134141

135142
### CommonParameters
136-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
143+
144+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
145+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
146+
-WarningAction, and -WarningVariable. For more information, see
147+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
137148

138149
## INPUTS
139150

151+
### System.String[]
152+
140153
## OUTPUTS
141154

142155
### System.IO.FileInfo
@@ -145,3 +158,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
145158

146159
## RELATED LINKS
147160

161+
[Set-VMFloppyDiskDrive](set-vmfloppydiskdrive.md)

0 commit comments

Comments
 (0)