New Post: Question on architecture awareness
I deal with a mix of 32-bit and 64-bit clients, so I'm finding that some scripts fail due to null values for some variables. One of these is likely the programfiles dir. I noticed the sample script...
View ArticleNew Post: copy file - create folder if not exits..
Hi how would you do the following with psapp script:check if folder exists, if not create it, if exists don't do any more.copy ALL files from appdeployscripts "files" folder register-dll (this part I...
View ArticleNew Post: Deployment Script: Adobe Flash player 11.9.900.152
the please compile the script WITH the changes you made from sintaxasn's script.. so the script in the 1st post is the working one .. easier for people wanting to use it.
View ArticleNew Post: copy file - create folder if not exits..
You can do this all in PowerShell very easily. This relies on the the Toolkit functions and logs everything for you: # Create folder if it doesn't exist If (!(Test-Path -Path...
View ArticleNew Post: Question on architecture awareness
Hadn't factored that in for the example, apologies. In the next release, I've added handling of X86 environment variables so that $envProgramFilesX86 will return "C:\Program Files (x86)" on x64 and...
View ArticleNew Post: copy file - create folder if not exits..
Hi Dan.. thx so much.. However a few changes had to be made.. I deleted : { New-Item "$envProgramFilesX86\Testing") .. the last ")" and.. I removed ($file.Name) since it copied the files as:...
View ArticleNew Post: copy file - create folder if not exits..
Woops, sorry, I hadn't tested it. Just threw it together in Notepad quickly :) ($file.Name) was actually meant to be $($file.Name)
View ArticleNew Post: copy file - create folder if not exits..
at least.. that was neccessary to make it work for me.. is it unwise to make these changes?
View ArticleNew Post: copy file - create folder if not exits..
I changed it back to $($file.Name),,, muuuuuch better! :-)
View ArticleNew Post: copy file - create folder if not exits..
Thx for your help Dan.. it fixed my problem.
View ArticleNew Post: toolkit extensions..
Hi the toolkit extensions that are presented on this site.. will they be integrated into the std. appdeloy plackage?
View ArticleNew Post: CloseAppsCountdown not working?
Hi, I'm testing out the PowerShell App Deployment Toolkit and can't seem to get the -CloseAppsCountdown working. It doesn't display the message "NOTE: The program(s) will be automatically closed in:...
View ArticleNew Post: toolkit extensions..
Not unless we consider it to be a core feature that everyone will use. Dan
View ArticleNew Post: CloseAppsCountdown not working?
Sorry, was a bug in 3.0.8, we have it fixed in 3.0.,9 which hopefully will be released today, after we do some extensive testing. Dan
View ArticleNew Post: CloseAppsCountdown not working?
I just checked.. I see the same issue.. this is both install and uninstall using: Deploy-Application.exe -deploymenttype "install" -deploymode "silent" and Deploy-Application.exe -deploymenttype...
View ArticleNew Post: toolkit extensions..
sounds logical :) will you add documentation in the guide on how users add the toolkits extensions to their deployment? it's only mentioned briefly in the documentation.. but perhaps that's enough?
View ArticleNew Post: using the deployment toolkit in TS
Hi how would a ts deployment react to this: Show-InstallationWelcome -CloseApps "iexplore, outlook" -AllowDefer -DeferTimes 3 -CheckDiskSpace -PersistPrompt -BlockExecution I have a few programs that I...
View ArticleNew Post: using the deployment toolkit in TS
The TS is detected and the install switches to NonInteractive mode (completely silent). For CM07 I'd create a Package with 2 Programs, one running as the user (Existing machines) and one running as...
View Article