Microsoft Desktop Optimization Pack (MDOP)

Productivity, manageability and reduced total cost of ownership for enterprise desktops Enterprise IT infrastructures are increasingly complex to manage. The Microsoft Desktop Optimization Pack (MDOP) is a dynamic desktop solution that is available as a subscription for Software Assurance customers. The solution suite enhances application deployment and compatibility, increases IT responsiveness and end user uptime, … Read more

Below are the basic exceptional for any antivirus for Microsoft products…   Windows:KB822158 Virus scanning recommendations for Enterprise computers that are running currently supported versions of Windows Windows / Active Directory: https://support.microsoft.com/kb/822158https://support.microsoft.com/kb/837932https://support.microsoft.com/kb/943556 Cluster:https://support.microsoft.com/kb/250355 Forefront: Considerations when using antivirus software on FF EdgeProductshttps://support.microsoft.com/kb/943620https://technet.microsoft.com/en-us/library/cc707727.aspx FRS:https://support.microsoft.com/kb/815263 SQL:https://support.microsoft.com/kb/309422 IIS:https://support.microsoft.com/kb/821749https://support.microsoft.com/kb/817442 DHCP:https://support.microsoft.com/kb/927059 SCOM / MOM:https://support.microsoft.com/kb/975931 Hyper-V:https://support.microsoft.com/default.aspx/kb/961804 Exchange:Exchange 2010: https://technet.microsoft.com/en-us/library/bb332342.aspxExchange 2007: https://technet.microsoft.com/en-us/library/bb332342(EXCHG.80).aspxhttps://support.microsoft.com/kb/328841https://support.microsoft.com/kb/823166https://support.microsoft.com/kb/245822https://technet.microsoft.com/en-us/library/bb332342(EXCHG.80).aspxhttps://technet.microsoft.com/en-us/library/bb332342.aspx … Read more

APP V

Below are the APP-V Virtual LABs available Learning App-V Basics includes preparation, streaming and launch of virtual applications Learning App-V Intermediate Skills includes Application update, Dynamic Suite Composition and Metering Learning to Configure App-V for Standalone Client Mode includes Standalone Client Mode and AppLocker

ConfigMgr admin must aware of these

  Prerequisites for Installing Configuration Manager https://technet.microsoft.com/en-us/library/bb694113.aspx About Configuration Manager Client Installation Properties https://technet.microsoft.com/en-us/library/bb680980.aspx Planning for PXE Initiated Operating System Deployments https://technet.microsoft.com/en-us/library/bb680753.aspx Operating System Deployment in Configuration Managerhttps://technet.microsoft.com/en-us/library/bb632767.aspx Step-By-Step Example Deployment of the PKI Certificates Required for Configuration Manager Native Mode: Windows Server 2008 Certification Authorityhttps://technet.microsoft.com/en-us/library/cc872789.aspx

ConfigMgr 2007 Super Flows

Others who downloaded Application Virtualization Sequencing SuperFlow also downloaded: Application Virtualization Sequencing SuperFlow https://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=8c4dfab6-7ef5-4188-a531-346cf9bfe7bf Backup and Recovery SuperFlow for Configuration Manager 2007 SuperFlow for Operating System Deployment via PXE Software Update Deployment SuperFlow Software Updates Synchronization SuperFlow SuperFlow for Configuring Software Updates SuperFlow for Creating SRS Report Models in Configuration Manager 2007

script that has WMI connection error will skip it and move to next

strComputer = “MYcomputername” Set objExcel = CreateObject(“Excel.Application”) objExcel.Visible = True objExcel.Workbooks.Add intRow = 2 objExcel.Cells(1, 1).Value = “Logon Name” objExcel.Cells(1, 2).Value = “Full Name” objExcel.Cells(1, 3).Value = “Description” objExcel.Cells(1, 4).Value = “Domain” objExcel.Cells(1, 5).Value = “Password Changeable” objExcel.Cells(1, 6).Value = “Password Required” objExcel.Cells(1, 7).Value = “Password Expires” objExcel.Cells(1, 8).Value = “Account Disabled” objExcel.Cells(1, 9).Value = … Read more

Excel output Script : for file version check well explained

Correct Script Set Fso = CreateObject(“Scripting.FileSystemObject”) Set InputFile = fso.OpenTextFile(“MachineList.Txt”) Set objExcel = CreateObject(“Excel.Application”) objExcel.Visible = True objExcel.Workbooks.Add intRow = 2Do While Not (InputFile.atEndOfStream) strComputer = InputFile.ReadLine intRow = intRow +1 objExcel.Cells(1, 1).Value = “System Name”objExcel.Cells(1, 2).Value = “Version”Set objWMIService = GetObject(“winmgmts:” & strComputer & “rootcimv2”)Set colFiles = objWMIService.ExecQuery _     (“Select * from CIM_Datafile … Read more