Git Product home page Git Product logo

psappdeploytoolkit's Introduction

PowerShell App Deployment Toolkit Logo

Enterprise App Deployment, Simplified.

PSAppDeployToolkit is a versatile solution that streamlines and standardizes the process of software deployment, making it easier than ever to manage your IT environment. It has a comprehensive set of features, such as dynamic logging, user interaction capabilities, and customizable functionality.

Standardize and enhance every software deployment

PSAppDeployToolkit allows you to encapsulate a typical Windows Installer MSI or Setup executable to provide it with enhanced capabilities.

  • Validate prerequisites such as dependencies on minimum software versions
  • Ensure that in-use applications are closed and prevent reopening during the deployment
  • Check with the user if now is a good time to start an install and allow them to defer
  • Uninstall existing applications and perform clean up operations
  • Capture any important settings that may be required for an upgrade or migration
  • Run the installation silently and capture logs in the event of an issue
  • Run post-installation configuration tasks to customize for your environment
  • Prompt the user to restart their computer if required, immediately, on a timer and with a deadline

Getting Started

-> System Requirements -> Downloading

PSAppDeployToolkit Links

-> Homepage -> Documentation -> Function & Variable References -> Download Latest Release -> News

Community Links

-> Discourse Forum -> Discord Chat -> Reddit

License

The PowerShell App Deployment Tool is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

psappdeploytoolkit's People

Contributors

ahpooch avatar akitarmo avatar amotaz avatar basti890 avatar charlesnru avatar cybermoloch avatar dangough avatar dennisvh avatar dianneman avatar ducke avatar fonta avatar hbaes avatar hkystar35 avatar kinglinktiger avatar latupho avatar lboening avatar luki1412 avatar matshellman avatar mjr4077au avatar mmashwani avatar mrman1093 avatar newage1512 avatar oohlaf avatar plogfinder avatar rvkasper avatar sabieler avatar seanlillis avatar sintaxasn avatar skeb1ns avatar wala0003 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

psappdeploytoolkit's Issues

Registry key for deferrals not being correctly set

There seems to be a bit of a bug in 3.6.2 where it seems when deferrals are enabled, the variable $regKeyDeferHistory does not get correctly set. This is because it has a dependency on the $InstallName variable being defined but it seems that this is being constructed later in the script. This results in the deferral value being set in HKLM\Software\PSAppDeploy rather than in for example HKLM\Software\PSAppDeploy$InstallName.

This can cause an issue in the scenario of an older package in which this is not an issue is run first and deferred. If a package based on 3.6.2 is then subsequently run, it will take on the $InstallName value on the first package tha's run and so effect the deferral number for the older package (assuming they've both run in the same Windows session).

Get-ScheduledTask does not work properly with non-English languages

Line 4284 AppDeployToolkitMain.ps1 has to be changed:
[psobject[]]$SchtasksResults = $exeSchtasksResults | ConvertFrom-CSV -Header "HostName","TaskName","NextRun","Status","LastRun" -ErrorAction 'Stop'

This bug was previously resolved but reappeared in Version 3.6.2

Execute-ProcessAsUser still not working properly in new v3.6.4 release

A double-quote is missing from the end of the PSAppDeployToolkit-ExecuteAsUser.vbs which results in error: "Unterminated string constant". The fix is to add a double-quote to the end of the vbscript (i.e. ; Exit $LastExitCode }"). My PSAppDeployToolkit code is as follows:

Execute-ProcessAsUser -Path "$PSHOME\powershell.exe" -Parameters "-Command & { & `"C:\Temp\Script.ps1`"; Exit `$LastExitCode }" -Wait

The resulting PSAppDeployToolkit-ExecuteAsUser.vbs is as follows:

strCommand = chr(34) & "C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" & chr(34) & " -Command & { & " & chr(34) & "C:\Temp\Script.ps1" & chr(34) & "; Exit $LastExitCode }
set oWShell = CreateObject("WScript.Shell")
intReturn = oWShell.Run(strCommand, 0, true)
WScript.Quit intReturn

PSADT v3.6.4 nitpicks

Hi Mo,

1-In AppDeployToolkitMain.ps1, the "Zero-Config MSI installation" section wants to write logs (line
8815) right after it's been disabled in line 8806. Why?

2-If using "CompressedLogs" and installing with SCCM, the Zipped log files created are not readable by regular users. The created ZIP file does not inherit the folder permissions. The workaround I did in my private fork was copy the ZIP file to the folder, delete original, and rename the copy to the original name. This worked fine until my package created big log files. The .CopyHere method is slow because it insists on showing an animated GUI and returns control to the script before it finishes. So we end up with a race condition. My File-perm workaround copies the zip file in mid-creation. So I have to either create another band-aid to wait for the ZIP file to stop growing or bring-in an external ZIP utility like 7zip. (What would you recommend?)

3-If using "CompressedLogs", there are no examples in Deploy-Application.ps1 of how to force log files of Setup.EXE to the $logTempFolder folder. Here are some:

    # Launch EXE from the "\Files" sub-directory
    # Launch InstallShield Setup.exe. Force log files to the logging folder
    #Execute-Process -Path "setup.exe" -Parameters "-s -f2`"$configToolkitLogDir\$installName.log`""
    # Launch InstallShield Setup.exe (MSIs inside). Force log files to the logging folder
    #Execute-Process -Path "setup.exe" -Parameters "/s /v`"ALLUSERS=1 /qn /L* \`"$configToolkitLogDir\$installName.log\`""

FYI: I'm slated to package some apps with VERY-old installers, I'll send up the Deploy-Application.ps1 for those once I'm done.

New-Folder function ignores $LogWriteToHost

If you try to suppress the console from coming up with <Toolkit_LogWriteToHost>False</Toolkit_LogWriteToHost>

The New-Folder function does not handle $configToolkitLogWriteToHost

Therefore if you run:
New-Folder -Path "C:\Temp\MyNewFolder"

You'll see the console come up to show this:

Directory: C:\Temp

Mode                LastWriteTime     Length Name                                                                              
----                -------------     ------ ----                                                                              
d----        17/06/2015  12:25 PM            MyNewFolder  

I changed this line:

New-Item -Path $Path -ItemType Directory -ErrorAction 'Stop'

to this:

New-Item -Path $Path -ItemType Directory -ErrorAction 'Stop' > $null

and it no longer shows the console:

problem with "Get-InstalledApplication"

Hi,

I am using the 3.6.3. I need to detect "Microsoft Sync Framework 2.1 Core Components (x64) ENU (KB2567595)".

is it not detected because of the KB2567595? on line 1733 of the AppDeployToolKitMain.ps1 there is a jump for it

how can I turn arround it ?
Thanks in advance

User's display UI is not detected in all cases

In 3.6.3 the detection of the language with MUI packs does not work as expected for Windows 7 x64 :

In the AppDeployToolKitMain.Ps1 โ€“ [scriptblock]$xmlLoadLocalizedUIMessages
1/ There is a Typo : The code looks for โ€œPrefferedUILanguagesโ€ instead of โ€œPreferredUILanguagesโ€ (Actual of the value name in registry
2/ None of the 2 possible GPO settings have been considered. These should be considered first since the should have precedence. The block for windows 7 / Vista machines should looks like something like

Possible resolution :

#  Read language for Win Vista/Win 7 machines
If (-not $HKULanguages) {
    [string[]]$HKULanguages = Get-RegistryKey -Key 'HKLM\Software\Policies\Control Panel\Desktop' -Value 'PreferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
    [string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Software\Polices\Control Panel\Desktop' -Value 'PreferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
    [string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\Desktop' -Value 'PrefferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
    [string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\Desktop\MuiCached' -Value 'MachinePreferredUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
    [string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\International' -Value 'LocaleName' -SID $RunAsActiveUser.SID
}

Enable-TerminalServerInstallMode - "Failed to change terminal server into user execute mode"

Environment:

  • Microsoft Windows Server 2008 R2 Enterprise Service Pack 1 64-bit 6.1.7601.65536
  • Citrix XenApp 6.5
  • PowerShell 4.0
  • App Deploy Toolkit 3.6.3
  • NT AUTHORITY\SYSTEM
  • English Language
  • SCCM 2012 command-line: Deploy-Application test.ps1 -TerminalServerMode

PSAppDeployToolkit Trace Log:
[Initialization] :: Failed to change terminal server into user install mode.

Error Record:

Message : User session is ready to install applications.
InnerException :

FullyQualifiedErrorId : User session is ready to install applications.
ScriptStackTrace : at Enable-TerminalServerInstallMode, C:\WINDOW
S\ccmcache\8\AppDeployToolkit\AppDeployToolkitMain.ps1:
line 7942
at , C:\WINDOWS\ccmcache\8\AppDeployToolki
t\AppDeployToolkitMain.ps1: line 9175
at , C:\WINDOWS\ccmcache\8\test.ps1: line
96
at , : line 1
at , : line 1

PositionMessage : At C:\WINDOWS\ccmcache\8\AppDeployToolkit\AppDeployToolkitMai
n.ps1:7942 char:38
+ If ($global:LastExitCode -ne 0) { Throw
$terminalServerResult }
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~

When running the change.exe user /install command from a command window it, by default, returns a value of 1 on success. In my opinion the PowerShell code is mistakenly looking for a return code of 0 (as success).

Sometimes fails to run interactively even when forcing the option

I am using the PSADT to deploy Java via SCCM, prompting users to close browsers. If I set it to install as required in SCCM with a deadline, and set it to run weather or not a user is logged in, but window set to normal, not hidden, if the deadline hits, the installation goes, force closing the browsed. If the user triggers it out of Software Center before the deadline, it will run interactively as expected. I can get the logs and commands being run tomorrow at work, but I wanted to log the issue now while it was still on my mind.

Using PSADT version 3.6.4 on Windows 7 Enterprise x64, client and software deployment managed by SCCM 2012 R2 SP1.

Thanks for an awesome tool!
-Anthony

Install-MSUpdates Not Functioning

Using the latest (3.6.5) download zip of the kit. When running the Install-MSUpdates against some .MSU hotfix files, the installation does not complete. The log files show it testing it, confirming it doesn't exist, and then immediately saying it does exist, and continues on. This:

Check if Microsoft Update [kb2775511] is installed.]LOG]!><time="09:59:18.369-300"
<![LOG[[Installation] :: Microsoft Update [kb2775511] is not installed.]LOG]!><time="09:59:25.405-300" date="06-03-2015" component="Test-MSUpdates" context="DOMAIN\user" type="1" thread="2020" file="Deploy-Application.ps1">
<![LOG[[Installation] :: KB Number [kb2775511] is already installed. Continue...]LOG]!><time="09:59:25.414-300" date="06-03-2015" component="Install-MSUpdates" context="DOMAIN\user" type="1" thread="2020" file="Deploy-Application.ps1">

PromptToSave not working as expected on Windows 7 with PowerShell 2

I tested the last version of PSAppDeployToolkit 3.6.4 available and verified that PromptToSave and BlockExecution are not working as expected on Windows 7 with PowerShell 2. They work as expected on Windows 8 with PowerShell 4.

On Windows 7 the issues are present, it doesn't prompt the users to save the open documents and it doesn't show the message that the application execution is blocked when you launch the vbs file:

PSAppDeploy Toolkit log:

[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] setup started.        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Users\ZZZZZZZ.YYYY\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Users\ZZZZZZZ.YYYY\Desktop\Deploy-Application.ps1]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Users\ZZZZZZZ.YYYY\Desktop\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Users\ZZZZZZZ.YYYY\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] script version is [1.0.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [Deploy Application] script version is [3.6.1]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.4]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Extensions] version is [1.5.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Computer Name is [NNNNNNNNNN.YYYY.XXXXXXXXXXXXX.com]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current User is [YYYY\ZZZZZZZ]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Version is [Microsoft Windows 7 Enterprise Service Pack 1 64-bit 6.1.7601.65536]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Type is [Workstation]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current Culture is [en-US] and UI language is [EN]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Hardware Platform is [Virtual:VMWare]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Host is [ConsoleHost] with version [2.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Version is [2.0 x64]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell CLR (.NET) version is [2.0.50727.5485]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Display session information for all logged on users: 


NTAccount           : YYYY\ZZZZZZZ
SID                 : S-1-5-21-1454471165-2077806209-1801674531-7103031
UserName            : ZZZZZZZ
DomainName          : YYYY
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : False
LogonTime           : 3/23/2015 1:19:06 PM
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following users are logged on to the system: [YYYY\ZZZZZZZ].        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current process is running under a user account [YYYY\ZZZZZZZ].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following user is the console user [YYYY\ZZZZZZZ] (user with control of physical monitor, keyboard, and mouse).     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user is [YYYY\ZZZZZZZ].        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user [YYYY\ZZZZZZZ] has a primary UI language of [EN].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_EN].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user [YYYY\ZZZZZZZ] has a DPI scale factor of [100] with DPI pixels [96].      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [NT AUTHORITY\SYSTEM] account.       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Session 0 not detected.     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Installation is running in [Interactive] mode.      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Deployment type is [Installation].      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Get deferral history...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\XXXX XX XXXXXXX\Packages\PSAppDeployToolkit\DeferHistory\].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\XXXX XX XXXXXXX\Packages\PSAppDeployToolkit\DeferHistory\] does not exist.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has [1] deferrals remaining.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Convert the date [05/13/2015 15:31:46] to a universal sortable date time pattern based on the current culture [en-US].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has until [2015-05-13 15:31:46Z] before deferral expires.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Convert the date [05/06/2015 15:31:46] to a universal sortable date time pattern based on the current culture [en-US].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: The following processes are running: [iexplore,notepad,WINWORD].      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Resolve process descriptions...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Prompt user to close application(s) [Internet Explorer,Microsoft Office Word,Notepad]...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has the option to defer.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Close applications countdown has [3600] seconds remaining.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User selected to force the application(s) to close...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process notepad...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process WINWORD...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process notepad...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process WINWORD...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Application(s) are not running.       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: [-BlockExecution] parameter specified.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Create scheduled task to cleanup blocked applications in case installation is interrupted.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Retrieve Scheduled Tasks...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: [C:\Windows\System32\schtasks.exe] is a valid fully qualified path, continue.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Working Directory is [C:\Windows\System32].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Executing [C:\Windows\System32\schtasks.exe /create /f /tn .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps /xml "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\SchTaskUnBlockApps.xml"]...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Execution completed with exit code [0].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [iexplore.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [winword.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [notepad.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].        1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: [C:\Users\ZZZZZZZ.YYYY\Desktop\Files\Setup.exe] is a valid fully qualified path, continue.        1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Working Directory is [C:\Users\ZZZZZZZ.YYYY\Desktop\Files].       1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Executing [C:\Users\ZZZZZZZ.YYYY\Desktop\Files\Setup.exe /s]...       1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Execution completed successfully with exit code [0].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [iexplore.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [notepad.exe].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [winword.exe].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Retrieve Scheduled Tasks...      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Delete Scheduled Task [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps].     1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: [C:\Windows\System32\schtasks.exe] is a valid fully qualified path, continue.        1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Working Directory is [C:\Windows\System32].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Executing [C:\Windows\System32\schtasks.exe /Delete /TN .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps /F]...       1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Execution completed successfully with exit code [0].     1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001 Installation completed with exit code [0].       1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: -------------------------------------------------------------------------------      1/1/1601 12:00:00 AM    0 (0x0000)

AppDeployToolkit_BlockAppExecutionMessage.vbs:

strCommand = "powershell.exe -ExecutionPolicy Bypass -NoProfile -NoLogo -WindowStyle Hidden -File " & chr(34) & "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1" & chr(34) & " -ShowBlockedAppDialog -ReferringApplication " & chr(34) & ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001" & chr(34)
set oWShell = CreateObject("WScript.Shell")
oWShell.Run strCommand, 0, false

Log from the vbs execution:

[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App.Deploy.Toolkit.Main_3.6.4_01] setup started.       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1] invoked directly      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.4]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following non-default parameters were passed to [App Deploy Toolkit Main]: [-ShowBlockedAppDialog:$true -ReferringApplication ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001"]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Extensions] version is [1.5.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Computer Name is [NNNNNNNNNN.YYYY.XXXXXXXXXXXXX.com]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current User is [YYYY\ZZZZZZZ]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Version is [Microsoft Windows 7 Enterprise Service Pack 1 64-bit 6.1.7601.65536]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Type is [Workstation]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current Culture is [en-US] and UI language is [EN]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Hardware Platform is [Virtual:VMWare]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Host is [ConsoleHost] with version [2.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Version is [2.0 x64]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell CLR (.NET) version is [2.0.50727.5485]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)

On Windows 8 the toolkit works as expected, prompting to save the open documents and showing the message that the application execution is blocked:

PSAppDeploy Toolkit log:

[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] setup started.        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Users\ZZZZZZZ\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Users\ZZZZZZZ\Desktop\Deploy-Application.ps1]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Users\ZZZZZZZ\Desktop\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Users\ZZZZZZZ\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] script version is [1.0.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [Deploy Application] script version is [3.6.1]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.4]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Extensions] version is [1.5.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Computer Name is [MMMMMMMMMM.YYYY.XXXXXXXXXXXXX.com]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current User is [YYYY\ZZZZZZZ]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Version is [Microsoft Windows 8.1 Enterprise 64-bit 6.3.9600.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Type is [Workstation]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current Culture is [en-US] and UI language is [EN]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Hardware Platform is [Virtual:VMWare]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Host is [ConsoleHost] with version [4.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Version is [4.0 x64]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.34014]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Display session information for all logged on users: 


NTAccount           : YYYY\ZZZZZZZ
SID                 : S-1-5-21-1454471165-2077806209-1801674531-7103031
UserName            : ZZZZZZZ
DomainName          : YYYY
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : False
LogonTime           : 4/7/2015 10:56:10 AM
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following users are logged on to the system: [YYYY\ZZZZZZZ].        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current process is running under a user account [YYYY\ZZZZZZZ].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following user is the console user [YYYY\ZZZZZZZ] (user with control of physical monitor, keyboard, and mouse).     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user is [YYYY\ZZZZZZZ].        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user [YYYY\ZZZZZZZ] has a primary UI language of [EN].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_EN].     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The active logged on user [YYYY\ZZZZZZZ] has a DPI scale factor of [100] with DPI pixels [96].      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [NT AUTHORITY\SYSTEM] account.       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Session 0 not detected.     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Installation is running in [Interactive] mode.      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Deployment type is [Installation].      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Get deferral history...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\XXXX XX XXXXXXX\Packages\PSAppDeployToolkit\DeferHistory\].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\XXXX XX XXXXXXX\Packages\PSAppDeployToolkit\DeferHistory\] does not exist.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has [1] deferrals remaining.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Convert the date [05/13/2015 16:26:54] to a universal sortable date time pattern based on the current culture [en-US].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has until [2015-05-13 16:26:54Z] before deferral expires.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Convert the date [05/06/2015 16:26:54] to a universal sortable date time pattern based on the current culture [en-US].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: The following processes are running: [iexplore,notepad,WINWORD].      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Resolve process descriptions...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Prompt user to close application(s) [Internet Explorer,Microsoft Word,Notepad]...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has the option to defer.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Close applications countdown has [3600] seconds remaining.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User selected to force the application(s) to close...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [iexplore] with window title [XXXX XX XXXXXXX Enterprise Identification - Internet Explorer] and prompt to save if there is work to be saved (timeout in [120] seconds)...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Window [XXXX XX XXXXXXX Enterprise Identification - Internet Explorer] for process [iexplore] was successfully closed.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [notepad] with window title [Untitled - Notepad] and prompt to save if there is work to be saved (timeout in [120] seconds)...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Window [Untitled - Notepad] for process [notepad] was successfully closed.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Document1 - Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Exceeded the [120] seconds timeout value for the user to save work associated with process [WINWORD] with window title [Document1 - Word].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process ...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process iexplore...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process ...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Document1 - Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Exceeded the [120] seconds timeout value for the user to save work associated with process [WINWORD] with window title [Document1 - Word].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: The following processes are running: [WINWORD].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Resolve process descriptions...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Prompt user to close application(s) [Microsoft Word]...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has the option to defer.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Close applications countdown has [3534] seconds remaining.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User selected to force the application(s) to close...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Microsoft Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Failed to call the CloseMainWindow() method on process [WINWORD] with window title [Microsoft Word] because the main window may be disabled due to a modal dialog being shown.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Document1 - Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Failed to call the CloseMainWindow() method on process [WINWORD] with window title [Document1 - Word] because the main window may be disabled due to a modal dialog being shown.      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Microsoft Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Failed to call the CloseMainWindow() method on process [WINWORD] with window title [Microsoft Word] because the main window may be disabled due to a modal dialog being shown.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process [WINWORD] with window title [Document1 - Word] and prompt to save if there is work to be saved (timeout in [120] seconds)...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Failed to call the CloseMainWindow() method on process [WINWORD] with window title [Document1 - Word] because the main window may be disabled due to a modal dialog being shown.      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: The following processes are running: [WINWORD].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Resolve process descriptions...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Prompt user to close application(s) [Microsoft Word]...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User has the option to defer.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Close applications countdown has [3240] seconds remaining.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: User selected to force the application(s) to close...     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process WINWORD...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Stop process WINWORD...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Application(s) are not running.       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Finished checking running application(s).     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: [-BlockExecution] parameter specified.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Create scheduled task to cleanup blocked applications in case installation is interrupted.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Retrieve Scheduled Tasks...       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: [C:\windows\System32\schtasks.exe] is a valid fully qualified path, continue.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Working Directory is [C:\windows\System32].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Executing [C:\windows\System32\schtasks.exe /create /f /tn .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps /xml "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\SchTaskUnBlockApps.xml"]...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Execution completed with exit code [0].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [iexplore.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].       1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [winword.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [notepad.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe].        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe] [Debugger = wscript.exe "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].        1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: [C:\Users\ZZZZZZZ\Desktop\Files\Setup.exe] is a valid fully qualified path, continue.     1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Working Directory is [C:\Users\ZZZZZZZ\Desktop\Files].        1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Executing [C:\Users\ZZZZZZZ\Desktop\Files\Setup.exe /s]...        1/1/1601 12:00:00 AM    0 (0x0000)
[Installation] :: Execution completed successfully with exit code [0].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [iexplore.exe].     1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [notepad.exe].      1/1/1601 12:00:00 AM    0 (0x0000)
[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [Winword.exe].      1/1/16

AppDeployToolkit_BlockAppExecutionMessage.vbs:

strCommand = "powershell.exe -ExecutionPolicy Bypass -NoProfile -NoLogo -WindowStyle Hidden -File " & chr(34) & "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1" & chr(34) & " -ShowBlockedAppDialog -ReferringApplication " & chr(34) & ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001" & chr(34)
set oWShell = CreateObject("WScript.Shell")
oWShell.Run strCommand, 0, false

Log from the vbs execution:

[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App.Deploy.Toolkit.Main_3.6.4_01] setup started.       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1] invoked directly      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Script [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.4]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: The following non-default parameters were passed to [App Deploy Toolkit Main]: [-ReferringApplication ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001" -ShowBlockedAppDialog:$true]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: [App Deploy Toolkit Extensions] version is [1.5.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Computer Name is [MMMMMMMMMM.YYYY.XXXXXXXXXXXXX.com]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current User is [YYYY\ZZZZZZZ]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Version is [Microsoft Windows 8.1 Enterprise 64-bit 6.3.9600.0]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: OS Type is [Workstation]        1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Current Culture is [en-US] and UI language is [EN]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: Hardware Platform is [Virtual:VMWare]       1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Host is [ConsoleHost] with version [4.0]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell Version is [4.0 x64]     1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.34014]      1/1/1601 12:00:00 AM    0 (0x0000)
[Initialization] :: *******************************************************************************     1/1/1601 12:00:00 AM    0 (0x0000)

This issue is also present on PSAppDeployToolkit 3.6.3.

Invoke-HKCURegistrySettingsForAllUsers: ntuser.dat registry hive not unloaded for Default profile

Issue migrated from CodePlex:
https://psappdeploytoolkit.codeplex.com/workitem/192

Issue is probably caused by some program in the user's environment that maintains a handle to the default registry profile.

It could be some security tool as will with a handle to the registry hive.

If your environment has a DLP protection tool installed in your environment, that is also worth looking into because those are designed to completely hide themselves from being visible to users and can only be detected with psexec. I remember having many problems with hangs and other issues when we first rolled out a DLP solution to the company.

At the very least, a default registry hive that does not unload will not cause corruption of that hive. I would assume that a domain login could still work even if the default hive was loaded because all new logins do is copy the .dat file for the default user to provision the new user.

Language detection does not work as expected

Issue : Language detection does not work as expected

In the AppDeployToolKitMain.Ps1 โ€“ [scriptblock]$xmlLoadLocalizedUIMessages
1/ There is a Typo : The code looks for โ€œPrefferedUILanguagesโ€ instead of โ€œPreferredUILanguagesโ€ (Actual of the value name in registry
2/ None of the 2 possible GPO settings Have been considered. These should be considered first since the should have precedence

Possible resolution :

'Read language for Win Vista/Win 7 machines
If (-not $HKULanguages) {
[string[]]$HKULanguages = Get-RegistryKey -Key 'HKLM\Software\Policies\Control Panel\Desktop' -Value 'PreferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
[string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Software\Polices\Control Panel\Desktop' -Value 'PreferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
[string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\Desktop' -Value 'PrefferedUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
[string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\Desktop\MuiCached' -Value 'MachinePreferredUILanguages' -SID $RunAsActiveUser.SID
}
If (-not $HKULanguages) {
[string[]]$HKULanguages = Get-RegistryKey -Key 'HKCU\Control Panel\International' -Value 'LocaleName' -SID $RunAsActiveUser.SID
}
'# Read language for Win XP machines

Add countdown timer and custom text to Show-InstallationWelcome with the defer option

Hi,

In my company we have a scenario that we wanted to achieve and we think that it could be a good idea if it could be implemented on the toolkit:

We want to be able to prompt the user using the Show-InstallationWelcome to inform that this package will reboot the machine after the installation (or any other custom text) and provide the ability to defer the installation. Another thing is that they want to have the same countdown available for this option as we have for the -ForceCloseAppsCountdown to allow the installation to proceed after a certain amount of time if the users do not select any option. So basically it would be do have the same countdown behavior we already have, but without having to specify to close applications to have the countdown.

So would it be possible to add a -CustomText parameter to specify a custom text to be displayed on the Show-InstallationWelcome window and a -ForceCountdown to allow us to have a countdown without other applications open?

Thanks!

Translation seems not working

hi, and many thanks for deployment toolkit it is very usefull

the french language values in the AppDeployToolkitConfig is not use :
I have noticed on the latest version (3.6.2) the $configBalloonTextComplete has "complete." insight rather than "rรฉussie" and the text for closeprompt_Message is not translate and I suppose all the translation is not taken:
log
I have printed the value and here is the result after the ========>

you can see all the data on this screenshot :
log

Can you do something ?

Thanks in advance

Need small changes in Deploy-Application_v1r1.ps1 RE: $mainExitCode

Hi Mo,
In my private fork I do Log file rotation and compression.
If anything bad happens, I need to exit gracefully with an exitcode but NO logging. So I can't use Exit-Script.
I do a Throw but set the exitcode somehow and I've figured out how to do this by using $mainExitCode just before I do the Throw.

For it to work, Deploy-Application_v1r1.ps1 would need to have a small change:

Catch {
    [int32]$mainExitCode = 60008
    Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
    Exit $mainExitCode
}

to

Catch {
    If ($mainExitCode -eq 0){ [int32]$mainExitCode = 60008 } # To make $mainExitCode from Log Handling come out
    Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
    Exit $mainExitCode
}

One thing I'm not sure though, is if I need to change the scope of $mainExitCode. IOW:

[int32]$mainExitCode = 0

becomes:

[int32]$Global:mainExitCode = 0

Are you keen to add these changes?

Set-ActiveSetup requires -StubExePath when using -PurgeActiveSetupKey

The help file shows that you only need to use -key with -PurgeActiveSetupKey. couldn't figure out what was wrong when Uninstalling using deploy-application.exe just sits at the dialog for a long time and had to terminate powershell.exe. Finally when I ran .\deploy-application.ps1 -DeploymentType "uninstall" in powershell console I noticed it was waiting for input of StubExePath parameter.

"Failed to get the ProductCode from the MSI file. Continue with requested action [Patch]..."

I have the following line of code within my test.ps1:
Execute-MSI -Action Patch -Path "wiv-1050-006.msp"

PSAppDeployKit log states the following:
[Pre-Installation] :: Failed to get the MSI table [Property].

Error Record:

Message : Exception calling "InvokeMember" with "8" argument(s):
"OpenDatabase,DatabasePath,OpenMode"
InnerException : System.Runtime.InteropServices.COMException (0x80004005):
OpenDatabase,DatabasePath,OpenMode

FullyQualifiedErrorId : COMException
ScriptStackTrace : at , \bvlsccmdv2\certify\readyforqa\Darin
\AppDeployToolkit\AppDeployToolkitMain.ps1: line 6956
at Get-MsiTableProperty, \bvlsccmdv2\certify
readyforqa\Darin\AppDeployToolkit\AppDeployToolkitMain.
ps1: line 6978
at Execute-MSI, \bvlsccmdv2\certify\readyforq
a\Darin\AppDeployToolkit\AppDeployToolkitMain.ps1:
line 2024
at ,
\bvlsccmdv2\certify\readyforqa\Darin\test.ps1: line
135
at , : line 1
at , : line 1

PositionMessage : At \bvlsccmdv2\certify\readyforqa\Darin\AppDeployToolkit\App
DeployToolkitMain.ps1:6956 char:4
+ Write-Output
$Object.GetType().InvokeMember($MethodName,
[Reflection.BindingF ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Error Inner Exception(s):

Message : OpenDatabase,DatabasePath,OpenMode
InnerException :

Should .msp properties be interrogated or just .msi???

Blocking "notes" in Show-InstallationWelcome stops script execution

Sorry guys to post here but I did not manage to connect with Google+ to post on forum.

I have a behavior on 3.6.3 version from Deploy-Application.exe turning arround show-welcome cmdlet.

When I launch the Deploy-Application.exe whith adminrights (click right on Deploy-Application.exe) the script stop after the "Finished checking running application(s)" . here is the log :

<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:15:39.505120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:15:39.505120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="16:15:39.598120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="16:15:39.629120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="16:15:39.645120" date="05-05-2015" component="PSAppDeployToolkitExt" context="XXXXXX" type="1" thread="5072" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="16:15:39.661120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="16:15:39.661120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="16:15:39.661120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="16:15:39.661120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="16:15:39.661120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XXXXXXXX]]LOG]!><time="16:15:39.676120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="16:15:39.676120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="16:15:39.676120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="16:15:39.692120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="16:15:39.770120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="16:15:39.770120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="16:15:39.785120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="16:15:39.801120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:15:39.817120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           :XXXXXX
SID                 : SXXXXX
UserName            : XXXXXXX
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 05/05/2015 15:46:21
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="16:15:40.129120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XXXXXXXXX].]LOG]!><time="16:15:40.129120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XXXXXXXXX].]LOG]!><time="16:15:40.129120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XXXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="16:15:40.144120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XXXXXXX].]LOG]!><time="16:15:40.144120" date="05-05-2015" component="PSAppDeployToolkit" context="XXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="16:15:40.144120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="16:15:40.160120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="16:15:40.160120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="16:15:40.175120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="16:15:40.191120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="16:15:40.207120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="16:15:40.207120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="16:15:40.207120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5072" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="16:15:40.269120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="16:15:40.285120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244963 MB].]LOG]!><time="16:15:40.316120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="16:15:40.331120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="16:15:40.363120" date="05-05-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="16:15:40.363120" date="05-05-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="16:15:40.378120" date="05-05-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="16:15:40.378120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="16:15:40.409120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="16:15:40.425120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="16:15:40.441120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="16:15:40.503120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="16:15:46.696120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5072" file="Deploy-Application.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:36:24.881120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:36:24.881120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="16:36:24.959120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="16:36:24.990120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="16:36:25.006120" date="05-05-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="16:36:25.006120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="16:36:25.022120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="16:36:25.022120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="16:36:25.022120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="16:36:25.037120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="16:36:25.037120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="16:36:25.037120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="16:36:25.037120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="16:36:25.053120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="16:36:25.131120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="16:36:25.131120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="16:36:25.162120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="16:36:25.162120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:36:25.178120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 05/05/2015 15:46:21
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="16:36:25.505120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="16:36:25.521120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="16:36:25.521120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="16:36:25.521120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="16:36:25.536120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="16:36:25.536120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="16:36:25.552120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="16:36:25.552120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="16:36:25.568120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="16:36:25.568120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="16:36:25.583120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="16:36:25.583120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="16:36:25.583120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="236" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="16:36:25.630120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="16:36:25.677120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244886 MB].]LOG]!><time="16:36:25.708120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="16:36:25.724120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="16:36:25.739120" date="05-05-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="16:36:25.739120" date="05-05-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="16:36:25.755120" date="05-05-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="16:36:25.770120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="16:36:25.786120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="16:36:25.833120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="16:36:25.833120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="16:36:25.895120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="16:36:32.010120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="236" file="Deploy-Application.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:40:12.836120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:40:12.836120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="16:40:12.929120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="16:40:12.945120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="16:40:12.961120" date="05-05-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="16:40:12.976120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="16:40:12.976120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="16:40:12.976120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="16:40:12.976120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="16:40:12.992120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="16:40:12.992120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="16:40:12.992120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="16:40:13.007120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="16:40:13.007120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="16:40:13.085120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="16:40:13.101120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="16:40:13.101120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="16:40:13.117120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="16:40:13.132120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 05/05/2015 15:46:21
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="16:40:13.460120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="16:40:13.460120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="16:40:13.460120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="16:40:13.475120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="16:40:13.475120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="16:40:13.491120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="16:40:13.491120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="16:40:13.507120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="16:40:13.522120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="16:40:13.522120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="16:40:13.522120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="16:40:13.538120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="16:40:13.538120" date="05-05-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4996" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="16:40:13.600120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="16:40:13.616120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244886 MB].]LOG]!><time="16:40:13.631120" date="05-05-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="16:40:13.663120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="16:40:13.663120" date="05-05-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="16:40:13.694120" date="05-05-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="16:40:13.694120" date="05-05-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="16:40:13.709120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="16:40:13.725120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="16:40:13.756120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="16:40:13.756120" date="05-05-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="16:40:13.819120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="16:40:19.965120" date="05-05-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4996" file="Deploy-Application.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:46:07.923120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:46:07.923120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="09:46:08.001120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="09:46:08.079120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="09:46:08.095120" date="05-07-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="09:46:08.110120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="09:46:08.110120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="09:46:08.110120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="09:46:08.126120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="09:46:08.126120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="09:46:08.126120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="09:46:08.126120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="09:46:08.141120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="09:46:08.141120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="09:46:08.219120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="09:46:08.235120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="09:46:08.235120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="09:46:08.235120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:46:08.235120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 05/05/2015 15:46:21
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="09:46:08.609120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="09:46:08.609120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="09:46:08.609120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="09:46:08.625120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="09:46:08.625120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="09:46:08.625120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="09:46:08.641120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="09:46:08.656120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="09:46:08.687120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="09:46:08.687120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="09:46:08.703120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="09:46:08.703120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="09:46:08.703120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4444" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="09:46:08.750120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="09:46:08.765120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244727 MB].]LOG]!><time="09:46:08.797120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="09:46:08.812120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="09:46:08.828120" date="05-07-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="09:46:08.828120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="09:46:08.843120" date="05-07-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="09:46:08.843120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="09:46:08.875120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="09:46:08.890120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="09:46:08.906120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="09:46:08.968120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="09:46:15.255120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4444" file="Deploy-Application.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:48:35.812120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:48:35.812120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="09:48:35.890120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="09:48:35.906120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="09:48:35.921120" date="05-07-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="09:48:35.937120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="09:48:35.937120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="09:48:35.937120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="09:48:35.952120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="09:48:35.952120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="09:48:35.952120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="09:48:35.952120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="09:48:35.968120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="09:48:35.968120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="09:48:36.046120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="09:48:36.062120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="09:48:36.062120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="09:48:36.093120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:48:36.093120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 05/05/2015 15:46:21
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="09:48:36.389120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="09:48:36.405120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="09:48:36.405120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="09:48:36.405120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="09:48:36.420120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="09:48:36.420120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="09:48:36.436120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="09:48:36.436120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="09:48:36.452120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="09:48:36.467120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="09:48:36.467120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="09:48:36.467120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="09:48:36.483120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5604" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="09:48:36.529120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="09:48:36.545120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244727 MB].]LOG]!><time="09:48:36.576120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="09:48:36.592120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="09:48:36.607120" date="05-07-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="09:48:36.623120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="09:48:36.639120" date="05-07-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="09:48:36.639120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="09:48:36.670120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="09:48:36.685120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="09:48:36.701120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="09:48:36.763120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="09:48:42.972120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5604" file="Deploy-Application.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:53:45.588120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:53:45.588120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="09:53:45.743120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="09:53:46.039120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="09:53:46.102120" date="05-07-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="09:53:46.133120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="09:53:46.180120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="09:53:46.180120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="09:53:46.195120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="09:53:46.195120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="09:53:46.211120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="09:53:46.211120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="09:53:46.226120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="09:53:46.226120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="09:53:46.304120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="09:53:46.304120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="09:53:46.320120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="09:53:46.320120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="09:53:46.320120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 07/05/2015 09:44:23
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="09:53:46.865120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="09:53:46.881120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="09:53:46.881120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="09:53:46.881120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="09:53:46.912120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="09:53:46.927120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="09:53:46.927120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="09:53:46.927120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="09:53:47.099120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="09:53:47.114120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="09:53:47.146120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="09:53:47.146120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="09:53:47.146120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="5340" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="09:53:47.208120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="09:53:47.223120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244663 MB].]LOG]!><time="09:53:47.333120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="09:53:47.348120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="09:53:47.364120" date="05-07-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="09:53:47.364120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="09:53:47.379120" date="05-07-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="09:53:47.379120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="09:53:47.410120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="09:53:47.426120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="09:53:47.442120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execute [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] with the -kill argument...]LOG]!><time="09:53:47.597120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\Program Files (x86)\IBM\Lotus\Notes\NSD.Exe] returned exit code [].]LOG]!><time="09:53:54.686120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="5340" file="Deploy-Application.ps1">

when I launch the same script but manualy launching powershell in adminright and lauch the Deploy-Application.ps1 the script run fine as it should :

<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="11:05:30.170120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="11:05:30.170120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] setup started.]LOG]!><time="11:05:30.248120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\Deploy-Application.ps1]]LOG]!><time="11:05:30.279120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Script [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Cisco_WebEx_29.13_EN_01\AppDeployToolkit\AppDeployToolkitMain.ps1]]LOG]!><time="11:05:30.279120" date="05-07-2015" component="PSAppDeployToolkitExt" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitExtensions.ps1">
<![LOG[[Initialization] :: [Cisco_Webex_29.13_EN_01] script version is [1.0.0]]LOG]!><time="11:05:30.295120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [Deploy Application] script version is [3.6.3]]LOG]!><time="11:05:30.295120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.3]]LOG]!><time="11:05:30.311120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: [App Deploy Toolkit Extensions (PwC)] version is [2.2.2]]LOG]!><time="11:05:30.311120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Computer Name is [FRA7-PBPKEL0.fr.ema.ad.pwcinternal.com]]LOG]!><time="11:05:30.311120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current User is [XX\XXXXXXXXX]]LOG]!><time="11:05:30.311120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Version is [Microsoft Windowsย 7 Entreprise Service Pack 1 64-bit 6.1.7601.65536]]LOG]!><time="11:05:30.326120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: OS Type is [Workstation]]LOG]!><time="11:05:30.326120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current Culture is [fr-FR] and UI language is [FR]]LOG]!><time="11:05:30.326120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Hardware Platform is [Physical]]LOG]!><time="11:05:30.404120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Host is [ConsoleHost] with version [3.0]]LOG]!><time="11:05:30.420120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell Version is [3.0 x64]]LOG]!><time="11:05:30.420120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: PowerShell CLR (.NET) version is [4.0.30319.18444]]LOG]!><time="11:05:30.451120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: *******************************************************************************]LOG]!><time="11:05:30.467120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Display session information for all logged on users: 


NTAccount           : XX\XXXXXXXXX
SID                 : S-1-5-21-2500856291-355074790-2691697830-103255
UserName            : FR009647
DomainName          : FR
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : True
LogonTime           : 07/05/2015 09:44:23
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



]LOG]!><time="11:05:30.763120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following users are logged on to the system: [XX\XXXXXXXXX].]LOG]!><time="11:05:30.779120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Current process is running under a user account [XX\XXXXXXXXX].]LOG]!><time="11:05:30.779120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following user is the console user [XX\XXXXXXXXX] (user with control of physical monitor, keyboard, and mouse).]LOG]!><time="11:05:30.794120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user is [XX\XXXXXXXXX].]LOG]!><time="11:05:30.841120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a primary UI language of [FR].]LOG]!><time="11:05:30.857120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_FR].]LOG]!><time="11:05:30.857120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: The active logged on user [XX\XXXXXXXXX] has a DPI scale factor of [100] with DPI pixels [96].]LOG]!><time="11:05:30.857120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.]LOG]!><time="11:05:30.872120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [AUTORITE NT\Systรจme] account.]LOG]!><time="11:05:30.888120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Session 0 not detected.]LOG]!><time="11:05:30.888120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Installation is running in [Interactive] mode.]LOG]!><time="11:05:30.888120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Initialization] :: Deployment type is [Installation].]LOG]!><time="11:05:30.903120" date="05-07-2015" component="PSAppDeployToolkit" context="XX\XXXXXXXXX" type="1" thread="4676" file="AppDeployToolkitMain.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="11:05:30.935120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="11:05:30.950120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244159 MB].]LOG]!><time="11:05:30.981120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="11:05:30.997120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get deferral history...]LOG]!><time="11:05:31.013120" date="05-07-2015" component="Get-DeferHistory" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\].]LOG]!><time="11:05:31.028120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\PSAppDeployToolkit\DeferHistory\] does not exist.]LOG]!><time="11:05:31.028120" date="05-07-2015" component="Get-RegistryKey" context="XX\XXXXXXXXX" type="2" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has [9] deferrals remaining.]LOG]!><time="11:05:31.044120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="11:05:31.075120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: The following processes are running: [chrome,iexplore].]LOG]!><time="11:05:31.106120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Resolve process descriptions...]LOG]!><time="11:05:31.106120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="11:05:31.153120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Prompt user to close application(s) [Google Chrome,Internet Explorer]...]LOG]!><time="11:05:31.262120" date="05-07-2015" component="Show-WelcomePrompt" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User has the option to defer.]LOG]!><time="11:05:31.278120" date="05-07-2015" component="Show-WelcomePrompt" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: User selected to force the application(s) to close...]LOG]!><time="11:05:52.163120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.319120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.413120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.491120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.600120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process iexplore...]LOG]!><time="11:05:52.647120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process iexplore...]LOG]!><time="11:05:52.709120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.787120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.850120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.912120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process chrome...]LOG]!><time="11:05:52.974120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process iexplore...]LOG]!><time="11:05:53.052120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Stop process iexplore...]LOG]!><time="11:05:53.115120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="11:05:55.127120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="11:05:55.158120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="11:05:55.158120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [-BlockExecution] parameter specified.]LOG]!><time="11:05:55.236120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create scheduled task to cleanup blocked applications in case installation is interrupted.]LOG]!><time="11:05:55.283120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve Scheduled Tasks...]LOG]!><time="11:05:55.299120" date="05-07-2015" component="Get-ScheduledTask" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [C:\WINDOWS\System32\schtasks.exe] is a valid fully qualified path, continue.]LOG]!><time="11:05:57.015120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Working Directory is [C:\WINDOWS\System32].]LOG]!><time="11:05:57.046120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing [C:\WINDOWS\System32\schtasks.exe /create /f /tn Cisco_Webex_29.13_EN_01_BlockedApps /xml "C:\Users\Public\PSAppDeployToolkit\SchTaskUnBlockApps.xml"]...]LOG]!><time="11:05:57.062120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execution completed with exit code [0].]LOG]!><time="11:05:57.779120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [iexplore.exe].]LOG]!><time="11:05:57.795120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe].]LOG]!><time="11:05:57.810120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.826120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [chrome.exe].]LOG]!><time="11:05:57.826120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\chrome.exe].]LOG]!><time="11:05:57.841120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\chrome.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.857120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [firefox.exe].]LOG]!><time="11:05:57.857120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\firefox.exe].]LOG]!><time="11:05:57.873120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\firefox.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.873120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [WinWord.exe].]LOG]!><time="11:05:57.888120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WinWord.exe].]LOG]!><time="11:05:57.904120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WinWord.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.904120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [Excel.exe].]LOG]!><time="11:05:57.919120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Excel.exe].]LOG]!><time="11:05:57.919120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Excel.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.935120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [PowerPnt.exe].]LOG]!><time="11:05:57.935120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\PowerPnt.exe].]LOG]!><time="11:05:57.951120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\PowerPnt.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:57.966120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [notes2.exe].]LOG]!><time="11:05:57.966120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2.exe].]LOG]!><time="11:05:57.982120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2.exe].]LOG]!><time="11:05:57.997120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.013120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [nminder.exe].]LOG]!><time="11:05:58.013120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nminder.exe].]LOG]!><time="11:05:58.029120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nminder.exe].]LOG]!><time="11:05:58.029120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nminder.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.044120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [ntaskldr.exe].]LOG]!><time="11:05:58.044120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ntaskldr.exe].]LOG]!><time="11:05:58.060120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ntaskldr.exe].]LOG]!><time="11:05:58.075120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ntaskldr.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.075120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [notes2w.exe].]LOG]!><time="11:05:58.091120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2w.exe].]LOG]!><time="11:05:58.107120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2w.exe].]LOG]!><time="11:05:58.107120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes2w.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.122120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [notes.exe].]LOG]!><time="11:05:58.122120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes.exe].]LOG]!><time="11:05:58.138120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes.exe].]LOG]!><time="11:05:58.153120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notes.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.153120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [sametime75.exe].]LOG]!><time="11:05:58.169120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sametime75.exe].]LOG]!><time="11:05:58.185120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sametime75.exe].]LOG]!><time="11:05:58.185120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\sametime75.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.200120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [soffice.exe].]LOG]!><time="11:05:58.200120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\soffice.exe].]LOG]!><time="11:05:58.216120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\soffice.exe].]LOG]!><time="11:05:58.216120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\soffice.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.231120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [swiftsrv.exe].]LOG]!><time="11:05:58.247120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\swiftsrv.exe].]LOG]!><time="11:05:58.247120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\swiftsrv.exe].]LOG]!><time="11:05:58.263120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\swiftsrv.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.263120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [nNOTESMM.exe].]LOG]!><time="11:05:58.278120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nNOTESMM.exe].]LOG]!><time="11:05:58.294120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nNOTESMM.exe].]LOG]!><time="11:05:58.294120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nNOTESMM.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.309120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [nsd.exe].]LOG]!><time="11:05:58.309120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nsd.exe].]LOG]!><time="11:05:58.325120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nsd.exe].]LOG]!><time="11:05:58.341120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nsd.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.341120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [wnsd.exe].]LOG]!><time="11:05:58.356120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wnsd.exe].]LOG]!><time="11:05:58.372120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wnsd.exe].]LOG]!><time="11:05:58.372120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wnsd.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.387120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set the Image File Execution Option registry key to block execution of [ComplianceFramework.Plugin.Tray.exe.exe].]LOG]!><time="11:05:58.387120" date="05-07-2015" component="Block-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ComplianceFramework.Plugin.Tray.exe.exe].]LOG]!><time="11:05:58.403120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ComplianceFramework.Plugin.Tray.exe.exe].]LOG]!><time="11:05:58.403120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ComplianceFramework.Plugin.Tray.exe.exe] [Debugger = wscript.exe "C:\Users\Public\PSAppDeployToolkit\AppDeployToolkit_BlockAppExecutionMessage.vbs"].]LOG]!><time="11:05:58.419120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Evaluate disk space requirements.]LOG]!><time="11:05:58.434120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Retrieve free disk space for drive [C:].]LOG]!><time="11:05:58.434120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Free disk space for drive [C:]: [244160 MB].]LOG]!><time="11:05:58.450120" date="05-07-2015" component="Get-FreeDiskSpace" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Successfully passed minimum disk space requirement check.]LOG]!><time="11:05:58.481120" date="05-07-2015" component="Show-InstallationWelcome" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check for running application(s) [iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe]...]LOG]!><time="11:05:58.481120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Application(s) are not running.]LOG]!><time="11:05:58.497120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Finished checking running application(s).]LOG]!><time="11:05:58.497120" date="05-07-2015" component="Get-RunningProcesses" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Dรฉsinstallation des anciennes versions de Cisco WebEx...]LOG]!><time="11:05:58.528120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Installation en cours.].]LOG]!><time="11:05:58.559120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Spin up progress dialog in a separate thread with message: [Dรฉsinstallation des anciennes versions de Cisco WebEx en cours. Veuillez patienter...].]LOG]!><time="11:05:58.731120" date="05-07-2015" component="Show-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Dรฉsinstallation des anciennes versions de Cisco WebEx en cours.].]LOG]!><time="11:05:59.819120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get information for installed Application Name(s) [Webex]...]LOG]!><time="11:05:59.862120" date="05-07-2015" component="Get-InstalledApplication" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: No applications found for removal. Continue...]LOG]!><time="11:06:00.372120" date="05-07-2015" component="Remove-MSIApplications" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Cisco WebEx = Dรฉsinstallation terminรฉe avec succรฉs !]LOG]!><time="11:06:00.377120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Cisco WebEx Meeting Center pour Internet Explorer...]LOG]!><time="11:06:00.381120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Update progress message: [Installation de Cisco WebEx Meeting Center pour Internet Explorer en cours. Veuillez patienter...].]LOG]!><time="11:06:01.413120" date="05-07-2015" component="Show-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Installation de Cisco WebEx Meeting Center pour Internet Explorer en cours.].]LOG]!><time="11:06:01.752120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get properties from MSI file [C:\Cisco_WebEx_29.13_EN_01\Files\atmcie.msi] in table [Property].]LOG]!><time="11:06:01.845120" date="05-07-2015" component="Get-MsiTableProperty" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get information for installed Product Code [{BFD3EAB5-CD12-44C8-A86F-ED1A1BECCA67}]...]LOG]!><time="11:06:02.080120" date="05-07-2015" component="Get-InstalledApplication" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing MSI action [Install]...]LOG]!><time="11:06:02.517120" date="05-07-2015" component="Execute-MSI" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [msiexec.exe] successfully resolved to fully qualified path [C:\WINDOWS\system32\msiexec.exe].]LOG]!><time="11:06:02.571120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check to see if mutex [Global\_MSIExecute] is available. Wait up to [10 minute(s)] for the mutex to become available.]LOG]!><time="11:06:02.604120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Mutex [Global\_MSIExecute] is available for an exclusive lock.]LOG]!><time="11:06:02.615120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Working Directory is [C:\Cisco_WebEx_29.13_EN_01\Files].]LOG]!><time="11:06:03.643120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing [C:\WINDOWS\system32\msiexec.exe /i "C:\Cisco_WebEx_29.13_EN_01\Files\atmcie.msi" REBOOT=ReallySuppress /QB-! /L*v "C:\WINDOWS\Logs\Software\atmcie_Install.log"]...]LOG]!><time="11:06:03.653120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execution completed successfully with exit code [0].]LOG]!><time="11:06:10.116120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Cisco WebEx Meeting Center pour Internet Explorer = Installation terminรฉe avec succรฉs !]LOG]!><time="11:06:10.123120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Cisco WebEx Meeting Center pour Chrome...]LOG]!><time="11:06:10.131120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Update progress message: [Installation de Cisco WebEx Meeting Center pour Chrome en cours. Veuillez patienter...].]LOG]!><time="11:06:11.147120" date="05-07-2015" component="Show-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Installation de Cisco WebEx Meeting Center pour Chrome en cours.].]LOG]!><time="11:06:11.429120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get properties from MSI file [C:\Cisco_WebEx_29.13_EN_01\Files\atmcns.msi] in table [Property].]LOG]!><time="11:06:11.492120" date="05-07-2015" component="Get-MsiTableProperty" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get information for installed Product Code [{AFE15DED-2492-4931-AE9D-49334130AAE3}]...]LOG]!><time="11:06:11.901120" date="05-07-2015" component="Get-InstalledApplication" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing MSI action [Install]...]LOG]!><time="11:06:12.340120" date="05-07-2015" component="Execute-MSI" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [msiexec.exe] successfully resolved to fully qualified path [C:\WINDOWS\system32\msiexec.exe].]LOG]!><time="11:06:12.383120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check to see if mutex [Global\_MSIExecute] is available. Wait up to [10 minute(s)] for the mutex to become available.]LOG]!><time="11:06:12.391120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Mutex [Global\_MSIExecute] is available for an exclusive lock.]LOG]!><time="11:06:12.400120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Working Directory is [C:\Cisco_WebEx_29.13_EN_01\Files].]LOG]!><time="11:06:13.411120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing [C:\WINDOWS\system32\msiexec.exe /i "C:\Cisco_WebEx_29.13_EN_01\Files\atmcns.msi" REBOOT=ReallySuppress /QB-! /L*v "C:\WINDOWS\Logs\Software\atmcns_Install.log"]...]LOG]!><time="11:06:13.420120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execution completed successfully with exit code [0].]LOG]!><time="11:06:20.900120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Cisco WebEx Meeting Center pour Chrome = Installation terminรฉe avec succรฉs !]LOG]!><time="11:06:20.906120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Cisco WebEx Recorder and Player...]LOG]!><time="11:06:20.911120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Update progress message: [Installation de Cisco WebEx Recorder and Player en cours. Veuillez patienter...].]LOG]!><time="11:06:21.927120" date="05-07-2015" component="Show-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Installation de Cisco WebEx Recorder and Player en cours.].]LOG]!><time="11:06:22.218120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get properties from MSI file [C:\Cisco_WebEx_29.13_EN_01\Files\atrecply.msi] in table [Property].]LOG]!><time="11:06:22.278120" date="05-07-2015" component="Get-MsiTableProperty" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Get information for installed Product Code [{8CB163C9-AFD9-4045-B4FC-333DBD1E95A7}]...]LOG]!><time="11:06:22.355120" date="05-07-2015" component="Get-InstalledApplication" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing MSI action [Install]...]LOG]!><time="11:06:22.803120" date="05-07-2015" component="Execute-MSI" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [msiexec.exe] successfully resolved to fully qualified path [C:\WINDOWS\system32\msiexec.exe].]LOG]!><time="11:06:22.846120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Check to see if mutex [Global\_MSIExecute] is available. Wait up to [10 minute(s)] for the mutex to become available.]LOG]!><time="11:06:22.855120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Mutex [Global\_MSIExecute] is available for an exclusive lock.]LOG]!><time="11:06:22.861120" date="05-07-2015" component="Test-IsMutexAvailable" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Working Directory is [C:\Cisco_WebEx_29.13_EN_01\Files].]LOG]!><time="11:06:23.882120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing [C:\WINDOWS\system32\msiexec.exe /i "C:\Cisco_WebEx_29.13_EN_01\Files\atrecply.msi" REBOOT=ReallySuppress /QB-! /L*v "C:\WINDOWS\Logs\Software\atrecply_Install.log"]...]LOG]!><time="11:06:23.890120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execution completed successfully with exit code [0].]LOG]!><time="11:06:26.260120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Cisco WebEx Recorder and Player = Installation terminรฉe avec succรฉs !]LOG]!><time="11:06:26.265120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Desktop Tools for WebEx...]LOG]!><time="11:06:26.270120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Update progress message: [Installation de Desktop Tools for WebEx en cours. Veuillez patienter...].]LOG]!><time="11:06:27.292120" date="05-07-2015" component="Show-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Display balloon tip notification with message [Installation de Desktop Tools for WebEx en cours.].]LOG]!><time="11:06:27.567120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: [VCIDesktopTools.exe] successfully resolved to fully qualified path [C:\Cisco_WebEx_29.13_EN_01\Files\VCIDesktopTools.exe].]LOG]!><time="11:06:27.725120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Working Directory is [C:\Cisco_WebEx_29.13_EN_01\Files].]LOG]!><time="11:06:27.731120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Executing [C:\Cisco_WebEx_29.13_EN_01\Files\VCIDesktopTools.exe /S]...]LOG]!><time="11:06:27.736120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Execution completed successfully with exit code [0].]LOG]!><time="11:07:49.976120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Installation de Desktop Tools for WebEx = Installation terminรฉe avec succรฉs !]LOG]!><time="11:07:49.981120" date="05-07-2015" component="" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:49.995120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Create registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:50.002120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01] [Manufacturer = Cisco].]LOG]!><time="11:07:50.008120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:50.022120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01] [ProductName = Webex].]LOG]!><time="11:07:50.029120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:50.058120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01] [ProductVersion = 29.13].]LOG]!><time="11:07:50.064120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:50.079120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01] [PWCLang = EN].]LOG]!><time="11:07:50.086120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01].]LOG]!><time="11:07:50.101120" date="05-07-2015" component="Convert-RegistryPath" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Pre-Installation] :: Set registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PwC\SW\Cisco_Webex_29.13_EN_01] [PWCRelease = 01].]LOG]!><time="11:07:50.107120" date="05-07-2015" component="Set-RegistryKey" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Close the installation progress dialog.]LOG]!><time="11:07:50.241120" date="05-07-2015" component="Close-InstallationProgress" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Displaying custom installation prompt with the non-default parameters: [-NoWait:$true -Icon "Information" -ButtonMiddleText "Ok" -Message "Cisco Webex 29.13 a รฉtรฉ installรฉ avec succรจs. 

                Merci de votre patience."].]LOG]!><time="11:07:50.280120" date="05-07-2015" component="Show-InstallationPrompt" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [chrome.exe].]LOG]!><time="11:07:50.420120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [ComplianceFramework.Plugin.Tray.exe.exe].]LOG]!><time="11:07:50.436120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [excel.exe].]LOG]!><time="11:07:50.436120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [firefox.exe].]LOG]!><time="11:07:50.452120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [iexplore.exe].]LOG]!><time="11:07:50.452120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [nminder.exe].]LOG]!><time="11:07:50.467120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [nNOTESMM.exe].]LOG]!><time="11:07:50.467120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [notes.exe].]LOG]!><time="11:07:50.467120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [notes2.exe].]LOG]!><time="11:07:50.483120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [notes2w.exe].]LOG]!><time="11:07:50.483120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [nsd.exe].]LOG]!><time="11:07:50.498120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [ntaskldr.exe].]LOG]!><time="11:07:50.498120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [powerpnt.exe].]LOG]!><time="11:07:50.514120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [sametime75.exe].]LOG]!><time="11:07:50.514120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [soffice.exe].]LOG]!><time="11:07:50.530120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [swiftsrv.exe].]LOG]!><time="11:07:50.530120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [Winword.exe].]LOG]!><time="11:07:50.530120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Remove the Image File Execution Options registry key to unblock execution of [wnsd.exe].]LOG]!><time="11:07:50.545120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Retrieve Scheduled Tasks...]LOG]!><time="11:07:50.608120" date="05-07-2015" component="Get-ScheduledTask" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Delete Scheduled Task [Cisco_Webex_29.13_EN_01_BlockedApps].]LOG]!><time="11:07:52.199120" date="05-07-2015" component="Unblock-AppExecution" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: [C:\WINDOWS\System32\schtasks.exe] is a valid fully qualified path, continue.]LOG]!><time="11:07:52.214120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Working Directory is [C:\WINDOWS\System32].]LOG]!><time="11:07:52.230120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Executing [C:\WINDOWS\System32\schtasks.exe /Delete /TN Cisco_Webex_29.13_EN_01_BlockedApps /F]...]LOG]!><time="11:07:52.230120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Execution completed successfully with exit code [0].]LOG]!><time="11:07:52.916120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Cisco_Webex_29.13_EN_01 Installation completed with exit code [0].]LOG]!><time="11:07:52.948120" date="05-07-2015" component="Exit-Script" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Display balloon tip notification asyhchronously with message [Installation rรฉussie.].]LOG]!><time="11:07:52.979120" date="05-07-2015" component="Show-BalloonTip" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: [C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe] is a valid fully qualified path, continue.]LOG]!><time="11:07:52.994120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Working Directory is [C:\windows\System32\WindowsPowerShell\v1.0].]LOG]!><time="11:07:52.994120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: Executing [C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe [PowerShell ScriptBlock]]...]LOG]!><time="11:07:52.994120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: NoWait parameter specified. Continuing without waiting for exit code...]LOG]!><time="11:07:53.010120" date="05-07-2015" component="Execute-Process" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">
<![LOG[[Post-Installation] :: -------------------------------------------------------------------------------]LOG]!><time="11:07:53.010120" date="05-07-2015" component="Exit-Script" context="XX\XXXXXXXXX" type="1" thread="4676" file="Deploy-Application.ps1">

Here is the script :

<#
.SYNOPSIS
    This script performs the installation or uninstallation of an application(s).
.DESCRIPTION
    The script is provided as a template to perform an install or uninstall of an application(s).
    The script either performs an "Install" deployment type or an "Uninstall" deployment type.
    The install deployment type is broken down into 3 main sections/phases: Pre-Install, Install, and Post-Install.
    The script dot-sources the AppDeployToolkitMain.ps1 script which contains the logic and functions required to install or uninstall an application.
.PARAMETER DeploymentType
    The type of deployment to perform. Default is: Install.
.PARAMETER DeployMode
    Specifies whether the installation should be run in Interactive, Silent, or NonInteractive mode. Default is: Interactive. Options: Interactive = Shows dialogs, Silent = No dialogs, NonInteractive = Very silent, i.e. no blocking apps. NonInteractive mode is automatically set if it is detected that the process is not user interactive.
.PARAMETER AllowRebootPassThru
    Allows the 3010 return code (requires restart) to be passed back to the parent process (e.g. SCCM) if detected from an installation. If 3010 is passed back to SCCM, a reboot prompt will be triggered.
.PARAMETER TerminalServerMode
    Changes to "user install mode" and back to "user execute mode" for installing/uninstalling applications for Remote Destkop Session Hosts/Citrix servers.
.PARAMETER DisableLogging
    Disables logging to file for the script. Default is: $false.
.EXAMPLE
    Deploy-Application.ps1
.EXAMPLE
    Deploy-Application.ps1 -DeployMode 'Silent'
.EXAMPLE
    Deploy-Application.ps1 -AllowRebootPassThru -AllowDefer
.EXAMPLE
    Deploy-Application.ps1 -DeploymentType Uninstall
.NOTES
    Toolkit Exit Code Ranges:
    60000 - 68999: Reserved for built-in exit codes in Deploy-Application.ps1, Deploy-Application.exe, and AppDeployToolkitMain.ps1
    69000 - 69999: Recommended for user customized exit codes in Deploy-Application.ps1
    70000 - 79999: Recommended for user customized exit codes in AppDeployToolkitExtensions.ps1
.LINK 
    http://psappdeploytoolkit.codeplex.com
#>
[CmdletBinding()]
Param (
    [Parameter(Mandatory=$false)]
    [ValidateSet('Install','Uninstall')]
    [string]$DeploymentType = 'Install',
    [Parameter(Mandatory=$false)]
    [ValidateSet('Interactive','Silent','NonInteractive')]
    [string]$DeployMode = 'Interactive',
    [Parameter(Mandatory=$false)]
    [switch]$AllowRebootPassThru = $false,
    [Parameter(Mandatory=$false)]
    [switch]$TerminalServerMode = $false,
    [Parameter(Mandatory=$false)]
    [switch]$DisableLogging = $false
)

Try {
    ## Set the script execution policy for this process
    Try { Set-ExecutionPolicy -ExecutionPolicy 'ByPass' -Scope 'Process' -Force -ErrorAction 'Stop' } Catch {}

    ##*===============================================
    ##* VARIABLE DECLARATION
    ##*===============================================
    ## Variables: Application
    $appVendor = "Cisco"
    $appName = "Webex"
    $appVersion = "29.13"
    $appArch = ""
    $appLang = "EN"
    $appRevision = "01"
    $appScriptVersion = "1.0.0"
    $appScriptDate = "05/05/2015"
    $appScriptAuthor = "EBX Proservia"
    ##*===============================================


    ##* Do not modify section below
    #region DoNotModify


    ## Variables: Exit Code
    [int32]$mainExitCode = 0


    ## Variables: Script
    [string]$deployAppScriptFriendlyName = 'Deploy Application'
    [version]$deployAppScriptVersion = [version]'3.6.3'
    [string]$deployAppScriptDate = '04/29/2015'
    [hashtable]$deployAppScriptParameters = $psBoundParameters


    ## Variables: Environment
    [string]$scriptDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent


    ## Dot source the required App Deploy Toolkit Functions
    Try {
        [string]$moduleAppDeployToolkitMain = "$scriptDirectory\AppDeployToolkit\AppDeployToolkitMain.ps1"
        If (-not (Test-Path -Path $moduleAppDeployToolkitMain -PathType Leaf)) { Throw "Module does not exist at the specified location [$moduleAppDeployToolkitMain]." }
        If ($DisableLogging) { . $moduleAppDeployToolkitMain -DisableLogging } Else { . $moduleAppDeployToolkitMain }
    }
    Catch {
        [int32]$mainExitCode = 60008
        Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
        Exit $mainExitCode
    }


    ##*===============================================
    #* PwC FR 
    #* (Pas de modification sans validaton par les membres de l'รฉquipe")
    ##*===============================================
    #."$scriptDirectory\AppDeployToolkit\AppDeployToolkitPwCFR.ps1"


    ##*===============================================
    #* PwC FR   
    #* Platform Versions
    #* Facultatif
    ##*===============================================
    If ($envOS.version -eq "6.1.7601") 
        {
        $Platform7 = $True
        }

    ElseIf ($envOS.version -eq "6.3.9600") 
        {
        $Platform8 = $True
        }

    Else 
        {
        $Platform7 = $False
        $Platform8 = $False
        }


    #endregion
    ##* Do not modify section above
    ##*===============================================
    ##* END VARIABLE DECLARATION
    ##*===============================================

    If ($deploymentType -ine 'Uninstall') {
        ##*===============================================
        ##* PRE-INSTALLATION
        ##*===============================================
        [string]$installPhase = 'Pre-Installation'

            #*===============================================
            #* PwC FR
            #* Le "-BlockExecution" est obligatoire
            #* Le "-AllowDefer -DeferTimes 10" est obligatoire
            #*===============================================
            If ($DeployMode -eq "Interactive")
                {   
                Show-InstallationWelcome -CloseApps "iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe" -BlockExecution -AllowDeferCloseApps -DeferTimes "10" -CheckDiskSpace -PersistPrompt
                }

            If ($DeployMode -eq "NonInteractive" -or "Silent")
                {   
                Show-InstallationWelcome -CloseApps "iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe" -Silent -CheckDiskSpace -PersistPrompt
                }

        ## <Perform Pre-Installation tasks here>


        ##*===============================================
        ##* INSTALLATION 
        ##*===============================================
            #*===============================================
            #* PwC FR
            #* Facultatif
            #* Dรฉsinstallation de l'application Desktop Tools for WebEx
            #*===============================================
            # Suppression d'une application prรฉsente dans l'ajout suppression de programme avec une version particuliรฉre :
            # If ((Get-InstalledApplication -Name "$AddRemoveProgName" | Where {$_.DisplayVersion -lt "Version"})) 

            # Suppression d'une application prรฉsente dans l'ajout suppression de programme avec une ProductCode particulier :
            # If ((Get-InstalledApplication -Name "$AddRemoveProgName" | Where {$_.ProductCode -match "{ProductCode}"}))



            If (($DeployMode -eq "Interactive") -and (Test-Path "$envProgramFilesX86\VCI, Inc\DTUninstall.exe"))
                {
                Write-Log "Dรฉsinstallation des anciennes de versions de Desktop Tools for WebEx......"

                Show-InstallationProgress "Dรฉsinstallation des anciennes versions de Desktop Tools for WebEx en cours. Veuillez patienter..." -TopMost $false
                Show-BalloonTip -BalloonTipText "Dรฉsinstallation des anciennes versions de Desktop Tools for WebEx en cours." -BalloonTipTitle "Veuillez patienter"

                Execute-Process -FilePath "$envProgramFilesX86\VCI, Inc\DTUninstall.exe" -Arguments "/S"

                Write-Log " Desktop Tools for WebEx = Dรฉsinstallation terminรฉe avec succรฉs !"
                }



            # =====================================
            # Suppression des raccourcis sur le bureau
            # =====================================
            If (Test-Path "$envPublic\Desktop\WebEx Recorder.lnk")
                {
                Remove-Item -Path "$envPublic\Desktop\WebEx Recorder.lnk" -ErrorAction SilentlyContinue
                }


            If (Test-Path "$envPublic\Desktop\WebEx Recording Editor.lnk")
                {
                Remove-Item -Path "$envPublic\Desktop\WebEx Recording Editor.lnk" -ErrorAction SilentlyContinue
                }


            If (Test-Path "$envPublic\Desktop\WebEx Player.lnk")
                {
                Remove-Item -Path "$envPublic\Desktop\WebEx Player.lnk" -ErrorAction SilentlyContinue
                }

            # =========================================================
            # Facultatif
            # Dรฉsinstallation de l'application
            # Dans la plupart des cas il est prรฉfรฉrable de dรฉsinstaller 
            # toutes les versions trouvรฉes sur le poste de travail.
            # =========================================================
            If ($DeployMode -eq "Interactive")
                {
                Write-Log "Dรฉsinstallation des anciennes versions de Cisco WebEx..."

                Show-InstallationProgress "Dรฉsinstallation des anciennes versions de Cisco WebEx en cours. Veuillez patienter..." -TopMost $false
                Show-BalloonTip -BalloonTipText "Dรฉsinstallation des anciennes versions de Cisco WebEx en cours." -BalloonTipTitle "Veuillez patienter"

                Remove-MSIApplications "Webex"

                Write-Log "Cisco WebEx = Dรฉsinstallation terminรฉe avec succรฉs !"
                }



            #*===============================================
            #* PwC FR
            #* Obligatoire
            #* Installation de l'application
            #*===============================================


            # ==========================================
            # Obligatoire
            # Installation de Cisco WebEx Meeting Center for Internet Explorer
            # ==========================================
            Write-Log "Installation de Cisco WebEx Meeting Center pour Internet Explorer..."

            Show-InstallationProgress "Installation de Cisco WebEx Meeting Center pour Internet Explorer en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Installation de Cisco WebEx Meeting Center pour Internet Explorer en cours." -BalloonTipTitle "Veuillez patienter"

            Execute-MSI -Action Install -Path "atmcie.msi"

            Write-Log "Cisco WebEx Meeting Center pour Internet Explorer = Installation terminรฉe avec succรฉs !"


            # ==========================================
            # Obligatoire
            # Installation de Cisco WebEx Meeting Center for Firefox or Chrome
            # ==========================================
            Write-Log "Installation de Cisco WebEx Meeting Center pour Chrome..."

            Show-InstallationProgress "Installation de Cisco WebEx Meeting Center pour Chrome en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Installation de Cisco WebEx Meeting Center pour Chrome en cours." -BalloonTipTitle "Veuillez patienter"

            Execute-MSI -Action Install -Path "atmcns.msi"

            Write-Log "Installation de Cisco WebEx Meeting Center pour Chrome = Installation terminรฉe avec succรฉs !"


            # ==========================================
            # Obligatoire
            # Installation de Cisco WebEx Recorder and Player
            # ==========================================
            Write-Log "Installation de Cisco WebEx Recorder and Player..."

            Show-InstallationProgress "Installation de Cisco WebEx Recorder and Player en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Installation de Cisco WebEx Recorder and Player en cours." -BalloonTipTitle "Veuillez patienter"

            Execute-MSI -Action Install -Path "atrecply.msi"

            Write-Log "Installation de Cisco WebEx Recorder and Player = Installation terminรฉe avec succรฉs !"


            # ==========================================
            # Obligatoire
            # Installation de Desktop Tools for WebEx
            # ==========================================
            Write-Log "Installation de Desktop Tools for WebEx..."

            Show-InstallationProgress "Installation de Desktop Tools for WebEx en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Installation de Desktop Tools for WebEx en cours." -BalloonTipTitle "Veuillez patienter"

            Execute-Process -FilePath "VCIDesktopTools.exe" -Arguments "/S"

            Write-Log "Installation de Desktop Tools for WebEx = Installation terminรฉe avec succรฉs !"

            #*===============================================
            #* PwC FR
            #* Obligatoire
            #* Ajout d'une clรฉ de registre pour la dรฉtection dans SCCM 2012
            #* ou la signature d'installation sur le poste de  travail
            #*===============================================
            Set-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Name "Manufacturer" -Value "$appVendor" -Type String
            Set-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Name "ProductName" -Value "$appName" -Type String
            Set-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Name "ProductVersion" -Value "$appVersion" -Type String
            Set-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Name "PWCLang" -Value "$appLang" -Type String
            Set-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Name "PWCRelease" -Value "$appRevision" -Type String


        ##*===============================================
        ##* POST-INSTALLATION
        ##*===============================================
        [string]$installPhase = 'Post-Installation'

            #*===============================================
            #* PwC FR
            #* Obligatoire (ร  l'exception des scripts de maintenance)
            #* Message de Succรฉs d'installation
            #*===============================================
            If (($DeployMode -eq "Interactive") -and (-not $useDefaultMsi))
                {
                Show-InstallationPrompt -Message "$appVendor $appName $appVersion a รฉtรฉ installรฉ avec succรจs. 

                Merci de votre patience." -ButtonMiddleText "Ok" -Icon Information -NoWait
                }


            #*===============================================
            #* PwC FR
            #* Facultatif
            #* Si un reboot du poste est nรฉcรฉssaire aprรฉs l'installation 
            #* de l'application, le popup de succรฉs doit รฉtre supprimรฉ.
            #*===============================================
            #* If (($DeployMode -eq "Interactive") -and (-not $useDefaultMsi))
                #* {
                #* Show-BalloonTip -BalloonTipText "$appVendor $appName $appVersion a รฉtรฉ installรฉ avec succรจs." -BalloonTipTitle "Merci de votre patience"

                #* Show-InstallationRestartPrompt -Countdownseconds 600 -CountdownNoHideSeconds 60
                #* }

        ## Display a message at the end of the install


    }
    ElseIf ($deploymentType -ieq 'Uninstall')
    {
        ##*===============================================
        ##* PRE-UNINSTALLATION
        ##*===============================================
        [string]$installPhase = 'Pre-Uninstallation'

            #*===============================================
            #* PwC FR
            #* Le "-BlockExecution" est obligatoire
            #* Le "-AllowDefer -DeferTimes 10" est obligatoire
            #*===============================================
            If ($DeployMode -eq "Interactive")
                {   
                Show-InstallationWelcome -CloseApps "iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe" -BlockExecution -AllowDeferCloseApps -DeferTimes "10" -CheckDiskSpace -PersistPrompt
                }

            If ($DeployMode -eq "NonInteractive" -or "Silent")
                {   
                Show-InstallationWelcome -CloseApps "iexplore,chrome,firefox,WinWord,Excel,PowerPnt,notes2,nminder,ntaskldr,notes2w,notes,sametime75,soffice,swiftsrv,nNOTESMM,nsd,wnsd,ComplianceFramework.Plugin.Tray.exe" -Silent -CheckDiskSpace -PersistPrompt
                }

        ## <Perform Pre-Uninstallation tasks here>


        ##*===============================================
        ##* UNINSTALLATION
        ##*===============================================
        [string]$installPhase = 'Uninstallation'
            # =========================================================
            # Facultatif
            # Dรฉsinstallation de l'application Desktop Tools for WebEx
            # =========================================================
            If (($DeployMode -eq "Interactive") -and (Test-Path "$envProgramFilesX86\VCI, Inc\DTUninstall.exe"))
                {
            Write-Log "Dรฉsinstallation des anciennes versions de Desktop Tools for WebEx..."

            Show-InstallationProgress "Dรฉsinstallation des anciennes versions de Desktop Tools for WebEx en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Dรฉsinstallation des anciennes versions de Desktop Tools for WebEx en cours." -BalloonTipTitle "Veuillez patienter"

            Execute-Process -FilePath "$envProgramFilesX86\VCI, Inc\DTUninstall.exe" -Arguments "/S"

            Write-Log "Desktop Tools for WebEx = Dรฉsinstallation terminรฉe avec succรฉs !"
                }


            # =========================================================
            # Facultatif
            # Dรฉsinstallation de l'application
            # Dans la plupart des cas il est prรฉfรฉrable de dรฉsinstaller 
            # toutes les versions trouvรฉes sur le poste de travail.
            # =========================================================
            If ($DeployMode -eq "Interactive")
                {
            Write-Log "Dรฉsinstallation des anciennes versions de Cisco WebEx..."

            Show-InstallationProgress "Dรฉsinstallation des anciennes versions de Cisco WebEx en cours. Veuillez patienter..." -TopMost $false
            Show-BalloonTip -BalloonTipText "Dรฉsinstallation des anciennes versions de Cisco WebEx en cours." -BalloonTipTitle "Veuillez patienter"

            Remove-MSIApplications "Webex"

            Write-Log "Cisco WebEx = Dรฉsinstallation terminรฉe avec succรฉs !"
                }


            # =====================================
            # Suppression des raccourcis sur le bureau
            # =====================================
            If (Test-Path "$envPublic\Desktop\WebEx Recorder.lnk")
                {
            Remove-Item -Path "$envPublic\Desktop\WebEx Recorder.lnk" -ErrorAction SilentlyContinue
                }


            If (Test-Path "$envPublic\Desktop\WebEx Recording Editor.lnk")
                {
            Remove-Item -Path "$envPublic\Desktop\WebEx Recording Editor.lnk" -ErrorAction SilentlyContinue
                }


            If (Test-Path "$envPublic\Desktop\WebEx Player.lnk")
                {
            Remove-Item -Path "$envPublic\Desktop\WebEx Player.lnk" -ErrorAction SilentlyContinue
                }


            # ==========================================
            # Obligatoire
            # Supression de la clรฉ de registre pour la dรฉtection dans SCCM 2012
            # ==========================================
            Remove-RegistryKey -Key "HKLM:\SOFTWARE\Wow6432Node\PwC\SW\$installName" -Recurse


        ##*===============================================
        ##* POST-UNINSTALLATION
        ##*===============================================
        [string]$installPhase = 'Post-Uninstallation'

            #*===============================================
            #* PwC FR
            #* Obligatoire (ร  l'exception des scripts de maintenance)
            #* Message de Succรฉs de dรฉsinstallation
            #*===============================================
            If ($DeployMode -eq "Interactive")
                {
                Show-InstallationPrompt -Message "$appVendor $appName a รฉtรฉ dรฉsinstallรฉ avec succรจs. 

                Merci de votre patience." -ButtonMiddleText "Ok" -Icon Information -NoWait
                }


            #*===============================================
            #* PwC FR
            #* Facultatif
            #* Si un reboot du poste est nรฉcรฉssaire aprรฉs l'installation 
            #* de l'application, le popup de succรฉs doit รฉtre supprimรฉ.
            #*===============================================
            #* If ($DeployMode -eq "Interactive")
                #* {
                #* Show-BalloonTip -BalloonTipText "$appVendor $appName a รฉtรฉ dรฉsinstallรฉ avec succรจs." -BalloonTipTitle "Merci de votre patience"

                #* Show-InstallationRestartPrompt -Countdownseconds 600 -CountdownNoHideSeconds 60
                #* }


        ## <Perform Post-Uninstallation tasks here>


    }

    ##*===============================================
    ##* END SCRIPT BODY
    ##*===============================================

    ## Call the Exit-Script function to perform final cleanup operations
    Exit-Script -ExitCode $mainExitCode
}
Catch {
    [int32]$mainExitCode = 60001
    [string]$mainErrorMessage = "$(Resolve-Error)"
    Write-Log -Message $mainErrorMessage -Severity 3 -Source $deployAppScriptFriendlyName
    Show-DialogBox -Text $mainErrorMessage -Icon 'Stop'
    Exit-Script -ExitCode $mainExitCode
}

when I comment 'show-welcome' everythings run well
I have tried also in 3.6.2 I have the same behaviour
In 3.2 it seems to work correctly

Thanks in advance
Michel Manceron

TopMost option from Show-InstallationWelcome not working

I have the installation script set with the following parameters for Show-InstallationWelcome:

Show-InstallationWelcome -CloseApps 'iexplore,winword,notepad' -PromptToSave -AllowDeferCloseApps -ForceCloseAppsCountdown 3600 -BlockExecution -DeferTimes 2 -DeferDays 7 -PersistPrompt -TopMost 0

I also tried setting -TopMost to $false but I got the same results.

But when I run the installation the InstallationWelcome window is always forced to be on top of the other windows even if there are deferrals left.

This is the log from the execution:

[Initialization] :: ******************************************************************************* PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: ******************************************************************************* PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] setup started.    PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Script [C:\Users\yyyyyyyy.zzzz\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1] dot-source invoked by [C:\Users\yyyyyyyy.zzzz\Desktop\Deploy-Application.ps1] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Script [C:\Users\yyyyyyyy.zzzz\Desktop\AppDeployToolkit\AppDeployToolkitExtensions.ps1] dot-source invoked by [C:\Users\yyyyyyyy.zzzz\Desktop\AppDeployToolkit\AppDeployToolkitMain.ps1]    PSAppDeployToolkitExt   5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] script version is [1.0.0] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: [Deploy Application] script version is [3.6.1]  PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: [App Deploy Toolkit Main] script version is [3.6.5] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: [App Deploy Toolkit Extensions] version is [1.5.0]  PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Computer Name is [nnnnnnnnnn.zzzz.xxxxxxxxxxxxx.com]    PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Current User is [zzzz\yyyyyyyy] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: OS Version is [Microsoft Windows 7 Enterprise Service Pack 1 64-bit 6.1.7601.65536] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: OS Type is [Workstation]    PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Current Culture is [en-US] and UI language is [EN]  PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Hardware Platform is [Virtual:VMWare]   PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: PowerShell Host is [ConsoleHost] with version [2.0] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: PowerShell Version is [2.0 x64] PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: PowerShell CLR (.NET) version is [2.0.50727.5485]   PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: ******************************************************************************* PSAppDeployToolkit  5/20/2015 3:58:00 PM    7976 (0x1F28)
[Initialization] :: Display session information for all logged on users: 


NTAccount           : zzzz\yyyyyyyy
SID                 : S-1-5-21-1454471165-2077806209-1801674531-7103031
UserName            : yyyyyyyy
DomainName          : zzzz
SessionId           : 1
SessionName         : Console
ConnectState        : Active
IsCurrentSession    : True
IsConsoleSession    : True
IsActiveUserSession : True
IsUserSession       : True
IsRdpSession        : False
IsLocalAdmin        : False
LogonTime           : 3/23/2015 1:19:06 PM
IdleTime            : 00:00:00
DisconnectTime      : 
ClientName          : 
ClientProtocolType  : 
ClientDirectory     : 
ClientBuildNumber   : 0



    PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The following users are logged on to the system: [zzzz\yyyyyyyy].   PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Current process is running with user account [zzzz\yyyyyyyy] under logged in user session for [zzzz\yyyyyyyy].  PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The following user is the console user [zzzz\yyyyyyyy] (user with control of physical monitor, keyboard, and mouse).    PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The active logged on user is [zzzz\yyyyyyyy].   PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The active logged on user [zzzz\yyyyyyyy] has a primary UI language of [EN].    PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The following UI messages were imported from the config XML file: [UI_Messages_EN]. PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: The active logged on user [zzzz\yyyyyyyy] has a DPI scale factor of [100] with DPI pixels [96]. PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Unable to load COM Object [Microsoft.SMS.TSEnvironment]. Therefore, script is not currently running from a SCCM Task Sequence.  PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Skipping attempt to check for and make the task scheduler services healthy because the App Deployment Toolkit is not running under the [NT AUTHORITY\SYSTEM] account.   PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Session 0 not detected. PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Installation is running in [Interactive] mode.  PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Initialization] :: Deployment type is [Installation].  PSAppDeployToolkit  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Get deferral history...   Get-DeferHistory    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001].    Convert-RegistryPath    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Get registry key [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] and all property values.    Get-RegistryKey 5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Defer history shows [2] deferrals remaining.  Show-InstallationWelcome    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: User has [1] deferrals remaining. Show-InstallationWelcome    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Defer history shows a deadline date of [2015-05-27 15:50:22Z].    Show-InstallationWelcome    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Convert the date [05/27/2015 15:50:22] to a universal sortable date time pattern based on the current culture [en-US].    Get-UniversalDate   5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: User has until [2015-05-27 15:50:22Z] before deferral expires.    Show-InstallationWelcome    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Convert the date [05/20/2015 15:58:02] to a universal sortable date time pattern based on the current culture [en-US].    Get-UniversalDate   5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...    Get-RunningProcesses    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: The following processes are running: [iexplore,notepad].  Get-RunningProcesses    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Resolve process descriptions...   Get-RunningProcesses    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Finished checking running application(s). Get-RunningProcesses    5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Prompt user to close application(s) [Internet Explorer,Notepad]...    Show-WelcomePrompt  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: User has the option to defer. Show-WelcomePrompt  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Close applications countdown has [3600] seconds remaining.    Show-WelcomePrompt  5/20/2015 3:58:02 PM    7976 (0x1F28)
[Pre-Installation] :: Check for running application(s) [iexplore,winword,notepad]...    Get-RunningProcesses    5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: The following processes are running: [iexplore,notepad].  Get-RunningProcesses    5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: Resolve process descriptions...   Get-RunningProcesses    5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: Finished checking running application(s). Get-RunningProcesses    5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: Prompt user to close application(s) [Internet Explorer,Notepad]...    Show-WelcomePrompt  5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: User has the option to defer. Show-WelcomePrompt  5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: Close applications countdown has [3588] seconds remaining.    Show-WelcomePrompt  5/20/2015 3:58:14 PM    7976 (0x1F28)
[Pre-Installation] :: Installation deferred by the user.    Show-InstallationWelcome    5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Set deferral history: [DeferTimesRemaining = 1].  Set-DeferHistory    5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001].    Convert-RegistryPath    5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Update registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] [DeferTimesRemaining = 1].    Set-RegistryKey 5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Set deferral history: [DeferDeadline = 2015-05-27 15:50:22Z]. Set-DeferHistory    5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Return fully qualified registry key path [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001].    Convert-RegistryPath    5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: Update registry key value: [Registry::HKEY_LOCAL_MACHINE\SOFTWARE\xxxx xx xxxxxxx\Packages\PSAppDeployToolkit\DeferHistory\.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001] [DeferDeadline = 2015-05-27 15:50:22Z].   Set-RegistryKey 5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001 Installation completed with exit code [65000].    Exit-Script 5/20/2015 3:58:18 PM    7976 (0x1F28)
[Pre-Installation] :: -------------------------------------------------------------------------------   Exit-Script 5/20/2015 3:58:18 PM    7976 (0x1F28)

Remnant of a file from old version of toolkit caused failure in copy of toolkit to temporary folder

Hi,

When i add -BlockExecution to the Show-InstallationWelcome -CloseApps i get an error (see attached image).

When i run the appdeploy without the -BlockExecution parameter everything goes well.
Used command: Show-InstallationWelcome -CloseApps 'iexplore.exe,iexplorer.exe,firefox.exe,chrome.exe,eclipse.exe' -BlockExecution -CloseAppsCountdown 600

Can anyone tell me what i'm doing wrong? I Can't seem to find anything in the logs.

psappdeploy

Display correct wording in Show-InstallationWelcome during Uninstall

When Show-InstallationWelcome is used during DeploymentType = 'Uninstall', all default texts show '...install...' / '...Installation...'.
It would be very nice if additional default text would be added to the xml and the cmdlet switches the text dependent of the DeploymentType

Show-InstallationWelcome dialog window text is offset to the left

While the main text from the Show-InstallationWelcome dialog window is centered, it is offset slightly to the left. When additionally using the countdown variable option, it is noticeably shifted to the left.

In some of the installation windows there is a blue circle icon with a letter "i" in it that is just to the left of the main text. On those windows that have the icon the text is properly centered, but on those windows without the icon on the left the text is pushed left so it's not centered properly.

This issue was migrated from CodePlex:
https://psappdeploytoolkit.codeplex.com/workitem/177

Invoke-HKCURegistrySettingsForAllUsers failing to unload Default-User profile

Environment

  • Windows 7 x64
  • SCCM 2012 R2
  • PSAppDeployToolkit 3.6.3

Code Snippet:
[scriptblock]$HKCURegistrySettings = {
Set-RegistryKey -Key 'HKCU\Software\Test' -Name 'qmenable' -Value 0 -Type DWord -SID $UserProfile.SID
}
Invoke-HKCURegistrySettingsForAllUsers -RegistrySettings $HKCURegistrySettings

User profiles which are loaded under HKEY_USERS do not unload if a new registry KEY is created. When the KEY already exists, and only new VALUES are being written under the existing KEY, then the loaded user profiles appear to unload. Manual unloading of Default User succeeds via regedit.Below is an excerpt from the psappdeploykit log:
[Installation] :: Failed to unload the registry hive for User [Default User] with SID [S-1-5-21-Default-User].

Error Record:

Message : REG.exe failed with exit code [1] and result [].
InnerException :

FullyQualifiedErrorId : REG.exe failed with exit code [1] and result [].
ScriptStackTrace : at Invoke-HKCURegistrySettingsForAllUsers, C:
WINDOWS\ccmcache\8\AppDeployToolkit\AppDeployToolkitMai
n.ps1: line 3446
at , C:\WINDOWS\ccmcache\8\test.ps1: line
145
at , : line 1
at , : line 1

PositionMessage : At C:\WINDOWS\ccmcache\8\AppDeployToolkit\AppDeployToolkitMai
n.ps1:3446 char:41
+ If ($global:LastExitCode -ne 0) {
Throw "REG.exe failed with exit code [$( ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Execute-ProcessAsUser help example produced an error -196608

When using the Execute-ProcessAsUser help example as stated I get an error reported back to the log file.
Original Example:
Execute-ProcessAsUser -Path "$PSHOME\powershell.exe" -Parameters
'-File "C:\Test\Script.ps1"; Exit `$LastExitCode' -Wait

Changing the examples to the following variation resolved my issue:
Execute-ProcessAsUser -Path "$PSHOME\powershell.exe" -Parameters
'-File "C:\Temp\Script1.ps1" Exit $LastExitCode' -Wait

-CheckPendingReboot parameter?

I had an incident come up recently where I needed to install .NET 4.5.2 and complete a reboot prior to installing the new application. I can chain that logic within the task sequence, but if I'm deploying to existing clients I'd like to be able to prompt them similar to -CheckDiskSpace. I know I can communicate to the existing client that they should go to Software Center and install the pre-req, but I need to then check for a pending reboot if they ignored it.

I'd love the ability to be able to just throw in -CheckPendingReboot on the Show-InstallationWelcome and let it the user figure out how they want to handle it. Something like, "There is a reboot pending on this machine. Please save your work and reboot now or defer this installation for another time."

Thanks for this toolkit. I mention it every time I talk to someone about SCCM.

Show-InstallationPrompt shows during Silent install

Does anyone else have the Show-InstallationPrompt from POST-INSTALLATION display even during a Silent install? I was running into that and I want one source folder with multiple deployment types for Silent or not. My workaround was to put an If statement into the section. If others are noticing this, could you consider building the if statement into the default script?

If (-not $useDefaultMsi) {
    If ($DeployMode -ne "Silent") {
        # Inform the user that the installation has completed
        Show-InstallationPrompt -Message "$installTitle has completed installation. `n `n If you encounter any issues with this software please enter a ticket or call Help Desk at x4357." -Icon "Information" -ButtonMiddleText "OK" -NoWait
    }
}

Set-ActiveSetup does not create HKCU Active Setup > Installed Components entries

Since the HKCU Active Setup > Installed Components entries are not created after the StubPath is executed for the current user, when they log off and back in it will re-run the StubPath which could cause issues (in my current case importing HKCU registry entries - if the user changes these entries then logs out and back in they will be re-imported and overwritten).

PSAppDeployToolkit-ExecuteAsUser.vbs : Unterminated String Constant

Hello - I am using version 3.6.3 and within my Deploy-Application.ps1 I am making use of the following line of code:

[snip]
Set-ActiveSetup -StubExePath "$envWindir\Source\CitrixApplications\ActiveSetup\Remove-OrphanedCitrixShortcuts.ps1" -Description 'Searching for and removing orphaned Citrix Icons' -Key 'RemoveOrphanCitrixIcons' -ContinueOnError $true
[end/snip]

However, I am getting an error as noted in the subjet line above during script execution. Since Set-ActiveSetup will automatically run for the current user I am getting an error when running this as an "available" program from Software Center in ConfigMgr 2012 R2 CU3. I noticed line 4005 in AppDeployToolkitMain.ps1 if I remove the final ['"'} the error goes away but I am concerned this will affect other areas of the toolkit. I had this issue with 3.6.2 and 3.6.3. I haven't used earlier versions of the Toolkit.

My questions are as follows:
(1) Has anyone else witnessed this issue?
(2) How have you resolved it?

Cheers.

Failed to create the scheduled task to cleanup blocked applications due to character limit for command property

PSAppDeployToolkit is failing to create the scheduled task to cleanup blocked applications.

I'm using the latest 3.6.3 available.

This is what I get in the log:

[Pre-Installation] :: Create scheduled task to cleanup blocked applications in case installation is interrupted.        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Retrieve Scheduled Tasks      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: [C:\Windows\System32\schtasks.exe] is a valid fully qualified path, continue.     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Working Directory is [C:\Windows\System32]        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Executing [C:\Windows\System32\schtasks.exe /create /f /tn .NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps /xml "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\SchTaskUnBlockApps.xml"]...      1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Standard error output from the process: ERROR: The task XML contains a value which is incorrectly formatted or out of range.
(35,278):Command:powershell.exe -ExecutionPolicy Bypass -NoProfile -NoLogo -WindowStyle Hidden -File "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1" -CleanupBlockedApps -ReferringApplication ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001"     1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Execution completed with exit code [1]        1/1/1601 12:00:00 AM    0 (0x0000)
[Pre-Installation] :: Failed to create the scheduled task [.NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001_BlockedApps] by importing the scheduled task XML file [C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\SchTaskUnBlockApps.xml].      1/1/1601 12:00:00 AM    0 (0x0000)

This is the content of the xml file:

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
    <RegistrationInfo></RegistrationInfo>
    <Triggers>
        <BootTrigger>
            <Enabled>true</Enabled>
        </BootTrigger>
    </Triggers>
    <Principals>
        <Principal id="Author">
            <UserId>S-1-5-18</UserId>
        </Principal>
    </Principals>
    <Settings>
        <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
        <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
        <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
        <AllowHardTerminate>true</AllowHardTerminate>
        <StartWhenAvailable>false</StartWhenAvailable>
        <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
        <IdleSettings>
            <StopOnIdleEnd>false</StopOnIdleEnd>
            <RestartOnIdle>false</RestartOnIdle>
        </IdleSettings>
        <AllowStartOnDemand>true</AllowStartOnDemand>
        <Enabled>true</Enabled>
        <Hidden>false</Hidden>
        <RunOnlyIfIdle>false</RunOnlyIfIdle>
        <WakeToRun>false</WakeToRun>
        <ExecutionTimeLimit>PT1H</ExecutionTimeLimit>
        <Priority>7</Priority>
    </Settings>
    <Actions Context="Author">
        <Exec>
            <Command>powershell.exe -ExecutionPolicy Bypass -NoProfile -NoLogo -WindowStyle Hidden -File "C:\Program Files\XXXX XX XXXXXXX\PSAppDeployToolkit\AppDeployToolkitMain.ps1" -CleanupBlockedApps -ReferringApplication ".NET.Framework.4.5.2.Multi-Targeting.Pack_4.5.51651_001"</Command>
        </Exec>
    </Actions>
</Task>

Write-Log: -Message parameter name not backwards compatible

Issue migrated from CodePlex:
https://psappdeploytoolkit.codeplex.com/workitem/194

I noticed today in re-using an older package's Deploy-Application.ps1 with the newer framework versions, that the -Message parameter of the Write-Log function used to be called -Text

So an 'old' function call of Write-Log -Text "Some Text" should now be Write-Log -Message "Some text", and the first variation now causes the script to fail.

While personally I absolutely prefer -Message as a parameter name, changing this might cause issues with backwards compatibility. Would it perhaps be possible to provide a "dummy" -Text variable which value gets put into $Message if present in the function call?

Toolkit Variables not working with Copy-Files

Hi,

I'm using the latest version (3.6.3 beta) and it seems that i've found a little problem.
When wanting to copy a file from the Files directory i get an error:

[Installation] :: Failed to copy file(s) in path [$dirFiles\java.settings.cfg] to destination [C:\ProgramData\Oracle\Java\java.settings.cfg]. 
Error Record:
-------------

Message        : Cannot find path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\$
                 dirFiles\java.settings.cfg' because it does not exist.
InnerException : 

FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.CopyItemComm
                        and

PositionMessage : 
                  At C:\WINDOWS\ccmcache\53\AppDeployToolkit\AppDeployToolkitMa
                  in.ps1:2869 char:14
                  +                 Copy-Item <<<<  -Path $Path -Destination $d
                  estination -Force -ErrorAction 'Stop' | Out-Null



    Copy-File   30-04-2015 14:44:35 2148 (0x0864)

Debunking that, i've ran the Copy-File command . destination C:\ProgramData\Oracle\Java\java.settings.cfg. That works just fine (i get alot of files ie. powershell.exe).

It looks to me that when you use variables like $dirFiles and in my case $envProgramData the task fails.

So maybe the first question i have to ask is; Should Copy-Files be able to use toolkit variables?

Method invocation failed because [System.Threading.Mutex] doesn't contain a method named 'Dispose'

On Windows 7 x64 with Powershell running on .Net 2.0 there is no dispose method - see MSDN method list

https://msdn.microsoft.com/en-us/library/system.threading.mutex_members%28v=vs.80%29.aspx

replacing dispose() with close() on lines 2690 and 9033 allows script to run successfully

Affects scripts when a remove-msiapplications is run before execute-msi and the blocked-execution dialog from running.

Bug in Read language for Win XP machines

Hi,

i just found a bug in v3.6.4 that breaks the Initialization phase of the toolkit.
the issue is found at https://github.com/PSAppDeployToolkit/PSAppDeployToolkit/blob/master/Toolkit/AppDeployToolkit/AppDeployToolkitMain.ps1#L271 where it reads "[int32]$HKULocale = Get-RegistryKey -Key 'HKCU\Control Panel\International' -Value 'Locale' -SID $RunAsActiveUser.SID".
Converting $HKULocale to int32 fails because the LocaleID in "HKCU\Control Panel\International\Locale" is actually stored as hex and can contain characters (as is the case with germany=0xc07) - in this case [int32]$HKULocale is invalid.

thx,
Stefan

Get-RunningProcesses returns partially matched process names

Original thread: https://psappdeploytoolkit.codeplex.com/workitem/198

I am running into an issue with this cmdlet in that it is using -match instead of -eq. This is causing problems in my environment because I want to check for the existence of agent.exe. Get-RunningProcesses returns other processes matching agent so I receive Agent.exe, VPNAgent.exe and MBAMAgent. What are the ramifications of modifying this to look for exact processes?

Change default InstallationDefer_ExitCode

In the new version of the toolkit the default exit codes changed to use the 60000 - 68999 range, but the InstallationDefer_ExitCode is still 5000. I suggest changing it on the XML settings to be 65000, using the same range as the other exit codes from the toolkit.

<InstallationDefer_ExitCode>65000</InstallationDefer_ExitCode>

Exit-Script -ExitCode 3010 does not work

If you have a process where you want to manually Exit the Script and trigger an SCCM "Soft Reboot", it does not work. The script will always send an exit code of 0.

I've tried various versions of "Exit-Script -ExitCode 3010" with -AllowRebootPassThru but nothing works.

Looking at AppDeployToolkitMain.ps1, it looks like the only way it will return a '3010' if $msiRebootDetected is true. I need to be able to exit with 3010 even when I don't use an MSI.

-Austin

test-msupdates

## Check using Update method (to catch Office updates)
    [__comobject]$Session = New-Object -ComObject Microsoft.Update.Session
    [__comobject]$Collection = New-Object -ComObject Microsoft.Update.UpdateColl
    [__comobject]$Installer = $Session.CreateUpdateInstaller()
    [__comobject]$Searcher = $Session.CreateUpdateSearcher()
    [int32]$updateCount = $Searcher.GetTotalHistoryCount()
    If ($updateCount -gt 0) {
        $Searcher.QueryHistory(0, $updateCount) | Where-Object { $_.Title -match $kbNumber } | ForEach-Object { $kbFound = $true }
    }

Also returns true for Updates which were installed once but uninstalled meanwhile (History).

Can you fix that? I did it meanwhile by removing this code snippet.

Regards,
Fabio

Installation progress dialog doesn't display under interactive system context for the user

This is actually a re-post from the old Codeplex forum, keep running into that issue as well: The Show-InstallationProgress dialog, when run under session 0 (Interactive System Context via ConfigMgr 07 or psexec) on Win7x64 either fail for display, or sometimes will display up to 2-5 minutes later. Additionally if called the function multiple times to update the status message, the script spins up that many separate dialogs at the same time. Experiencing with both 3.6.3 and 3.6.4 beta, PS 3.0 and 4.0. Log doesn't show any particular error and all other dialogs appearing fine.

Refresh-Desktop is not refreshing the global environment block

According to help the Refresh-Desktop method refreshes the desktop icons, however, AppDeployToolkitMain.cs also mentions it will update environment variables (i.e. public static void RefreshDesktopAndEnvironmentVariables()). In performing testing I do not find indication that the environment block is actually refreshing. I have very similar code I added to my extensions which does refresh the environment. I was wondering if we can fix the existing SendMessageTimeout to pass the proper params to also allow refresh of the environment block? See my extension code below:

 #region Function Refresh-GlobalEnvironment
Function Refresh-GlobalEnvironment {
<#
.SYNOPSIS
    Notifies other processes that the global environment block has changed. This lets 
    other processes pick changes to ENV: without having to reboot or logoff/logon. A 
    non-zero result from SendMessageTimeout indicates success.
.DESCRIPTION
    Notifies other processes that the global environment block has changed. This lets 
    other processes pick changes to ENV: without having to reboot or logoff/logon. A 
    non-zero result from SendMessageTimeout indicates success.
.EXAMPLE
    Refresh-GlobalEnvironment
.LINK
    Http://poshcode.org/2049
#>
    if (-not ("win32.nativemethods" -as [type])) {
    # import sendmessagetimeout from win32
    add-type -Namespace Win32 -Name NativeMethods -MemberDefinition @"
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern IntPtr SendMessageTimeout(
    IntPtr hWnd, uint Msg, UIntPtr wParam, string lParam,
    uint fuFlags, uint uTimeout, out UIntPtr lpdwResult);
"@
}

$HWND_BROADCAST = [intptr]0xffff;
$WM_SETTINGCHANGE = 0x1a;
$result = [uintptr]::zero

# notify all windows of environment block change
Write-Log ("Notifying all windows of global environment block change...")
[win32.nativemethods]::SendMessageTimeout($HWND_BROADCAST, $WM_SETTINGCHANGE, [uintptr]::Zero, "Environment", 2, 5000, [ref]$result);
}
#endregion

Execute-MSI -PassThru adds commandline parameters for transform when not required

Hi,

using the latest 3.6.5 beta (recent download from the repository)
I'm trying to get an installation of IE11 to not automatic reboot but return the 3010 back to SCCM.

I first had set my command line in to install the IE11 msi file like this:
Execute-MSI -action 'Install' -path 'IE11-Setup-Full.msi'
and then tried to get the exit code into SCCM using -AllowRebootPassThru parameter at my command line in the SCCM application: "Deploy-Application.exe" -AllowRebootPassThru

That did not result in SCCM handling the reboot. So I tried to change my execute-msi installation too:
Execute-MSI -action 'Install' -path 'IE11-Setup-Full.msi' -PassTru
while at the same time changing default silent installation properties in the xml config file and leave out the "REBOOT=REALLYSUPRESS" part.

This seems to generate unexpected behaviour when the installation runs: Execute-MSI builds a command line that makes the installation fail:
[Installation] :: Executing [C:\WINDOWS\system32\msiexec.exe /i "C:\WINDOWS\ccmcache\1\Files\IE11-Setup-Full.msi" TRANSFORMS="True" TRANSFORMSSECURE=1 REBOOT=ReallySuppress /QB-! /L*v "C:\WINDOWS\ITO\Logs\IE11-Setup-Full_Install.log"]

the "TRANSFORMS and TRANSFORMSSECURE" properties cause the installation to fail with error 1624.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.