
Chris
System Engineer
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 5
Comments
Recent activity by Chris-
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...
-
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...
-
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...
-
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...
-
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 ...
-
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...
-
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....