New Post: Set-ActiveSetup and Remove-ActiveSetup: Per-user changes (as...
Posts are limited to 10000. ("Content has been shortened to 10000 characters.")Function Remove-ActiveSetup { <# .SYNOPSIS Remove an Active Setup entry in the registry .DESCRIPTION Version: 0.5 -...
View ArticleNew Post: Set-ActiveSetup and Remove-ActiveSetup: Per-user changes (as...
Hope I can make a few remarks on your code here? :) in setting the appropriate commandlines for the stubPath, the final Else might just want to take the existing value as-is (if it's not empty) instead...
View ArticleNew Post: Show-InstallationWelcome DPI aware?
I have tested the script with the CloseApps parameter at different DPI setting and unfortunately the text was not readable and cut off in some cases. Is the GUI part DPI aware? We have users that run...
View ArticleNew Post: Show-InstallationWelcome DPI aware?
No we're aware of this issue but no fix in planning. Feel free to raise as an issue and any help with resolution would be welcome.
View ArticleNew Post: Show-InstallationWelcome DPI aware?
Here is a project written in C# that enables DPI awareness for all of the various flavors of Windows.https://github.com/paulcbetts/permonitordpi Here is their license:...
View ArticleNew Post: Set-ActiveSetup and Remove-ActiveSetup: Per-user changes (as...
Yup, I need to add a -Arguments parameter. Otherwise adding Arguments to $ActiveSetupPath will break the script host selection code. This also proves why I need that ELSE to be not so "generalized"....
View ArticleNew Post: Show-InstallationWelcome DPI aware?
@Xploder I wonder if it might not be possible to get around this issue by using Application Compatibility settings as described...
View ArticleNew Post: New to the toolkit
Thanks for the reply. I've started digging into the Acrobat Reader example, and it looks like it should be able to do what I need. My thoughts were to get this setup, then package it and push through...
View ArticleNew Post: Function Execute-Process in 3.2.0 Beta
Hi mmashwani The codes become longer now just for this small part. :) Tested the above code with an invalid executable,Execute-Process -FilePath "C:\Windows\System32\nonsense.exe" -Arguments "/c"...
View ArticleNew Post: Block Execution prompt during deployment
Is there anyway to suppress the block execution prompt when running the toolkit as interactive mode (has to run as interactive, not silent)? The reason I ask is during the deployment, the msi seems to...
View ArticleNew Post: Block Execution prompt during deployment
So you have this .exe selected as one of the applications in your -CloseApp switch? And it needs to execute as part of the installation?
View ArticleNew Post: Function Execute-Process in 3.2.0 Beta
Yup, got the same result as you when using that path. Same issue as before when we were actually passing a valid path. It is trying to Test-Path after joining two fully qualified paths so the path is...
View ArticleNew Post: Deployment Script: VLC player 2.1.5 (remove old version, install...
Probably need to change this to the portable version. As this version hijacks all your file extensions. tries to remove the old version of VLC and removes all the shortcuts for VLC on the desktop*...
View ArticleNew Post: Block Execution prompt during deployment
Yes - I think the msi must be calling the program executable somewhere in the installation.
View ArticleNew Post: Best way to use this toolkit without SCCM? Even possible?
I'll be pushing for SCCM in next year's budget, but currently I'm deploying strictly via gpo (we're a rather small shop). I'd love to use this toolkit, but I'm wondering if I can even really do so...
View ArticleNew Post: Toolkit User Interface - Web UI
Hi, I was wondering if the Toolkit could support some kind of Web frontend instead of interacting with the users on the screen with a Windows UI (maybe something to interact through a Web page). My...
View ArticleNew Post: Best way to use this toolkit without SCCM? Even possible?
I use it with Altiris Deployment Solution 6.9 and 7.1. I also use it with PDQ Deploy, which is free You can create a package in PDQ kinda like SCCM, but I usually just use it to deploy a .bat file that...
View ArticleNew Post: Block Execution prompt during deployment
Let me see if I'm following: you want to still have the prompt that forces the user to close the application, but you don't want the application that's being closed to be blocked, right? Couldn't you...
View ArticleNew Post: Block Execution prompt during deployment
Hi, I want the -blockexecution to run to block programs I have specified in the script, I don't want the blocked execution prompt "The application will be unblocked again once the installation has...
View ArticleNew Post: Block Execution prompt during deployment
If the installation wants to execute one of the blocked apps it sounds like you don't want to block that particular app but just close it. In that case could you just kill that process after you prompt...
View Article