@@ -5,31 +5,31 @@ namespace FirmwareGen.CommandLine
5
5
[ Verb ( "generate-windows-ffu" , HelpText = "Generates a ffu from a Windows Base VHDX" ) ]
6
6
public class GenerateWindowsFFUOptions
7
7
{
8
- [ Option ( 'd' , "driver-pack" , HelpText = "Todo " , Required = true ) ]
8
+ [ Option ( 'd' , "driver-pack" , HelpText = "Driver pack with device.xml " , Required = true ) ]
9
9
public string DriverPack
10
10
{
11
11
get ; set ;
12
12
}
13
13
14
- [ Option ( 'o' , "output" , HelpText = "Todo " , Required = true ) ]
14
+ [ Option ( 'o' , "output" , HelpText = "Output folder " , Required = true ) ]
15
15
public string Output
16
16
{
17
17
get ; set ;
18
18
}
19
19
20
- [ Option ( 'v' , "windows-ver" , HelpText = "Todo " , Required = true ) ]
20
+ [ Option ( 'v' , "windows-ver" , HelpText = "Version of Windows e.g. 10.0.26063.1 " , Required = true ) ]
21
21
public string WindowsVer
22
22
{
23
23
get ; set ;
24
24
}
25
25
26
- [ Option ( 'w' , "windows-dvd" , HelpText = "Todo " , Required = true ) ]
26
+ [ Option ( 'w' , "windows-dvd" , HelpText = "Windows Setup Media DVD drive letter e.g. F: " , Required = true ) ]
27
27
public string WindowsDVD
28
28
{
29
29
get ; set ;
30
30
}
31
31
32
- [ Option ( 'i' , "windows-index" , HelpText = "Todo " , Required = true ) ]
32
+ [ Option ( 'i' , "windows-index" , HelpText = "The index of the Windows Setup Media DVD Install Image, to apply. e.g. 1 " , Required = true ) ]
33
33
public string WindowsIndex
34
34
{
35
35
get ; set ;
0 commit comments