
Chris
System Engineer
Activity overview
Latest activity by Chris-
Chris commented, You can achieve this by creating a PowerShell script and deploy it :-) Script-content:- Get currently logged on user --> $currentlyLoggedOnUser- Check if file exists in $currentlyLoggedOnUser ´s pr...
-
Chris commented, I use a similar script for notifying the users to restart their systems. Go to package settings > Options and set "Run as" as Deploy User (Interactive) then you see the notification under the logge...
-
Chris commented, Thanks for your suggestion. I use a function in my PowerShell scripts "Get-LoggedOnUser" if session 0 is not detected. So the package runs in Deploy User (Interactive)-Mode.The function gives me th...
-
Chris commented, Try using pathvariables instead of hardcoded paths in your scripts. For example (batch) for current path: %~dp0 For example (powershell) for current script path: $PSScriptRoot For example (powers...
-
Chris commented, i had the same problem. you must add the "Wow6432Node" to the reg-paths: [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\TeamViewer][HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\TeamViewer\DefaultSettings]and ...
-
Chris commented, Im deploying teamviewer full and host with exe installers without any problems. You also need to deploy the teamviewer settings you wish to have to be set. Thats done through registry entries. 1. i...
-
Chris commented, Where exactly do you have problems with? Please be more specific. Try this to create a customized Setup:- https://www.adobe.com/devnet-docs/acrobatetk/tools/Wizard/basics.html- https://helpx.adobe....
-
Chris created a post, Run as local system in interactive mode?
Does anyone know if running a deployment as local system with interactive mode is possible? We use the PowerShell ADT for creating our packages. We use it with several deployment tools, so we just ...