
Margus Potter
Deploy & Inventory big fan :)
Comments
-
My heartbeat main usage example: I have monthly scheduled one package to install. If pc is offline then thats it. But if you add after schedule also heartbeat (5min etc), then when pc comes online ...
-
Found similar: Lex demonstrates how Easy it is to create heartbeat schedules in PDQ Deploy and PDQ Inventory to deploy applications to offline computers when they come back online. Youtube
-
I am using Step 1 before any deployment easy check e.g. Chrome in this case (options - quit deployment with error) : $Processes = Get-Process if ( $Processes.ProcessName -contains "chrome" ) { ...
-
Every package or step you create, put under Conditions > PDQ Inventory Collection > Is Not A Member > "Reboot Required" Its a PDQ Inventory built-in collection or create yourself "Computer > Needs ...
-
Well.. I dont believe in default timestamps (win update or pdq deploy changes lots of stuff under inactive users folders and files). Second if you just delete useraccount folder, then you need also...
-
Well, its a service and bunch of files. I am using similar commands for many things not installed, so version from file properties with cmd: wmic datafile where name="C:\\Windows\\dwrcs\\DWRCS.exe"...
-
Usually they are like... Install Files: $(Repository)\setupfile.msi Parameters: TRANSFORMS="myfile.mst" Additional Files: $(Repository)\install\myfile.mst
-
I have 2 similar SQL ones to offer, you can play around with them, maybe helps... Show PC-s where users are in Local Admin group: SELECT Computers.Name as "Computer Name", Computers.CurrentUs...
-
Not so complex, and basically a one-time job to create the needed package. Those are very good instructions, deploying o365 years with that. Only thing I change is "configuration.xml" e.g. when I n...
-
Include Entire Directory? or create Custom Command Line step or create New Step > Command msiexec.exe /i "installer.msi" ALLUSERS=1 /qn /norestart TRANSFORMS="file.mst" Files: add your msi and mst...