Do you want to find out the computers based on the user names where they have logged on lastly and to see if they have specific application is installed or not with date ? Here you go with the SCCM report with list of users . select a.Name0,a.UserName0 as 'Last logged in',c.DisplayName0,c.InstallDate0 from v_GS_COMPUTER_SYSTEM a , v_Add_Remove_Programs c where a.Username0 in ('domain\sccmadmin','domain\user1') and a.ResourceID=c.ResourceID and c.DisplayName0 like '%Microsoft Office%' order by name0 SCCM report to Display computers that users in a specific security group last logged in on to with software exist or not? select a.Name0,a.UserName0 as 'Last logged in',b.Usergroup_Name0,c.DisplayName0,c.InstallDate0 from…
Author: Eswar Koneti
There are lot of tools available like SCCM client center or Collection commander or Right Click Tools etc. to trigger SCCM client agent Actions using these tools but the customer environment doesn’t have any of these tools to use and we had a requirement to run the machine policy and other actions items as well. I have used the below script to run(ex:Machine policy and evaluation cycle or hardware inventory action etc) on a list of computers that you have supplied in notepad.txt using psexec tool.The script reset the hardware inventory action and deletes the instance before running hardware inventory.…
are you looking for smsts.log file while running SCCM OSD Task sequence. smsts.log file will move on to different places when OS is deploying depending on the progress of the build and the architecture of the OS:.it cont sit in one place 🙂 Below lists the location of smsts.log while deploying the OS*: -->Windows PE before HDD format: x:\windows\temp\smstslog\smsts.log -->Windows PE after HDD format: x:\smstslog\smsts.log and copied to c:\_SMSTaskSequence\Logs\Smstslog\smsts.log ->After Windows OS deployed but before SCCM agent installed: c:\_SMSTaskSequence\Logs\Smstslog\smsts.log -->Both Windows OS(x86) and SCCM agent installed: c:\windows\ccm\logs\Smstslog\smsts.log -->Both Windows OS(x64) and SCCM agent installed: c:\windows\ccm\logs\Smstslog\smsts.log -->After Task Sequence has finished…
Wishing you all a merry time lighting up your Christmas Tree and A Happy New Year 2011. Ciao you all in New Year 2011
When you install SMS or SCCM client,clients need to authenticate their management point prior to establishing communications to prevent attackers from inserting rogue management points and redirecting clients to them to get it . sometimes,client will fail to identify its management point which is tracked in locationservices.log file which requires attention could be issues like boundaries etc. there are cases,where client might require to assign from its current hierarchy to different hierarchy but the certificates might be exist with old hierarchy and you mush reset it before it communicates with New. To remove the trusted root key On the client…
In Previous post ,we have seen Installation of Microsoft Application Virtulisation (4.6) Desktop Client In this Post ,We will see how to Configure settings of App-V Desktop Client and its Basic Troubleshooting Steps: If you want to change the settings that are specified at the time of installation of App-V client Or any customization do be done,you can do that Via Management Console(SftCMC) which is located in C:\Program Files (x86)\Microsoft Application Virtualization Client. Click Start | Administrative Tools | Application Virtualization Client click on Properties . General Tab : If you want to record only error or warning messages,you can…
In Previous Guide,we have seen how to Install App-V 4.6 Management Server in windows Server 2008 and How to Publish the Default app-V applications in windows server 2008 to users. In this Guide we will see how to Install App-V desktop Client(4.6) on Windows 7 to receive published application from App-V server. Before we proceed to run the Setup file,check the link for Client Hardware and Software Requirements http://technet.microsoft.com/en-us/library/cc843822.aspx One you have all the components in place ,Get a App-V desktop client 4.6 from Microsoft and Extract it before Run. Run the setup wizard which will scan for and prompt…
Below is the report to list computers with IP address and Subnet information from Given collection. select distinct A.Name0,c.IPAddress0 ,D.IP_Subnets0 from v_R_System A inner join v_FullCollectionMembership B on A.ResourceID=B.ResourceID Inner join v_GS_NETWORK_ADAPTER_CONFIGUR C ON A.ResourceID=C.ResourceID Inner Join v_RA_System_IPSubnets D ON A.ResourceID=D.ResourceID where CollectionID=@COLLID and C.IPEnabled0='1' group by A.Name0,c.IPAddress0 ,D.IP_Subnets0 order by A.Name0,c.IPAddress0 ,D.IP_Subnets0 Prompt for Collection : Select CollectionID,Name from v_Collection