New Post: Defer showing as failed in sccm
I guess my question is should I document for our users if they defer an installation from sccm that it will show as failed then? I think there will be a lot of confusion with this feature within SCCM.
View ArticleNew Post: Module failed to load: Illegal characters in path.
Hello all! I'm totaly new to AppDeploymentToolkit. I tested my first Deployment successfully on about 10 Workstations but when i deployed it to my department (~100 Clients) some installed successfull...
View ArticleNew Post: Module failed to load: Illegal characters in path.
Maybe i fixed it by myselfe, actually i did on one Client. KB2506143 (Windows Management Framework 3.0) was missing. After installation, my script ran without any errors and the software was installed!
View ArticleNew Post: Multiple Parameters in the Execute-Process function?
Hi snruebes. Just another PADT fan here but I think I can help. First of all, if you want to make registry changes maybe try using the Set-RegistryKey function, or the even cooler...
View ArticleNew Post: Defer showing as failed in sccm
I think you're probably using the exe to deploy the toolkit. This is a bug that should be resolved in the next release of the toolkit. The proper exit code is not being passed onto SCCM. The updated...
View ArticleNew Post: Feature Request: Ability to determine the UI language by a new...
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Multiple Parameters in the Execute-Process function?
Hi ambrosis, cool tip - this works like a charm! Thank you very much. I know the HKCURegistrySettingsForAllUsers function - the reason why I decided to not use it in this case although it is of course...
View ArticleNew Post: Check for pending reboot
When will the code be added to the AppDeployToolkitMain.ps1 file and default part of the AppDeployToolkit ?
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
Is there a way to detect in the AppDeployToolkit if SCCM 2012 starts the script:a user is logged onno user is logged onuser is logged on but screen is locked
View ArticleNew Post: Check for pending reboot
It doesn't. That's why it's in the "Toolkit Extensions" section. I'm just a user like you. Not a Developer of App Deploy Toolkit. If you want it to be added, raise an "Issue" and ask the developers to...
View ArticleNew Post: Script not started from SCCM 2012
I created a AppDeployPackage and runs it locally on a machine..that works fine. When scheduled by SCCM 2012 I see it is started (execmgr.log), but I do not see anything happen. I do not get any...
View ArticleNew Post: Script not started from SCCM 2012
My mistake......I made a failure in the script. It is working...sorry for this post.
View ArticleNew Post: Check for pending reboot
Hi, I believe that code is really interesting and will done. But once you run that code then what should we do? Popup a restart message with a SCCM Fast retry? Just return an error and make the package...
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
Get-LoggedOnUser function returns a property called IsConsoleUser. If this property is true, then that is the user with control of the keyboard, mouse, and screen. To check if the screen is locked, see...
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
Someone available to rewrite above code to some useable code for the AppDeployToolKit ?
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
I don't understand how the above code is not usable. Copy/paste the above code into your script. You can get rid of the Start-Sleep line. Then simply calling this line will give you the result you are...
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
Hi MMashwani...is it that simple....thanks for the update. I will try...tnx
View ArticleNew Post: Show-InstallationRestartPrompt forced when non-interactive ?
Does anyone know how I can configure my script so it will restart if no user is logged on. So not bypassing, but a forced restart if nobody is logged on. Any ideas how ?
View ArticleNew Post: Show-InstallationRestartPrompt forced when non-interactive ?
I got the solution already from another post:#nobody logged on If ($deployModeNonInteractive) { Execute-Process "Shutdown" -Arguments "/R /F /T 10" } else { }
View ArticleNew Post: Detect Active user / Locked Screen / Not Logged On user
Hi I tried the following script$UserNotificationStateSource = @' using System; using System.Runtime.InteropServices; namespace QueryUser { public class NotificationState { //...
View Article