Skip to main content

How do I ask a user to re-enter information?

Today in my PowerShell class, the question came up of how to ask a user for valid information if what they provided is not correct.  I did not want to go into parameter validation just yet so I did it in code.  This allowed me to demonstration a looping construct and how to use functions inside of your code.

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

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

7

72

73

74

75

76

Function Get-MyEvents

{

    [cmdletBinding()]

    Param (

           [parameter(Mandatory=$true)]

           [String]$Logname,

           [Int]$Newest = 5)

 

    # -- Test-Log ----------------------------------------------------------------

    # Test to determine if the log file is valid.

    # Return code 0 for yes and 1 for no.

    Function Test-Log

    {

        Param (

        $LogName

        )

        $ErrorCode = 0

        Try

        {

            Get-EventLog -LogName $Logname -Newest 1 -ea Stop

        }

        Catch

        {

            $ErrorCode = 1         

        }

        Write-Output $ErrorCode

    }

 

    # -- Get-Info ----------------------------------------------------------------

    # Get the event log info.

    Function Get-Info

    {

        Param($LogName, $Newest)

        Get-EventLog -LogName $Logname -Newest $Newest

    }

 

    # -- Main Code ---------------------------------------------------------------

    # Set the error code to 1 (Unsuccessful)

    $ErrorCode = 1

 

    # Loop until the Errorcode is 0.

    Do

    {

        # Call Test-Log to retrieve an error code.

        $ErrorCode = Test-log -LogName $LogName

 

        # If the error code is 1, the ask for a valid file.

        If ($ErrorCode -eq 1)

        {

            $LogName = Read-Host('Please enter a valid log file')

          

        }

 

    } While ($ErrorCode -eq 1)

 

    # Get the log file information.

    Get-Info -LogName $Logname -Newest $Newest

  

    <#

    .SYNOPSIS

    This gets me event.

 

    .DESCRIPTION

    Gets what ever event log I say.

 

    .PARAMETER Logname

    This is the name of the logfile you wat to get info from.

 

    .PARAMETER Newest

    The number of events to return.

 

    .EXAMPLE

    Get-MyEvents -Logname System -Newest 10

    This recovered the newest 10 events from the system log.

    #>

}

 

In the Main Code, starting at line 37, I created a variable called $ErrorCode and set it to 1.  As long as this variable is equal to 1, the user would be asked for the name of a valid log file.

In line 45, I give the opportunity for that error code to be changed by calling the function Test-Log. This function will attempt to call a record from the event log specified by the user.  If it is successful, an ErrorCode of zero is returned.  If it is not, an ErrorCode of 1 is returned.

At line 48, if the ErrorCode is 1, the user is prompted for the name of a different log.  The loop then executes and the process starts over again.

Line 57 calls another function that actually gets the log information.  This function call could have been omitted and just instead move line 34 to line 57.  Again, I was demonstrating calling functions.

Comments

Popular posts from this blog

Sticky Key problem between Windows Server 2012 and LogMeIn

This week I instructed my first class using Windows Server 2012 accessed via LogMeIn and discovered a Sticky Key problem every time you press the Shift key. Here is my solution to resolve this.  First off, in the Preferences of LogMeIn for the connection to the Windows Server, click General . Change the Keyboard and mouse priority to Host side user and click Apply at the bottom. On the Windows 2012 server, open the Control Panel – Ease of Access – Change how your keyboard works . Uncheck Turn on Sticky Keys . Click Set up Sticky Keys . Uncheck Turn on Sticky Keys when SHIFT is pressed five times . Click OK twice. If you are using Windows Server 2012 as a Hyper-V host, you will need to redo the Easy of Use settings on each guest operating system in order to avoid the Sticky Key Problem. Updated Information: March 20, 2013 If you continue to have problems, Uncheck Turn on Filter Keys .

How to list all the AD LDS instances on a server

AD LDS allows you to provide directory services to applications that are free of the confines of Active Directory.  To list all the AD LDS instances on a server, follow this procedure: Log into the server in question Open a command prompt. Type dsdbutil and press Enter Type List Instances and press Enter . You will receive a list of the instance name, both the LDAP and SSL port numbers, the location of the database, and its status.

How to run GPResult on a remote client with PowerShell

In the past, to run the GPResult command, you would need to either physically visit this client, have the user do it, or use and RDP connection.  In all cases, this will disrupt the user.  First, you need PowerShell remoting enabled on the target machine.  You can do this via Group Policy . Open PowerShell and type this command. Invoke-Command –ScriptBlock {GPResult /r} –ComputerName <ComputerName> Replace <ComputerName> with the name of the target.  Remember, the target needs to be online and accessible to you.