Hey, Scripting Guy! Quick-Hits Friday: The Scripting Guys Respond to a Bunch of Questions (8/7/09)
<?xml:namespace prefix = v ns = “urn:schemas-microsoft-com:vml” /><?xml:namespace prefix = o ns = “urn:schemas-microsoft-com:office:office” />
Does Windows PowerShell Let Me Trap Errors?
Hey Scripting Guy! Does Windows PowerShell have the ability to trap errors?
— JP
Hello JP,
Yes, it does. Here is an example of using the trap statement in a script.
DemoTrapSystemException.ps1
# ————————————————————————
# NAME: DemoTrapSystemException.ps1
# AUTHOR: ed wilson, Microsoft
# DATE: 8/6/2009
#
# KEYWORDS: Demo, Error Trap, Trap Error
#
# COMMENTS: This illustrates trapping an error.
# $ErrorActionPreference will control NON-Terminating errors.
# Trap will control Terminiating errors.
# Try the different error action preferences: stop, continue, silentlycontinue, inquire
# [SystemException] is the grand daddy of all exceptions.
# ————————————————————————
Function My-Test( [int]$myinput)
{
“It worked”
} #End my-test function
# *** Entry Point to Script ***
#$ErrorActionPreference = “Stop”
Trap [SystemException] { “error trapped” ; continue }
My-Test -myinput “string”
“After the error”
Can I Use the Win32_PingStatus WMI Class with Windows PowerShell?
Hey Scripting Guy! I have seen VBScripts that use the Win32_PingStatus WMI class, but I cannot find an example using it from Windows PowerShell. Can you hook me up with an example?
— DD
Hello DD,
SendPing.ps1 is an example of using the Win32_PingStatus WMI class inside a script. Each of the different values of the statuscode is documented on MSDN.
SendPing.ps1
$computer = “Localhost”
$rtn = get-wmiobject -class win32_pingstatus -filter “Address = ‘$computer'”
If($rtn.StatusCode -ne 0) { “$computer is not reachable” }
ELSE {“Reply from $computer”}
<
p style=”MARGIN: 0in 0in 8pt” class=”MsoNormal”>
Can I Skip Over a WMI Command That Is Generating an Error in a Windows PowerShell Script?
Hey Scripting Guy!
I have a Windows PowerShell script that keeps generating an error when I run it. I would like to be able to skip over the WMI command that is generating the error, but there are two problems. The first is that I do not want to put On Error Resume Next (or the Windows PowerShell equivalent) at the top of my script. The second problem is I do not know the Windows PowerShell equivalent to On Error Resume Next. Can you help me?
— GG
Hello GG,
Of course we can help you. First of all, the Windows PowerShell equivalent to On Error Resume Next is the keyword SilentlyContinue. In Windows PowerShell, there are a couple of places this can be applied. At the top of a script, for example, it can be applied to the automatic variable $ErrorActionPreference. To illustrate this point, perform a directory listing of the root of your HKEY_LOCAL_MACHINE registry hive. On my computer (Windows 7), this command completes by default, but it generates errors. The reason the command completes is that by default the value for $ErrorActionPreference is Continue, which means the errors are displayed, but the command will attempt to complete. The directory listing command is seen here.
ListHKLM.ps1
“Directory listing of HKLM”
dir HKLM:
When I run this ListHKM.ps1 script, the following output is displayed:
Directory listing of HKLM
Get-ChildItem : Requested registry access is not allowed.
At line:3 char:4
+ dir <<<< HKLM:
+ CategoryInfo : PermissionDenied: (HKEY_LOCAL_MACHINEBCD00000000:String) [
Get-ChildItem], SecurityException
+ FullyQualifiedErrorId : System.Security.SecurityException,Microsoft.PowerShell.Comm
ands.GetChildItemCommand
Hive: HKEY_LOCAL_MACHINE
SKC VC Name Property
— — —- ——–
4 0 HARDWARE {}
1 0 SAM {}
Get-ChildItem : Requested registry access is not allowed.
At line:3 char:4
+ dir <<<< HKLM:
+ CategoryInfo : PermissionDenied: (HKEY_LOCAL_MACHINESECURITY:String) [Get
-ChildItem], SecurityException
+ FullyQualifiedErrorId : System.Security.SecurityException,Microsoft.PowerShell.Comm
ands.GetChildItemCommand
23 1 SOFTWARE {(default)}
8 0 SYSTEM {}
This output can be rather distracting for a user. To correct this situation, most people coming from a VBScript background will add the $ErrorActionPreference = ”SilentlyContinue” at the top of their script, as seen here.
ErrorActionSilentlyContinue.ps1
$ErrorActionPreference = “SilentlyContinue”
“Directory listing of HKLM”
dir HKLM:
When the ErrorActionSilentlyContinue.ps1 script is run, the following output is seen:
Directory listing of HKLM
Hive: HKEY_LOCAL_MACHINE
SKC VC Name Property
— — —- ——–
4 0 HARDWARE {}
1 0 SAM {}
23 1 SOFTWARE {(default)}
8 0 SYSTEM {}
One of the cool things about working with Windows PowerShell is that it is very flexible. If you do not want to add the $ErrorActionPreference command at the top of your script, you are not required to do so. You can apply it at the cmdlet level. The Dir command in Windows PowerShell is an alias for the Get-ChildItem cmdlet. As a general rule, I do not like to use aliases in a script because it is not guaranteed that the alias will be present. In addition, using aliases actually makes learning Windows PowerShell more difficult. If you think of the Dir command as the Dir command from the old DOS days, you might not be too inquisitive about what it is able to do. In fact, you will become frustrated with the fact that it does not always behave like the DOS DIR command. If you realize that it is in fact an alias for the Get-ChildItem cmdlet, you may become curious as to what you can do with the Get-ChildItem cmdlet and look it up by using the following command:
Help Get-ChildItem –full
When you look up the parameters for the Get-ChildItem cmdlet, you will find there is an erroraction parameter. This allows you to specify the erroractionpreference value for each cmdlet. Because the erroraction is available for all of the cmdlets, it is called a common parameter. You can find out about all of the common parameters by using Help. This is seen here:
Help *commonparameter*
To use the common parameter erroraction in your script, you specify the parameter and supply the value. This is seen here.
CommonParameter.ps1
“Directory listing of HKLM”
Get-ChildItem -Path HKLM: -ErrorAction SilentlyContinue
Keep in mind that all the extra typing is not really required. You can type this command as seen here by using dir as an alias for the Get-ChildItem cmdlet, and the first position as the default parameter for the path parameter. The ea works because it is an alias for the erroraction parameter.
dir HKLM: -ea silentlycontinue
One thing to keep in mind about error action is that it is for non-terminating errors. For terminating errors, you will need to use the trap statement we looked at earlier.
Can I Read a PDF File with VBScript Automation Testing?
Hey Scripting Guy! I am trying to do some automation testing using VBScript, and I need to be able to read the contents of a PDF file. I have found many examples of reading text files, Office Word files, Excel files, PowerPoint files, and even Access databases, but I do not see how to read a PDF file. Please help me soon. This project is falling behind.
— MK
Hello MK,
Your project just took a turn for the worse, I am afraid. The PDF format is a proprietary format created by Adobe. If they do not provide an API to read the file, we cannot do so for you. If they have an API, it would be documented on their Web site. If they have an API and if it is scriptable, it is as simple as using the CreateObject command to create the object, and calling the appropriate method to read the file, storing the results in a variable, and walking through the collection. However, if they don’t have an API, you will be completely stuck.
Can I Determine the Last User to Log On to a Windows Vista Computer?
0 comments