Wednesday, September 28, 2016

sccm client verssion number


ReleaseVersionBuild
SCCM 2012 R2 - CU55.00.7958.16047958
SCCM 2012 R2 SP15.00.8239.10008239
SCCM 2012 R2 SP1 - CU15.00.8239.12038239
SCCM 2012 R2 SP1 - CU25.00.8239.13018239

Monday, September 26, 2016

windows 10 collection




Creating a operating system-based collection query rule for Windows 10 in SCCM 2012



select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.OperatingSystemNameandVersion like "%Microsoft Windows NT Workstation 10%"

Wednesday, August 26, 2015

Manual removal of the SCCM client

Manual removal of the SCCM client


Method 1: Uninstallation using CCMSetup.exe

You can proceed like the following:
  • Open CMD and go to the location where CCMSetup.exe resides on the managed device then runCCMSetup.exe /uninstall command

Method 2: Uninstallation using client.msi

You can proceed like the following:
  • Open CMD and go to the same location described in Method 1. Once done, go under the folder using {IDas naming format ({181D79D7-1115-4D96-8E9B-5833DF92FBB4} for SCCM 2012 clients and {6A438387-0FF9-4620-947E-39470FB1E2E5} for SCCM 2007 ones) and run msiexec /x client.msi



Sunday, August 23, 2015

Cannot remove Site system role

I am looking at one of my removed site systems that did only act as a DP and a site system and all the directories are also present....but IIS has removed the virtual directories from it's console....and the procedure I used to remove the DP was as follows:

Removed all packages/apps manually from the DP(checked to make sure all content was removed by browsing to the content directories in the SMSPKGC$.
Removed the PXE settings(Made sure that the WDS server role was completely removed after the PXE settings on the DP)
Removed the Distribution point site system role.
Deleted the site server which removes the site system role also.

I guess the deletion of the rest of the left-over directories is a manual process if you intend keeping the server for other purposes...I am blowing away all the DP servers and starting afresh with server 2012 so the manual deletion is not applicable to me!!

Monday, May 11, 2015

Download official MUI language packs for Windows 8.1, Windows 8 and Windows 7

some time you need to change your windows Display Language . and when you go to control panel   you facing the below issue (a language pack isn't available) 
so after i read and search i found very good Page to solve this issue 

http://winaero.com/blog/download-official-mui-language-packs-for-windows-8-1-windows-8-and-windows-7/


Wednesday, February 4, 2015

Show Disk Usage

To begin hardware inventory of Free Space, go to the following area within the admin console:
  • Administration ->  Client Settings -> Right-click “Default Client Settings” and select Properties -> Hardware Inventory -> click on Set Classes
  • Expand “Logical Disk (SMS_LogicalDisk)”
  • Place a check on “Free Space (MB)”
  • Click OK.
This will instruct all clients to update policy for Hardware Inventory and begin reporting Free Space in MB.
diskusage1
Depending on the hardware inventory scan cycle, it may take a few days to obtain metrics from all machines. When machines report both size of logical disks along with free space, both numbers will be in megabytes (MB). Subtracting logical disk size minus free space will yield usage. This query will perform the subtraction along with the conversion of megabytes (MB) to gigabytes (GB). In addition, it will also calculate the free space percentage for each logical disk.
select SystemName0 as 'Machine Name', DeviceID0 as 'Logical Drive', FileSystem0 as 'File System', convert(decimal(20,0),round(1.0*Size0/1024,0)) as 'Capacity GB',
convert(decimal(20,0),round(1.0*(Size0-FreeSpace0)/1024,0)) as 'UsedSpace GB', convert(decimal(20,0),round(1.0*FreeSpace0/1024,0)) as 'FreeSpace GB',
convert(decimal(20,1),round((cast(FreeSpace0 as decimal)/ cast(Size0 as decimal) * 100),1)) as 'Percent Free',
VolumeName0 as 'Volume Name'
from v_GS_LOGICAL_DISK
where (Size0 is not null) and (FreeSpace0 is not null)
Order by Systemname0, DeviceID0

Saturday, January 17, 2015

For Disable or Enable anonymous authentication



open Regedit :
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]

and open =====>   restrictanonymoussam
Value     =====> 1 Enable
              =====> 0 Disable