Skip to content

Commit 519242c

Browse files
Changed CMD Line to be nicer
1 parent f776b9d commit 519242c

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

AutoLoginBuilder/Program.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,18 @@ static void Main(string[] args)
4848
v => remove = v != null
4949
},
5050
{
51-
"u|username=", "Computer Account being set for Auto Login",
51+
"u|username=", "Computer Account being set for Auto Login.\n"+
52+
"{Required} to Setup autologin",
5253
v => username = v
5354
},
5455
{
55-
"p|password=", "Password for account being set for Auto Login",
56+
"p|password=", "Password for account being set for Auto Login\n"+
57+
"{Required} to Setup autologin",
5658
v => password = v
5759
},
5860
{
5961
"d|domain=", "Domain for account being set for Auto Login.\n"+
60-
"Leave Blank for local account",
62+
"{Optional} Blank if not in domain add for Domain",
6163
v => domain = v
6264
},
6365

@@ -94,6 +96,8 @@ static void ShowHelp(OptionSet p)
9496
Console.WriteLine("-----------------------------------------------------");
9597
Console.WriteLine(" Welcome to the help for this auto Login");
9698
Console.WriteLine(" Remember domain can be blank for localhost");
99+
Console.WriteLine(" You may only ever set or remove not both ");
100+
Console.WriteLine("-----------------------------------------------------");
97101
Console.WriteLine();
98102
Console.WriteLine("Options:");
99103
p.WriteOptionDescriptions(Console.Out);

0 commit comments

Comments
 (0)