Page 1 of 1

Find All Files command

Posted: Wed Aug 15, 2007 2:47 pm
by kurtth
The wildcard search pattern appears not to be applied to directory names as the Windows Explorer search does. Depending on the "Include Directory Names" selection either all or no directories are included in the result.

I need to check if the .Net Framework 3.x is installed and tried to do this by finding the directories: $WinDir$Microsoft.NET\\Framework\\V3.*

Actually I need to find if the Windows Communication Foundation (WCF) is available.
Is there another way to check this?

Thanks!

Posted: Wed Aug 15, 2007 3:25 pm
by Alex_Ronquillo
You can use the following to check if WCF is installed:

Code: Select all

Check Registry Key HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.0\\Setup\\Windows Communication Foundation\\InstallSuccess into variable


if $variable$ is 1 or different than NO$VALUE, it means WCF is present.