The status of the endpoint protection agent is stored in SMS_G_System_EPDeploymentState view but the key to the query is filtering on the DeploymentState field. The query below will return any machine that is not fully managed via Configuration Manager.select...
IntroductionThe reason I thought it would be good to look at a ClickOnce applications and App-V 5. Out of the box App-V does not handle the packaging of ClickOnce applications without changing the Sequencer configuration and jumping through some hoops...
IntroductionApp-V training takes many forms and I recommend you take a look at the various offerings available to determine what best suits your needs from both a delivery and content perspective. Training for App-V is offered by Microsoft and a number of customized...
MVPDays is a community roadshow for Canadians that was co-founded in 2014 by Dave and Cristal Kawula of Tricon Elite consulting to give the Microsoft IT PRO community an in person event that they could attend and get real world advice from recognized experts in the...
For those of you watching the schedule the LA class for GridmasterTraining’s App-V 5.0 SP3 course has been 100% confirmed to run. The course will be taking place at the Best Western Course held at the Best Western Carriage Inn, 5525 Sepulveda Boulevard, Sherman...
Well it’s another year and we’ve decided to throw our names in the hat for speaking at this year’s Briforum USA. This year, Nike Kallen and I will focus in more depth the management challenges that some customers are facing with one of the largest...
I thought I would post a note over here. I did a quick piece on some of the new courses in the Microsoft Virtual Academy that you can take at your own pace online. I’ve gone through some of the courses and actually was surprised by the quality so I’m...
The title is a mouthful but this is a quick way to get a list of machines that may be potential clients. This query assumes that Active Directory system discovery is enabled with the default attributes.select SMS_R_System.Name, SMS_R_System.LastLogonTimestamp,...
When looking for machines sometimes it is nice to know if they have even talked to the domain recently. Here is some quick PowerShell to get you on your way.Get-ADComputer -Filter ‘ObjectClass -eq “Computer”‘ -Properties PasswordLastSet | FT...