<img alt="" src="https://secure.inventive52intuitive.com/789747.png" style="display:none;">
Troubleshooting PowerShell Actions in AppSense DesktopNow

Troubleshooting PowerShell Actions in AppSense DesktopNow

Posted by HTG

Verifying that scripts have run successfully in any software is often tricky. AppSense EM is no different. As it has such a powerful integrated scripting capability, you often find yourself doing lots of things with PowerShell and the like. During your test phase, it is often tricky to identify whether a script has run successfully, and even trickier to find the errors if it doesn’t.

Of course, you shouldn’t use PowerShell or other Custom Actions if a native Action will suffice. Scripted actions can often cause logon or application delays, particularly if they’re complicated. So if it’s possible, try and keep the scripted stuff to a minimum. It should only be used where the native Actions can’t cut it – I’ve seen lots of cases where AppSense admins have used scripted rules for no other reason than “because we can”, and they’re probably making their configurations run slightly less than optimally because of this.

Anyway – the situation I found myself in, which was trying to verify whether a scripted Action had run successfully or not, felt somewhat similar to the good old batch days. I used to use the “pause” command in batch files to allow me to verify whether a script had executed successfully or not during the test phase. For instance, say I was running this batch command

md c:\JRR

(which naturally you all know is creating a folder)

I would insert the pause command afterwards, like so

md c:\JRR
pause

So, if the command ran successfully, I would see this at logon

However, if it didn’t, I would see the error….like this…

….which tells me handily that the folder already exists. So, for my test phase, the pause command is invaluable. Obviously when we go to production stage, the pause command is removed, and the batch commands are then invisible to the end user.

In AppSense EM, I am primarily working with PowerShell custom Actions. How can we replicate this functionality within the PowerShell we are using?

Firstly, we will create the PowerShell. It makes sense to replicate the function we were using in the batch command above – creating a folder. Now I know I said that you shouldn’t use Custom Actions where native Actions would suffice, and if I wasn’t trying to demonstrate something, then yes, you should use Action | File and Folder | Create Folder instead!

The PowerShell we need to put in is

New-Item c:\JRR -itemtype directory

Now, there is one more thing we need to do to allow this to run in full view for the test phase, and this is to turn off the EM option for “prevent this script from running interactively”, as below

Now we will need to add in the PowerShell command equivalent to wait for the user to press a key. If you simply wanted a pop-up box like the VB MsgBox function, you can – in fact we’ve used this in a previous article. However, calling out to another window seems a little clunky, so is there a way it can be done natively in PowerShell?

Yes, you can, by using the code below

Write-Host
Write-Host “Press any key to continue …”
$x = $host.UI.RawUI.ReadKey(“NoEcho,IncludeKeyDown”)
Write-Host

This actually uses PowerShell’s automatic variable $host (which is actually an instance of the .NET Framework class System.Management.Automation.Host) and the ReadKey method. The ReadKey method enables us to get information about the key that has just been pressed. As we’re only interested in the fact that a key has been pressed (and not what it is), two parameters are passed. NoEcho – this prevents any information from appearing on screen when the user presses a key, and IncludeKeyDown – this tells the script to continue as soon as a key has been pressed. If you want the script to wait until the user releases the key, use IncludeKeyUp instead. There is a last parameter you could invoke – AllowCtrlC, which would make the script continue during a Ctrl-C keystroke rather than terminating.

So, now we can save this into our configuration, and let’s see what transpires.

If the command completes successfully, we see this


And if it doesn’t complete successfully, we see this

And once our testing phase is over, we can reset the “prevent script from running interactively” option and comment out the “Press any key to continue” lines from the Action, and our users will not see any of this appear, successful or not.

One caveat to this. If you’re using a version of EM prior to 8 FR 4 SP3, you may see this error when the script executes – you’ll have to be quick to spot it though!

Fortunately there is a simple solution - you just need to upgrade EM to the latest available version.

Hopefully this little trick may help some of you out there perform your testing in a more hassle-free manner. I’ve certainly found it valuable for troubleshooting scripted PowerShell Actions – although I have no doubt there are many more ways to skin this particular cat, such as logging to a text file or the console.

Contact

Want to partner with us?

Get in touch to learn more about our services or arrange a free 30-minute consultation with one of our Secure Cloud Experts.

Get in touch
HTG - Contact CTA